├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── LICENSE_ASSETS ├── README.md ├── build.gradle ├── gradle.properties ├── gradle ├── CHANGELOG.md └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main ├── generated ├── assets │ └── twigs │ │ ├── blockstates │ │ ├── acacia_table.json │ │ ├── allium_paper_lantern.json │ │ ├── azalea_flowers.json │ │ ├── bamboo_leaves.json │ │ ├── bamboo_thatch.json │ │ ├── bamboo_thatch_slab.json │ │ ├── bamboo_thatch_stairs.json │ │ ├── birch_table.json │ │ ├── bloodstone.json │ │ ├── bloodstone_slab.json │ │ ├── bloodstone_stairs.json │ │ ├── bloodstone_wall.json │ │ ├── blue_orchid_paper_lantern.json │ │ ├── bundled_bamboo.json │ │ ├── calcite_slab.json │ │ ├── calcite_stairs.json │ │ ├── calcite_wall.json │ │ ├── chiseled_bricks.json │ │ ├── chiseled_polished_amethyst.json │ │ ├── cobblestone_brick_slab.json │ │ ├── cobblestone_brick_stairs.json │ │ ├── cobblestone_brick_wall.json │ │ ├── cobblestone_bricks.json │ │ ├── copper_pillar.json │ │ ├── cracked_bricks.json │ │ ├── cracked_cobblestone_bricks.json │ │ ├── cracked_polished_amethyst_bricks.json │ │ ├── cracked_polished_bloodstone_bricks.json │ │ ├── cracked_polished_calcite_bricks.json │ │ ├── cracked_polished_rhyolite_bricks.json │ │ ├── cracked_polished_schist_bricks.json │ │ ├── cracked_polished_tuff_bricks.json │ │ ├── crimson_roots_paper_lantern.json │ │ ├── crimson_shroomlamp.json │ │ ├── crimson_table.json │ │ ├── dandelion_paper_lantern.json │ │ ├── dark_oak_table.json │ │ ├── ender_mesh.json │ │ ├── exposed_copper_pillar.json │ │ ├── jungle_table.json │ │ ├── lamp.json │ │ ├── mangrove_table.json │ │ ├── mossy_brick_slab.json │ │ ├── mossy_brick_stairs.json │ │ ├── mossy_brick_wall.json │ │ ├── mossy_bricks.json │ │ ├── mossy_cobblestone_brick_slab.json │ │ ├── mossy_cobblestone_brick_stairs.json │ │ ├── mossy_cobblestone_brick_wall.json │ │ ├── mossy_cobblestone_bricks.json │ │ ├── oak_table.json │ │ ├── oxidized_copper_pillar.json │ │ ├── paper_lantern.json │ │ ├── pebble.json │ │ ├── petrified_lichen.json │ │ ├── polished_amethyst.json │ │ ├── polished_amethyst_brick_slab.json │ │ ├── polished_amethyst_brick_stairs.json │ │ ├── polished_amethyst_brick_wall.json │ │ ├── polished_amethyst_bricks.json │ │ ├── polished_amethyst_slab.json │ │ ├── polished_amethyst_stairs.json │ │ ├── polished_basalt_bricks.json │ │ ├── polished_bloodstone.json │ │ ├── polished_bloodstone_brick_slab.json │ │ ├── polished_bloodstone_brick_stairs.json │ │ ├── polished_bloodstone_brick_wall.json │ │ ├── polished_bloodstone_bricks.json │ │ ├── polished_bloodstone_slab.json │ │ ├── polished_bloodstone_stairs.json │ │ ├── polished_calcite.json │ │ ├── polished_calcite_brick_slab.json │ │ ├── polished_calcite_brick_stairs.json │ │ ├── polished_calcite_brick_wall.json │ │ ├── polished_calcite_bricks.json │ │ ├── polished_calcite_slab.json │ │ ├── polished_calcite_stairs.json │ │ ├── polished_rhyolite.json │ │ ├── polished_rhyolite_brick_slab.json │ │ ├── polished_rhyolite_brick_stairs.json │ │ ├── polished_rhyolite_brick_wall.json │ │ ├── polished_rhyolite_bricks.json │ │ ├── polished_rhyolite_slab.json │ │ ├── polished_rhyolite_stairs.json │ │ ├── polished_schist.json │ │ ├── polished_schist_brick_slab.json │ │ ├── polished_schist_brick_stairs.json │ │ ├── polished_schist_brick_wall.json │ │ ├── polished_schist_bricks.json │ │ ├── polished_schist_slab.json │ │ ├── polished_schist_stairs.json │ │ ├── polished_tuff.json │ │ ├── polished_tuff_brick_slab.json │ │ ├── polished_tuff_brick_stairs.json │ │ ├── polished_tuff_brick_wall.json │ │ ├── polished_tuff_bricks.json │ │ ├── polished_tuff_slab.json │ │ ├── polished_tuff_stairs.json │ │ ├── potted_azalea_flowers.json │ │ ├── rhyolite.json │ │ ├── rhyolite_slab.json │ │ ├── rhyolite_stairs.json │ │ ├── rhyolite_wall.json │ │ ├── rocky_dirt.json │ │ ├── schist.json │ │ ├── schist_slab.json │ │ ├── schist_stairs.json │ │ ├── schist_wall.json │ │ ├── sea_shell.json │ │ ├── smooth_basalt_brick_slab.json │ │ ├── smooth_basalt_brick_stairs.json │ │ ├── smooth_basalt_brick_wall.json │ │ ├── smooth_basalt_bricks.json │ │ ├── soul_lamp.json │ │ ├── spruce_table.json │ │ ├── stripped_bamboo.json │ │ ├── stripped_bamboo_button.json │ │ ├── stripped_bamboo_door.json │ │ ├── stripped_bamboo_fence.json │ │ ├── stripped_bamboo_fence_gate.json │ │ ├── stripped_bamboo_mat.json │ │ ├── stripped_bamboo_planks.json │ │ ├── stripped_bamboo_pressure_plate.json │ │ ├── stripped_bamboo_sign.json │ │ ├── stripped_bamboo_slab.json │ │ ├── stripped_bamboo_stairs.json │ │ ├── stripped_bamboo_table.json │ │ ├── stripped_bamboo_trapdoor.json │ │ ├── stripped_bamboo_wall_sign.json │ │ ├── stripped_bundled_bamboo.json │ │ ├── tuff_slab.json │ │ ├── tuff_stairs.json │ │ ├── tuff_wall.json │ │ ├── twig.json │ │ ├── twisting_polished_blackstone_brick_slab.json │ │ ├── twisting_polished_blackstone_brick_stairs.json │ │ ├── twisting_polished_blackstone_brick_wall.json │ │ ├── twisting_polished_blackstone_bricks.json │ │ ├── warped_shroomlamp.json │ │ ├── warped_table.json │ │ ├── waxed_copper_pillar.json │ │ ├── waxed_exposed_copper_pillar.json │ │ ├── waxed_oxidized_copper_pillar.json │ │ ├── waxed_weathered_copper_pillar.json │ │ ├── weathered_copper_pillar.json │ │ ├── weeping_polished_blackstone_brick_slab.json │ │ ├── weeping_polished_blackstone_brick_stairs.json │ │ ├── weeping_polished_blackstone_brick_wall.json │ │ └── weeping_polished_blackstone_bricks.json │ │ └── models │ │ ├── block │ │ ├── acacia_table.json │ │ ├── allium_paper_lantern.json │ │ ├── allium_paper_lantern_hanging.json │ │ ├── azalea_flowers.json │ │ ├── bamboo_thatch.json │ │ ├── bamboo_thatch_slab.json │ │ ├── bamboo_thatch_slab_top.json │ │ ├── bamboo_thatch_stairs.json │ │ ├── bamboo_thatch_stairs_inner.json │ │ ├── bamboo_thatch_stairs_outer.json │ │ ├── birch_table.json │ │ ├── bloodstone.json │ │ ├── bloodstone_slab.json │ │ ├── bloodstone_slab_top.json │ │ ├── bloodstone_stairs.json │ │ ├── bloodstone_stairs_inner.json │ │ ├── bloodstone_stairs_outer.json │ │ ├── bloodstone_wall_inventory.json │ │ ├── bloodstone_wall_post.json │ │ ├── bloodstone_wall_side.json │ │ ├── bloodstone_wall_side_tall.json │ │ ├── blue_orchid_paper_lantern.json │ │ ├── blue_orchid_paper_lantern_hanging.json │ │ ├── bundled_bamboo.json │ │ ├── calcite_slab.json │ │ ├── calcite_slab_top.json │ │ ├── calcite_stairs.json │ │ ├── calcite_stairs_inner.json │ │ ├── calcite_stairs_outer.json │ │ ├── calcite_wall_inventory.json │ │ ├── calcite_wall_post.json │ │ ├── calcite_wall_side.json │ │ ├── calcite_wall_side_tall.json │ │ ├── chiseled_bricks.json │ │ ├── chiseled_polished_amethyst.json │ │ ├── cobblestone_brick_slab.json │ │ ├── cobblestone_brick_slab_top.json │ │ ├── cobblestone_brick_stairs.json │ │ ├── cobblestone_brick_stairs_inner.json │ │ ├── cobblestone_brick_stairs_outer.json │ │ ├── cobblestone_brick_wall_inventory.json │ │ ├── cobblestone_brick_wall_post.json │ │ ├── cobblestone_brick_wall_side.json │ │ ├── cobblestone_brick_wall_side_tall.json │ │ ├── cobblestone_bricks.json │ │ ├── copper_pillar.json │ │ ├── cracked_bricks.json │ │ ├── cracked_cobblestone_bricks.json │ │ ├── cracked_polished_amethyst_bricks.json │ │ ├── cracked_polished_bloodstone_bricks.json │ │ ├── cracked_polished_calcite_bricks.json │ │ ├── cracked_polished_rhyolite_bricks.json │ │ ├── cracked_polished_schist_bricks.json │ │ ├── cracked_polished_tuff_bricks.json │ │ ├── crimson_roots_paper_lantern.json │ │ ├── crimson_roots_paper_lantern_hanging.json │ │ ├── crimson_shroomlamp.json │ │ ├── crimson_table.json │ │ ├── dandelion_paper_lantern.json │ │ ├── dandelion_paper_lantern_hanging.json │ │ ├── dark_oak_table.json │ │ ├── ender_mesh.json │ │ ├── exposed_copper_pillar.json │ │ ├── jungle_table.json │ │ ├── lamp.json │ │ ├── lamp_off.json │ │ ├── mangrove_table.json │ │ ├── mossy_brick_slab.json │ │ ├── mossy_brick_slab_top.json │ │ ├── mossy_brick_stairs.json │ │ ├── mossy_brick_stairs_inner.json │ │ ├── mossy_brick_stairs_outer.json │ │ ├── mossy_brick_wall_inventory.json │ │ ├── mossy_brick_wall_post.json │ │ ├── mossy_brick_wall_side.json │ │ ├── mossy_brick_wall_side_tall.json │ │ ├── mossy_bricks.json │ │ ├── mossy_cobblestone_brick_slab.json │ │ ├── mossy_cobblestone_brick_slab_top.json │ │ ├── mossy_cobblestone_brick_stairs.json │ │ ├── mossy_cobblestone_brick_stairs_inner.json │ │ ├── mossy_cobblestone_brick_stairs_outer.json │ │ ├── mossy_cobblestone_brick_wall_inventory.json │ │ ├── mossy_cobblestone_brick_wall_post.json │ │ ├── mossy_cobblestone_brick_wall_side.json │ │ ├── mossy_cobblestone_brick_wall_side_tall.json │ │ ├── mossy_cobblestone_bricks.json │ │ ├── oak_table.json │ │ ├── oxidized_copper_pillar.json │ │ ├── paper_lantern.json │ │ ├── paper_lantern_hanging.json │ │ ├── pebble.json │ │ ├── pebble1.json │ │ ├── pebble2.json │ │ ├── petrified_lichen.json │ │ ├── polished_amethyst.json │ │ ├── polished_amethyst_brick_slab.json │ │ ├── polished_amethyst_brick_slab_top.json │ │ ├── polished_amethyst_brick_stairs.json │ │ ├── polished_amethyst_brick_stairs_inner.json │ │ ├── polished_amethyst_brick_stairs_outer.json │ │ ├── polished_amethyst_brick_wall_inventory.json │ │ ├── polished_amethyst_brick_wall_post.json │ │ ├── polished_amethyst_brick_wall_side.json │ │ ├── polished_amethyst_brick_wall_side_tall.json │ │ ├── polished_amethyst_bricks.json │ │ ├── polished_amethyst_slab.json │ │ ├── polished_amethyst_slab_top.json │ │ ├── polished_amethyst_stairs.json │ │ ├── polished_amethyst_stairs_inner.json │ │ ├── polished_amethyst_stairs_outer.json │ │ ├── polished_basalt_bricks.json │ │ ├── polished_bloodstone.json │ │ ├── polished_bloodstone_brick_slab.json │ │ ├── polished_bloodstone_brick_slab_top.json │ │ ├── polished_bloodstone_brick_stairs.json │ │ ├── polished_bloodstone_brick_stairs_inner.json │ │ ├── polished_bloodstone_brick_stairs_outer.json │ │ ├── polished_bloodstone_brick_wall_inventory.json │ │ ├── polished_bloodstone_brick_wall_post.json │ │ ├── polished_bloodstone_brick_wall_side.json │ │ ├── polished_bloodstone_brick_wall_side_tall.json │ │ ├── polished_bloodstone_bricks.json │ │ ├── polished_bloodstone_slab.json │ │ ├── polished_bloodstone_slab_top.json │ │ ├── polished_bloodstone_stairs.json │ │ ├── polished_bloodstone_stairs_inner.json │ │ ├── polished_bloodstone_stairs_outer.json │ │ ├── polished_calcite.json │ │ ├── polished_calcite_brick_slab.json │ │ ├── polished_calcite_brick_slab_top.json │ │ ├── polished_calcite_brick_stairs.json │ │ ├── polished_calcite_brick_stairs_inner.json │ │ ├── polished_calcite_brick_stairs_outer.json │ │ ├── polished_calcite_brick_wall_inventory.json │ │ ├── polished_calcite_brick_wall_post.json │ │ ├── polished_calcite_brick_wall_side.json │ │ ├── polished_calcite_brick_wall_side_tall.json │ │ ├── polished_calcite_bricks.json │ │ ├── polished_calcite_slab.json │ │ ├── polished_calcite_slab_top.json │ │ ├── polished_calcite_stairs.json │ │ ├── polished_calcite_stairs_inner.json │ │ ├── polished_calcite_stairs_outer.json │ │ ├── polished_rhyolite.json │ │ ├── polished_rhyolite_brick_slab.json │ │ ├── polished_rhyolite_brick_slab_top.json │ │ ├── polished_rhyolite_brick_stairs.json │ │ ├── polished_rhyolite_brick_stairs_inner.json │ │ ├── polished_rhyolite_brick_stairs_outer.json │ │ ├── polished_rhyolite_brick_wall_inventory.json │ │ ├── polished_rhyolite_brick_wall_post.json │ │ ├── polished_rhyolite_brick_wall_side.json │ │ ├── polished_rhyolite_brick_wall_side_tall.json │ │ ├── polished_rhyolite_bricks.json │ │ ├── polished_rhyolite_slab.json │ │ ├── polished_rhyolite_slab_top.json │ │ ├── polished_rhyolite_stairs.json │ │ ├── polished_rhyolite_stairs_inner.json │ │ ├── polished_rhyolite_stairs_outer.json │ │ ├── polished_schist.json │ │ ├── polished_schist_brick_slab.json │ │ ├── polished_schist_brick_slab_top.json │ │ ├── polished_schist_brick_stairs.json │ │ ├── polished_schist_brick_stairs_inner.json │ │ ├── polished_schist_brick_stairs_outer.json │ │ ├── polished_schist_brick_wall_inventory.json │ │ ├── polished_schist_brick_wall_post.json │ │ ├── polished_schist_brick_wall_side.json │ │ ├── polished_schist_brick_wall_side_tall.json │ │ ├── polished_schist_bricks.json │ │ ├── polished_schist_slab.json │ │ ├── polished_schist_slab_top.json │ │ ├── polished_schist_stairs.json │ │ ├── polished_schist_stairs_inner.json │ │ ├── polished_schist_stairs_outer.json │ │ ├── polished_tuff.json │ │ ├── polished_tuff_brick_slab.json │ │ ├── polished_tuff_brick_slab_top.json │ │ ├── polished_tuff_brick_stairs.json │ │ ├── polished_tuff_brick_stairs_inner.json │ │ ├── polished_tuff_brick_stairs_outer.json │ │ ├── polished_tuff_brick_wall_inventory.json │ │ ├── polished_tuff_brick_wall_post.json │ │ ├── polished_tuff_brick_wall_side.json │ │ ├── polished_tuff_brick_wall_side_tall.json │ │ ├── polished_tuff_bricks.json │ │ ├── polished_tuff_slab.json │ │ ├── polished_tuff_slab_top.json │ │ ├── polished_tuff_stairs.json │ │ ├── polished_tuff_stairs_inner.json │ │ ├── polished_tuff_stairs_outer.json │ │ ├── potted_azalea_flowers.json │ │ ├── rhyolite.json │ │ ├── rhyolite_slab.json │ │ ├── rhyolite_slab_top.json │ │ ├── rhyolite_stairs.json │ │ ├── rhyolite_stairs_inner.json │ │ ├── rhyolite_stairs_outer.json │ │ ├── rhyolite_wall_inventory.json │ │ ├── rhyolite_wall_post.json │ │ ├── rhyolite_wall_side.json │ │ ├── rhyolite_wall_side_tall.json │ │ ├── rocky_dirt.json │ │ ├── schist.json │ │ ├── schist_slab.json │ │ ├── schist_slab_top.json │ │ ├── schist_stairs.json │ │ ├── schist_stairs_inner.json │ │ ├── schist_stairs_outer.json │ │ ├── schist_wall_inventory.json │ │ ├── schist_wall_post.json │ │ ├── schist_wall_side.json │ │ ├── schist_wall_side_tall.json │ │ ├── sea_shell.json │ │ ├── sea_shell1.json │ │ ├── sea_shell2.json │ │ ├── sea_shell3.json │ │ ├── sea_shell4.json │ │ ├── sea_shell5.json │ │ ├── sea_shell6.json │ │ ├── smooth_basalt_brick_slab.json │ │ ├── smooth_basalt_brick_slab_top.json │ │ ├── smooth_basalt_brick_stairs.json │ │ ├── smooth_basalt_brick_stairs_inner.json │ │ ├── smooth_basalt_brick_stairs_outer.json │ │ ├── smooth_basalt_brick_wall_inventory.json │ │ ├── smooth_basalt_brick_wall_post.json │ │ ├── smooth_basalt_brick_wall_side.json │ │ ├── smooth_basalt_brick_wall_side_tall.json │ │ ├── smooth_basalt_bricks.json │ │ ├── soul_lamp.json │ │ ├── soul_lamp_off.json │ │ ├── spruce_table.json │ │ ├── stripped_bamboo.json │ │ ├── stripped_bamboo_button.json │ │ ├── stripped_bamboo_button_inventory.json │ │ ├── stripped_bamboo_button_pressed.json │ │ ├── stripped_bamboo_door_bottom_left.json │ │ ├── stripped_bamboo_door_bottom_left_open.json │ │ ├── stripped_bamboo_door_bottom_right.json │ │ ├── stripped_bamboo_door_bottom_right_open.json │ │ ├── stripped_bamboo_door_top_left.json │ │ ├── stripped_bamboo_door_top_left_open.json │ │ ├── stripped_bamboo_door_top_right.json │ │ ├── stripped_bamboo_door_top_right_open.json │ │ ├── stripped_bamboo_fence_gate.json │ │ ├── stripped_bamboo_fence_gate_open.json │ │ ├── stripped_bamboo_fence_gate_wall.json │ │ ├── stripped_bamboo_fence_gate_wall_open.json │ │ ├── stripped_bamboo_fence_inventory.json │ │ ├── stripped_bamboo_fence_post.json │ │ ├── stripped_bamboo_fence_side.json │ │ ├── stripped_bamboo_mat.json │ │ ├── stripped_bamboo_planks.json │ │ ├── stripped_bamboo_pressure_plate.json │ │ ├── stripped_bamboo_pressure_plate_down.json │ │ ├── stripped_bamboo_sign.json │ │ ├── stripped_bamboo_slab.json │ │ ├── stripped_bamboo_slab_top.json │ │ ├── stripped_bamboo_stairs.json │ │ ├── stripped_bamboo_stairs_inner.json │ │ ├── stripped_bamboo_stairs_outer.json │ │ ├── stripped_bamboo_table.json │ │ ├── stripped_bamboo_trapdoor_bottom.json │ │ ├── stripped_bamboo_trapdoor_open.json │ │ ├── stripped_bamboo_trapdoor_top.json │ │ ├── stripped_bundled_bamboo.json │ │ ├── tuff_slab.json │ │ ├── tuff_slab_top.json │ │ ├── tuff_stairs.json │ │ ├── tuff_stairs_inner.json │ │ ├── tuff_stairs_outer.json │ │ ├── tuff_wall_inventory.json │ │ ├── tuff_wall_post.json │ │ ├── tuff_wall_side.json │ │ ├── tuff_wall_side_tall.json │ │ ├── twig.json │ │ ├── twig1.json │ │ ├── twig2.json │ │ ├── twisting_polished_blackstone_brick_slab.json │ │ ├── twisting_polished_blackstone_brick_slab_top.json │ │ ├── twisting_polished_blackstone_brick_stairs.json │ │ ├── twisting_polished_blackstone_brick_stairs_inner.json │ │ ├── twisting_polished_blackstone_brick_stairs_outer.json │ │ ├── twisting_polished_blackstone_brick_wall_inventory.json │ │ ├── twisting_polished_blackstone_brick_wall_post.json │ │ ├── twisting_polished_blackstone_brick_wall_side.json │ │ ├── twisting_polished_blackstone_brick_wall_side_tall.json │ │ ├── twisting_polished_blackstone_bricks.json │ │ ├── warped_shroomlamp.json │ │ ├── warped_table.json │ │ ├── weathered_copper_pillar.json │ │ ├── weeping_polished_blackstone_brick_slab.json │ │ ├── weeping_polished_blackstone_brick_slab_top.json │ │ ├── weeping_polished_blackstone_brick_stairs.json │ │ ├── weeping_polished_blackstone_brick_stairs_inner.json │ │ ├── weeping_polished_blackstone_brick_stairs_outer.json │ │ ├── weeping_polished_blackstone_brick_wall_inventory.json │ │ ├── weeping_polished_blackstone_brick_wall_post.json │ │ ├── weeping_polished_blackstone_brick_wall_side.json │ │ ├── weeping_polished_blackstone_brick_wall_side_tall.json │ │ └── weeping_polished_blackstone_bricks.json │ │ └── item │ │ ├── acacia_table.json │ │ ├── allium_paper_lantern.json │ │ ├── azalea_flowers.json │ │ ├── bamboo_leaves.json │ │ ├── bamboo_thatch.json │ │ ├── bamboo_thatch_slab.json │ │ ├── bamboo_thatch_stairs.json │ │ ├── birch_table.json │ │ ├── bloodstone.json │ │ ├── bloodstone_slab.json │ │ ├── bloodstone_stairs.json │ │ ├── bloodstone_wall.json │ │ ├── blue_orchid_paper_lantern.json │ │ ├── bundled_bamboo.json │ │ ├── calcite_slab.json │ │ ├── calcite_stairs.json │ │ ├── calcite_wall.json │ │ ├── chiseled_bricks.json │ │ ├── chiseled_polished_amethyst.json │ │ ├── cobblestone_brick_slab.json │ │ ├── cobblestone_brick_stairs.json │ │ ├── cobblestone_brick_wall.json │ │ ├── cobblestone_bricks.json │ │ ├── copper_pillar.json │ │ ├── cracked_bricks.json │ │ ├── cracked_cobblestone_bricks.json │ │ ├── cracked_polished_amethyst_bricks.json │ │ ├── cracked_polished_bloodstone_bricks.json │ │ ├── cracked_polished_calcite_bricks.json │ │ ├── cracked_polished_rhyolite_bricks.json │ │ ├── cracked_polished_schist_bricks.json │ │ ├── cracked_polished_tuff_bricks.json │ │ ├── crimson_roots_paper_lantern.json │ │ ├── crimson_shroomlamp.json │ │ ├── crimson_table.json │ │ ├── dandelion_paper_lantern.json │ │ ├── dark_oak_table.json │ │ ├── ender_mesh.json │ │ ├── exposed_copper_pillar.json │ │ ├── jungle_table.json │ │ ├── lamp.json │ │ ├── mangrove_table.json │ │ ├── mossy_brick_slab.json │ │ ├── mossy_brick_stairs.json │ │ ├── mossy_brick_wall.json │ │ ├── mossy_bricks.json │ │ ├── mossy_cobblestone_brick_slab.json │ │ ├── mossy_cobblestone_brick_stairs.json │ │ ├── mossy_cobblestone_brick_wall.json │ │ ├── mossy_cobblestone_bricks.json │ │ ├── oak_table.json │ │ ├── oxidized_copper_pillar.json │ │ ├── paper_lantern.json │ │ ├── pebble.json │ │ ├── petrified_lichen.json │ │ ├── polished_amethyst.json │ │ ├── polished_amethyst_brick_slab.json │ │ ├── polished_amethyst_brick_stairs.json │ │ ├── polished_amethyst_brick_wall.json │ │ ├── polished_amethyst_bricks.json │ │ ├── polished_amethyst_slab.json │ │ ├── polished_amethyst_stairs.json │ │ ├── polished_basalt_bricks.json │ │ ├── polished_bloodstone.json │ │ ├── polished_bloodstone_brick_slab.json │ │ ├── polished_bloodstone_brick_stairs.json │ │ ├── polished_bloodstone_brick_wall.json │ │ ├── polished_bloodstone_bricks.json │ │ ├── polished_bloodstone_slab.json │ │ ├── polished_bloodstone_stairs.json │ │ ├── polished_calcite.json │ │ ├── polished_calcite_brick_slab.json │ │ ├── polished_calcite_brick_stairs.json │ │ ├── polished_calcite_brick_wall.json │ │ ├── polished_calcite_bricks.json │ │ ├── polished_calcite_slab.json │ │ ├── polished_calcite_stairs.json │ │ ├── polished_rhyolite.json │ │ ├── polished_rhyolite_brick_slab.json │ │ ├── polished_rhyolite_brick_stairs.json │ │ ├── polished_rhyolite_brick_wall.json │ │ ├── polished_rhyolite_bricks.json │ │ ├── polished_rhyolite_slab.json │ │ ├── polished_rhyolite_stairs.json │ │ ├── polished_schist.json │ │ ├── polished_schist_brick_slab.json │ │ ├── polished_schist_brick_stairs.json │ │ ├── polished_schist_brick_wall.json │ │ ├── polished_schist_bricks.json │ │ ├── polished_schist_slab.json │ │ ├── polished_schist_stairs.json │ │ ├── polished_tuff.json │ │ ├── polished_tuff_brick_slab.json │ │ ├── polished_tuff_brick_stairs.json │ │ ├── polished_tuff_brick_wall.json │ │ ├── polished_tuff_bricks.json │ │ ├── polished_tuff_slab.json │ │ ├── polished_tuff_stairs.json │ │ ├── rhyolite.json │ │ ├── rhyolite_slab.json │ │ ├── rhyolite_stairs.json │ │ ├── rhyolite_wall.json │ │ ├── rocky_dirt.json │ │ ├── schist.json │ │ ├── schist_slab.json │ │ ├── schist_stairs.json │ │ ├── schist_wall.json │ │ ├── sea_shell.json │ │ ├── smooth_basalt_brick_slab.json │ │ ├── smooth_basalt_brick_stairs.json │ │ ├── smooth_basalt_brick_wall.json │ │ ├── smooth_basalt_bricks.json │ │ ├── soul_lamp.json │ │ ├── spruce_table.json │ │ ├── stripped_bamboo.json │ │ ├── stripped_bamboo_boat.json │ │ ├── stripped_bamboo_button.json │ │ ├── stripped_bamboo_chest_boat.json │ │ ├── stripped_bamboo_door.json │ │ ├── stripped_bamboo_fence.json │ │ ├── stripped_bamboo_fence_gate.json │ │ ├── stripped_bamboo_mat.json │ │ ├── stripped_bamboo_planks.json │ │ ├── stripped_bamboo_pressure_plate.json │ │ ├── stripped_bamboo_sign.json │ │ ├── stripped_bamboo_slab.json │ │ ├── stripped_bamboo_stairs.json │ │ ├── stripped_bamboo_table.json │ │ ├── stripped_bamboo_trapdoor.json │ │ ├── stripped_bundled_bamboo.json │ │ ├── tuff_slab.json │ │ ├── tuff_stairs.json │ │ ├── tuff_wall.json │ │ ├── twig.json │ │ ├── twisting_polished_blackstone_brick_slab.json │ │ ├── twisting_polished_blackstone_brick_stairs.json │ │ ├── twisting_polished_blackstone_brick_wall.json │ │ ├── twisting_polished_blackstone_bricks.json │ │ ├── warped_shroomlamp.json │ │ ├── warped_table.json │ │ ├── waxed_copper_pillar.json │ │ ├── waxed_exposed_copper_pillar.json │ │ ├── waxed_oxidized_copper_pillar.json │ │ ├── waxed_weathered_copper_pillar.json │ │ ├── weathered_copper_pillar.json │ │ ├── weeping_polished_blackstone_brick_slab.json │ │ ├── weeping_polished_blackstone_brick_stairs.json │ │ ├── weeping_polished_blackstone_brick_wall.json │ │ └── weeping_polished_blackstone_bricks.json └── data │ ├── minecraft │ └── tags │ │ ├── blocks │ │ ├── bamboo_plantable_on.json │ │ ├── base_stone_overworld.json │ │ ├── crystal_sound_blocks.json │ │ ├── dirt.json │ │ ├── enderman_holdable.json │ │ ├── fence_gates.json │ │ ├── flower_pots.json │ │ ├── foxes_spawnable_on.json │ │ ├── mineable │ │ │ ├── axe.json │ │ │ ├── hoe.json │ │ │ └── pickaxe.json │ │ ├── piglin_repellents.json │ │ ├── planks.json │ │ ├── replaceable_plants.json │ │ ├── slabs.json │ │ ├── stairs.json │ │ ├── standing_signs.json │ │ ├── wall_signs.json │ │ ├── walls.json │ │ ├── wooden_buttons.json │ │ ├── wooden_doors.json │ │ ├── wooden_fences.json │ │ ├── wooden_pressure_plates.json │ │ ├── wooden_slabs.json │ │ ├── wooden_stairs.json │ │ └── wooden_trapdoors.json │ │ └── items │ │ ├── boats.json │ │ ├── chest_boats.json │ │ ├── dirt.json │ │ ├── piglin_repellents.json │ │ ├── planks.json │ │ ├── signs.json │ │ ├── slabs.json │ │ ├── stairs.json │ │ ├── stone_crafting_materials.json │ │ ├── stone_tool_materials.json │ │ ├── walls.json │ │ ├── wooden_buttons.json │ │ ├── wooden_doors.json │ │ ├── wooden_fences.json │ │ ├── wooden_pressure_plates.json │ │ ├── wooden_slabs.json │ │ ├── wooden_stairs.json │ │ └── wooden_trapdoors.json │ └── twigs │ ├── advancements │ └── recipes │ │ ├── building_blocks │ │ └── cobblestone_from_pebble.json │ │ ├── decorations │ │ ├── bamboo.json │ │ ├── flowering_azalea_from_azalea_flowers.json │ │ └── flowering_azalea_leaves_from_azalea_flowers.json │ │ ├── misc │ │ ├── bone_meal_from_sea_shell.json │ │ └── stick_from_twig.json │ │ └── twigs.item_group │ │ ├── acacia_table.json │ │ ├── allium_paper_lantern.json │ │ ├── bamboo_thatch.json │ │ ├── bamboo_thatch_slab.json │ │ ├── bamboo_thatch_stairs.json │ │ ├── birch_table.json │ │ ├── bloodstone.json │ │ ├── bloodstone_slab.json │ │ ├── bloodstone_slab_from_stonecutting.json │ │ ├── bloodstone_stairs.json │ │ ├── bloodstone_stairs_from_stonecutting.json │ │ ├── bloodstone_wall.json │ │ ├── bloodstone_wall_from_stonecutting.json │ │ ├── blue_orchid_paper_lantern.json │ │ ├── bundled_bamboo.json │ │ ├── calcite_slab.json │ │ ├── calcite_slab_from_stonecutting.json │ │ ├── calcite_stairs.json │ │ ├── calcite_stairs_from_stonecutting.json │ │ ├── calcite_wall.json │ │ ├── calcite_wall_from_stonecutting.json │ │ ├── chiseled_bricks.json │ │ ├── chiseled_polished_amethyst.json │ │ ├── cobblestone_brick_slab.json │ │ ├── cobblestone_brick_slab_from_cobblestone_from_stonecutting.json │ │ ├── cobblestone_brick_slab_from_stonecutting.json │ │ ├── cobblestone_brick_stairs.json │ │ ├── cobblestone_brick_stairs_from_cobblestone_from_stonecutting.json │ │ ├── cobblestone_brick_stairs_from_stonecutting.json │ │ ├── cobblestone_brick_wall.json │ │ ├── cobblestone_brick_wall_from_cobblestone_from_stonecutting.json │ │ ├── cobblestone_brick_wall_from_stonecutting.json │ │ ├── cobblestone_bricks.json │ │ ├── cobblestone_bricks_from_stonecutting.json │ │ ├── copper_pillar.json │ │ ├── cracked_bricks.json │ │ ├── cracked_cobblestone_bricks.json │ │ ├── cracked_polished_amethyst_bricks.json │ │ ├── cracked_polished_bloodstone_bricks.json │ │ ├── cracked_polished_calcite_bricks.json │ │ ├── cracked_polished_rhyolite_bricks.json │ │ ├── cracked_polished_schist_bricks.json │ │ ├── cracked_polished_tuff_bricks.json │ │ ├── crimson_roots_paper_lantern.json │ │ ├── crimson_shroomlamp.json │ │ ├── crimson_table.json │ │ ├── dandelion_paper_lantern.json │ │ ├── dark_oak_table.json │ │ ├── ender_mesh.json │ │ ├── exposed_copper_pillar.json │ │ ├── jungle_table.json │ │ ├── lamp.json │ │ ├── mangrove_table.json │ │ ├── mossy_brick_slab.json │ │ ├── mossy_brick_slab_from_stonecutting.json │ │ ├── mossy_brick_stairs.json │ │ ├── mossy_brick_stairs_from_stonecutting.json │ │ ├── mossy_brick_wall.json │ │ ├── mossy_brick_wall_from_stonecutting.json │ │ ├── mossy_bricks.json │ │ ├── mossy_cobblestone_brick_slab.json │ │ ├── mossy_cobblestone_brick_slab_from_stonecutting.json │ │ ├── mossy_cobblestone_brick_stairs.json │ │ ├── mossy_cobblestone_brick_stairs_from_stonecutting.json │ │ ├── mossy_cobblestone_brick_wall.json │ │ ├── mossy_cobblestone_brick_wall_from_stonecutting.json │ │ ├── mossy_cobblestone_bricks.json │ │ ├── oak_table.json │ │ ├── oxidized_copper_pillar.json │ │ ├── paper_lantern.json │ │ ├── polished_amethyst.json │ │ ├── polished_amethyst_brick_slab.json │ │ ├── polished_amethyst_brick_slab_from_amethyst_block_from_stonecutting.json │ │ ├── polished_amethyst_brick_slab_from_polished_amethyst_from_stonecutting.json │ │ ├── polished_amethyst_brick_slab_from_stonecutting.json │ │ ├── polished_amethyst_brick_stairs.json │ │ ├── polished_amethyst_brick_stairs_from_amethyst_block_from_stonecutting.json │ │ ├── polished_amethyst_brick_stairs_from_polished_amethyst_from_stonecutting.json │ │ ├── polished_amethyst_brick_stairs_from_stonecutting.json │ │ ├── polished_amethyst_brick_wall.json │ │ ├── polished_amethyst_brick_wall_from_amethyst_block_from_stonecutting.json │ │ ├── polished_amethyst_brick_wall_from_polished_amethyst_from_stonecutting.json │ │ ├── polished_amethyst_brick_wall_from_stonecutting.json │ │ ├── polished_amethyst_bricks.json │ │ ├── polished_amethyst_bricks_from_stonecutting.json │ │ ├── polished_amethyst_from_stonecutting.json │ │ ├── polished_amethyst_slab.json │ │ ├── polished_amethyst_slab_from_amethyst_block_from_stonecutting.json │ │ ├── polished_amethyst_slab_from_stonecutting.json │ │ ├── polished_amethyst_stairs.json │ │ ├── polished_amethyst_stairs_from_amethyst_block_from_stonecutting.json │ │ ├── polished_amethyst_stairs_from_stonecutting.json │ │ ├── polished_basalt_bricks.json │ │ ├── polished_basalt_bricks_from_stonecutting.json │ │ ├── polished_bloodstone.json │ │ ├── polished_bloodstone_brick_slab.json │ │ ├── polished_bloodstone_brick_slab_from_bloodstone_from_stonecutting.json │ │ ├── polished_bloodstone_brick_slab_from_polished_bloodstone_from_stonecutting.json │ │ ├── polished_bloodstone_brick_slab_from_stonecutting.json │ │ ├── polished_bloodstone_brick_stairs.json │ │ ├── polished_bloodstone_brick_stairs_from_bloodstone_from_stonecutting.json │ │ ├── polished_bloodstone_brick_stairs_from_polished_bloodstone_from_stonecutting.json │ │ ├── polished_bloodstone_brick_stairs_from_stonecutting.json │ │ ├── polished_bloodstone_brick_wall.json │ │ ├── polished_bloodstone_brick_wall_from_bloodstone_from_stonecutting.json │ │ ├── polished_bloodstone_brick_wall_from_polished_bloodstone_from_stonecutting.json │ │ ├── polished_bloodstone_brick_wall_from_stonecutting.json │ │ ├── polished_bloodstone_bricks.json │ │ ├── polished_bloodstone_bricks_from_stonecutting.json │ │ ├── polished_bloodstone_from_stonecutting.json │ │ ├── polished_bloodstone_slab.json │ │ ├── polished_bloodstone_slab_from_bloodstone_from_stonecutting.json │ │ ├── polished_bloodstone_slab_from_stonecutting.json │ │ ├── polished_bloodstone_stairs.json │ │ ├── polished_bloodstone_stairs_from_bloodstone_from_stonecutting.json │ │ ├── polished_bloodstone_stairs_from_stonecutting.json │ │ ├── polished_calcite.json │ │ ├── polished_calcite_brick_slab.json │ │ ├── polished_calcite_brick_slab_from_calcite_from_stonecutting.json │ │ ├── polished_calcite_brick_slab_from_polished_calcite_from_stonecutting.json │ │ ├── polished_calcite_brick_slab_from_stonecutting.json │ │ ├── polished_calcite_brick_stairs.json │ │ ├── polished_calcite_brick_stairs_from_calcite_from_stonecutting.json │ │ ├── polished_calcite_brick_stairs_from_polished_calcite_from_stonecutting.json │ │ ├── polished_calcite_brick_stairs_from_stonecutting.json │ │ ├── polished_calcite_brick_wall.json │ │ ├── polished_calcite_brick_wall_from_calcite_from_stonecutting.json │ │ ├── polished_calcite_brick_wall_from_polished_calcite_from_stonecutting.json │ │ ├── polished_calcite_brick_wall_from_stonecutting.json │ │ ├── polished_calcite_bricks.json │ │ ├── polished_calcite_bricks_from_stonecutting.json │ │ ├── polished_calcite_from_stonecutting.json │ │ ├── polished_calcite_slab.json │ │ ├── polished_calcite_slab_from_calcite_from_stonecutting.json │ │ ├── polished_calcite_slab_from_stonecutting.json │ │ ├── polished_calcite_stairs.json │ │ ├── polished_calcite_stairs_from_calcite_from_stonecutting.json │ │ ├── polished_calcite_stairs_from_stonecutting.json │ │ ├── polished_rhyolite.json │ │ ├── polished_rhyolite_brick_slab.json │ │ ├── polished_rhyolite_brick_slab_from_polished_rhyolite_from_stonecutting.json │ │ ├── polished_rhyolite_brick_slab_from_rhyolite_from_stonecutting.json │ │ ├── polished_rhyolite_brick_slab_from_stonecutting.json │ │ ├── polished_rhyolite_brick_stairs.json │ │ ├── polished_rhyolite_brick_stairs_from_polished_rhyolite_from_stonecutting.json │ │ ├── polished_rhyolite_brick_stairs_from_rhyolite_from_stonecutting.json │ │ ├── polished_rhyolite_brick_stairs_from_stonecutting.json │ │ ├── polished_rhyolite_brick_wall.json │ │ ├── polished_rhyolite_brick_wall_from_polished_rhyolite_from_stonecutting.json │ │ ├── polished_rhyolite_brick_wall_from_rhyolite_from_stonecutting.json │ │ ├── polished_rhyolite_brick_wall_from_stonecutting.json │ │ ├── polished_rhyolite_bricks.json │ │ ├── polished_rhyolite_bricks_from_stonecutting.json │ │ ├── polished_rhyolite_from_stonecutting.json │ │ ├── polished_rhyolite_slab.json │ │ ├── polished_rhyolite_slab_from_rhyolite_from_stonecutting.json │ │ ├── polished_rhyolite_slab_from_stonecutting.json │ │ ├── polished_rhyolite_stairs.json │ │ ├── polished_rhyolite_stairs_from_rhyolite_from_stonecutting.json │ │ ├── polished_rhyolite_stairs_from_stonecutting.json │ │ ├── polished_schist.json │ │ ├── polished_schist_brick_slab.json │ │ ├── polished_schist_brick_slab_from_polished_schist_from_stonecutting.json │ │ ├── polished_schist_brick_slab_from_schist_from_stonecutting.json │ │ ├── polished_schist_brick_slab_from_stonecutting.json │ │ ├── polished_schist_brick_stairs.json │ │ ├── polished_schist_brick_stairs_from_polished_schist_from_stonecutting.json │ │ ├── polished_schist_brick_stairs_from_schist_from_stonecutting.json │ │ ├── polished_schist_brick_stairs_from_stonecutting.json │ │ ├── polished_schist_brick_wall.json │ │ ├── polished_schist_brick_wall_from_polished_schist_from_stonecutting.json │ │ ├── polished_schist_brick_wall_from_schist_from_stonecutting.json │ │ ├── polished_schist_brick_wall_from_stonecutting.json │ │ ├── polished_schist_bricks.json │ │ ├── polished_schist_bricks_from_stonecutting.json │ │ ├── polished_schist_from_stonecutting.json │ │ ├── polished_schist_slab.json │ │ ├── polished_schist_slab_from_schist_from_stonecutting.json │ │ ├── polished_schist_slab_from_stonecutting.json │ │ ├── polished_schist_stairs.json │ │ ├── polished_schist_stairs_from_schist_from_stonecutting.json │ │ ├── polished_schist_stairs_from_stonecutting.json │ │ ├── polished_tuff.json │ │ ├── polished_tuff_brick_slab.json │ │ ├── polished_tuff_brick_slab_from_polished_tuff_from_stonecutting.json │ │ ├── polished_tuff_brick_slab_from_stonecutting.json │ │ ├── polished_tuff_brick_slab_from_tuff_from_stonecutting.json │ │ ├── polished_tuff_brick_stairs.json │ │ ├── polished_tuff_brick_stairs_from_polished_tuff_from_stonecutting.json │ │ ├── polished_tuff_brick_stairs_from_stonecutting.json │ │ ├── polished_tuff_brick_stairs_from_tuff_from_stonecutting.json │ │ ├── polished_tuff_brick_wall.json │ │ ├── polished_tuff_brick_wall_from_polished_tuff_from_stonecutting.json │ │ ├── polished_tuff_brick_wall_from_stonecutting.json │ │ ├── polished_tuff_brick_wall_from_tuff_from_stonecutting.json │ │ ├── polished_tuff_bricks.json │ │ ├── polished_tuff_bricks_from_stonecutting.json │ │ ├── polished_tuff_from_stonecutting.json │ │ ├── polished_tuff_slab.json │ │ ├── polished_tuff_slab_from_stonecutting.json │ │ ├── polished_tuff_slab_from_tuff_from_stonecutting.json │ │ ├── polished_tuff_stairs.json │ │ ├── polished_tuff_stairs_from_stonecutting.json │ │ ├── polished_tuff_stairs_from_tuff_from_stonecutting.json │ │ ├── rhyolite.json │ │ ├── rhyolite_slab.json │ │ ├── rhyolite_slab_from_stonecutting.json │ │ ├── rhyolite_stairs.json │ │ ├── rhyolite_stairs_from_stonecutting.json │ │ ├── rhyolite_wall.json │ │ ├── rhyolite_wall_from_stonecutting.json │ │ ├── rocky_dirt.json │ │ ├── schist.json │ │ ├── schist_slab.json │ │ ├── schist_slab_from_stonecutting.json │ │ ├── schist_stairs.json │ │ ├── schist_stairs_from_stonecutting.json │ │ ├── schist_wall.json │ │ ├── schist_wall_from_stonecutting.json │ │ ├── smooth_basalt_brick_slab.json │ │ ├── smooth_basalt_brick_slab_from_smooth_basalt_from_stonecutting.json │ │ ├── smooth_basalt_brick_slab_from_stonecutting.json │ │ ├── smooth_basalt_brick_stairs.json │ │ ├── smooth_basalt_brick_stairs_from_smooth_basalt_from_stonecutting.json │ │ ├── smooth_basalt_brick_stairs_from_stonecutting.json │ │ ├── smooth_basalt_brick_wall.json │ │ ├── smooth_basalt_brick_wall_from_smooth_basalt_from_stonecutting.json │ │ ├── smooth_basalt_brick_wall_from_stonecutting.json │ │ ├── smooth_basalt_bricks.json │ │ ├── smooth_basalt_bricks_from_stonecutting.json │ │ ├── soul_lamp.json │ │ ├── spruce_table.json │ │ ├── stripped_bamboo_button.json │ │ ├── stripped_bamboo_door.json │ │ ├── stripped_bamboo_fence.json │ │ ├── stripped_bamboo_fence_gate.json │ │ ├── stripped_bamboo_from_bundled_bamboo_from_stonecutting.json │ │ ├── stripped_bamboo_from_stonecutting.json │ │ ├── stripped_bamboo_from_stripped_bundled_bamboo_from_stonecutting.json │ │ ├── stripped_bamboo_mat.json │ │ ├── stripped_bamboo_planks.json │ │ ├── stripped_bamboo_pressure_plate.json │ │ ├── stripped_bamboo_sign.json │ │ ├── stripped_bamboo_slab.json │ │ ├── stripped_bamboo_stairs.json │ │ ├── stripped_bamboo_table.json │ │ ├── stripped_bamboo_trapdoor.json │ │ ├── stripped_bundled_bamboo_from_stonecutting.json │ │ ├── tuff_slab.json │ │ ├── tuff_slab_from_stonecutting.json │ │ ├── tuff_stairs.json │ │ ├── tuff_stairs_from_stonecutting.json │ │ ├── tuff_wall.json │ │ ├── tuff_wall_from_stonecutting.json │ │ ├── twisting_polished_blackstone_brick_slab.json │ │ ├── twisting_polished_blackstone_brick_slab_from_stonecutting.json │ │ ├── twisting_polished_blackstone_brick_stairs.json │ │ ├── twisting_polished_blackstone_brick_stairs_from_stonecutting.json │ │ ├── twisting_polished_blackstone_brick_wall.json │ │ ├── twisting_polished_blackstone_brick_wall_from_stonecutting.json │ │ ├── twisting_polished_blackstone_bricks.json │ │ ├── warped_shroomlamp.json │ │ ├── warped_table.json │ │ ├── waxed_copper_pillar.json │ │ ├── waxed_exposed_copper_pillar.json │ │ ├── waxed_oxidized_copper_pillar.json │ │ ├── waxed_weathered_copper_pillar.json │ │ ├── weathered_copper_pillar.json │ │ ├── weeping_polished_blackstone_brick_slab.json │ │ ├── weeping_polished_blackstone_brick_slab_from_stonecutting.json │ │ ├── weeping_polished_blackstone_brick_stairs.json │ │ ├── weeping_polished_blackstone_brick_stairs_from_stonecutting.json │ │ ├── weeping_polished_blackstone_brick_wall.json │ │ ├── weeping_polished_blackstone_brick_wall_from_stonecutting.json │ │ └── weeping_polished_blackstone_bricks.json │ ├── loot_tables │ └── blocks │ │ ├── acacia_table.json │ │ ├── allium_paper_lantern.json │ │ ├── azalea_flowers.json │ │ ├── bamboo_leaves.json │ │ ├── bamboo_thatch.json │ │ ├── bamboo_thatch_slab.json │ │ ├── bamboo_thatch_stairs.json │ │ ├── birch_table.json │ │ ├── bloodstone.json │ │ ├── bloodstone_slab.json │ │ ├── bloodstone_stairs.json │ │ ├── bloodstone_wall.json │ │ ├── blue_orchid_paper_lantern.json │ │ ├── bundled_bamboo.json │ │ ├── calcite_slab.json │ │ ├── calcite_stairs.json │ │ ├── calcite_wall.json │ │ ├── chiseled_bricks.json │ │ ├── chiseled_polished_amethyst.json │ │ ├── cobblestone_brick_slab.json │ │ ├── cobblestone_brick_stairs.json │ │ ├── cobblestone_brick_wall.json │ │ ├── cobblestone_bricks.json │ │ ├── copper_pillar.json │ │ ├── cracked_bricks.json │ │ ├── cracked_cobblestone_bricks.json │ │ ├── cracked_polished_amethyst_bricks.json │ │ ├── cracked_polished_bloodstone_bricks.json │ │ ├── cracked_polished_calcite_bricks.json │ │ ├── cracked_polished_rhyolite_bricks.json │ │ ├── cracked_polished_schist_bricks.json │ │ ├── cracked_polished_tuff_bricks.json │ │ ├── crimson_roots_paper_lantern.json │ │ ├── crimson_shroomlamp.json │ │ ├── crimson_table.json │ │ ├── dandelion_paper_lantern.json │ │ ├── dark_oak_table.json │ │ ├── ender_mesh.json │ │ ├── exposed_copper_pillar.json │ │ ├── jungle_table.json │ │ ├── lamp.json │ │ ├── mangrove_table.json │ │ ├── mossy_brick_slab.json │ │ ├── mossy_brick_stairs.json │ │ ├── mossy_brick_wall.json │ │ ├── mossy_bricks.json │ │ ├── mossy_cobblestone_brick_slab.json │ │ ├── mossy_cobblestone_brick_stairs.json │ │ ├── mossy_cobblestone_brick_wall.json │ │ ├── mossy_cobblestone_bricks.json │ │ ├── oak_table.json │ │ ├── oxidized_copper_pillar.json │ │ ├── paper_lantern.json │ │ ├── pebble.json │ │ ├── petrified_lichen.json │ │ ├── polished_amethyst.json │ │ ├── polished_amethyst_brick_slab.json │ │ ├── polished_amethyst_brick_stairs.json │ │ ├── polished_amethyst_brick_wall.json │ │ ├── polished_amethyst_bricks.json │ │ ├── polished_amethyst_slab.json │ │ ├── polished_amethyst_stairs.json │ │ ├── polished_basalt_bricks.json │ │ ├── polished_bloodstone.json │ │ ├── polished_bloodstone_brick_slab.json │ │ ├── polished_bloodstone_brick_stairs.json │ │ ├── polished_bloodstone_brick_wall.json │ │ ├── polished_bloodstone_bricks.json │ │ ├── polished_bloodstone_slab.json │ │ ├── polished_bloodstone_stairs.json │ │ ├── polished_calcite.json │ │ ├── polished_calcite_brick_slab.json │ │ ├── polished_calcite_brick_stairs.json │ │ ├── polished_calcite_brick_wall.json │ │ ├── polished_calcite_bricks.json │ │ ├── polished_calcite_slab.json │ │ ├── polished_calcite_stairs.json │ │ ├── polished_rhyolite.json │ │ ├── polished_rhyolite_brick_slab.json │ │ ├── polished_rhyolite_brick_stairs.json │ │ ├── polished_rhyolite_brick_wall.json │ │ ├── polished_rhyolite_bricks.json │ │ ├── polished_rhyolite_slab.json │ │ ├── polished_rhyolite_stairs.json │ │ ├── polished_schist.json │ │ ├── polished_schist_brick_slab.json │ │ ├── polished_schist_brick_stairs.json │ │ ├── polished_schist_brick_wall.json │ │ ├── polished_schist_bricks.json │ │ ├── polished_schist_slab.json │ │ ├── polished_schist_stairs.json │ │ ├── polished_tuff.json │ │ ├── polished_tuff_brick_slab.json │ │ ├── polished_tuff_brick_stairs.json │ │ ├── polished_tuff_brick_wall.json │ │ ├── polished_tuff_bricks.json │ │ ├── polished_tuff_slab.json │ │ ├── polished_tuff_stairs.json │ │ ├── potted_azalea_flowers.json │ │ ├── rhyolite.json │ │ ├── rhyolite_slab.json │ │ ├── rhyolite_stairs.json │ │ ├── rhyolite_wall.json │ │ ├── rocky_dirt.json │ │ ├── schist.json │ │ ├── schist_slab.json │ │ ├── schist_stairs.json │ │ ├── schist_wall.json │ │ ├── sea_shell.json │ │ ├── smooth_basalt_brick_slab.json │ │ ├── smooth_basalt_brick_stairs.json │ │ ├── smooth_basalt_brick_wall.json │ │ ├── smooth_basalt_bricks.json │ │ ├── soul_lamp.json │ │ ├── spruce_table.json │ │ ├── stripped_bamboo.json │ │ ├── stripped_bamboo_button.json │ │ ├── stripped_bamboo_door.json │ │ ├── stripped_bamboo_fence.json │ │ ├── stripped_bamboo_fence_gate.json │ │ ├── stripped_bamboo_mat.json │ │ ├── stripped_bamboo_planks.json │ │ ├── stripped_bamboo_pressure_plate.json │ │ ├── stripped_bamboo_sign.json │ │ ├── stripped_bamboo_slab.json │ │ ├── stripped_bamboo_stairs.json │ │ ├── stripped_bamboo_table.json │ │ ├── stripped_bamboo_trapdoor.json │ │ ├── stripped_bundled_bamboo.json │ │ ├── tuff_slab.json │ │ ├── tuff_stairs.json │ │ ├── tuff_wall.json │ │ ├── twig.json │ │ ├── twisting_polished_blackstone_brick_slab.json │ │ ├── twisting_polished_blackstone_brick_stairs.json │ │ ├── twisting_polished_blackstone_brick_wall.json │ │ ├── twisting_polished_blackstone_bricks.json │ │ ├── warped_shroomlamp.json │ │ ├── warped_table.json │ │ ├── waxed_copper_pillar.json │ │ ├── waxed_exposed_copper_pillar.json │ │ ├── waxed_oxidized_copper_pillar.json │ │ ├── waxed_weathered_copper_pillar.json │ │ ├── weathered_copper_pillar.json │ │ ├── weeping_polished_blackstone_brick_slab.json │ │ ├── weeping_polished_blackstone_brick_stairs.json │ │ ├── weeping_polished_blackstone_brick_wall.json │ │ └── weeping_polished_blackstone_bricks.json │ ├── recipes │ ├── acacia_table.json │ ├── allium_paper_lantern.json │ ├── bamboo.json │ ├── bamboo_thatch.json │ ├── bamboo_thatch_slab.json │ ├── bamboo_thatch_stairs.json │ ├── birch_table.json │ ├── bloodstone.json │ ├── bloodstone_slab.json │ ├── bloodstone_slab_from_stonecutting.json │ ├── bloodstone_stairs.json │ ├── bloodstone_stairs_from_stonecutting.json │ ├── bloodstone_wall.json │ ├── bloodstone_wall_from_stonecutting.json │ ├── blue_orchid_paper_lantern.json │ ├── bone_meal_from_sea_shell.json │ ├── bundled_bamboo.json │ ├── calcite_slab.json │ ├── calcite_slab_from_stonecutting.json │ ├── calcite_stairs.json │ ├── calcite_stairs_from_stonecutting.json │ ├── calcite_wall.json │ ├── calcite_wall_from_stonecutting.json │ ├── chiseled_bricks.json │ ├── chiseled_polished_amethyst.json │ ├── cobblestone_brick_slab.json │ ├── cobblestone_brick_slab_from_cobblestone_from_stonecutting.json │ ├── cobblestone_brick_slab_from_stonecutting.json │ ├── cobblestone_brick_stairs.json │ ├── cobblestone_brick_stairs_from_cobblestone_from_stonecutting.json │ ├── cobblestone_brick_stairs_from_stonecutting.json │ ├── cobblestone_brick_wall.json │ ├── cobblestone_brick_wall_from_cobblestone_from_stonecutting.json │ ├── cobblestone_brick_wall_from_stonecutting.json │ ├── cobblestone_bricks.json │ ├── cobblestone_bricks_from_stonecutting.json │ ├── cobblestone_from_pebble.json │ ├── copper_pillar.json │ ├── cracked_bricks.json │ ├── cracked_cobblestone_bricks.json │ ├── cracked_polished_amethyst_bricks.json │ ├── cracked_polished_bloodstone_bricks.json │ ├── cracked_polished_calcite_bricks.json │ ├── cracked_polished_rhyolite_bricks.json │ ├── cracked_polished_schist_bricks.json │ ├── cracked_polished_tuff_bricks.json │ ├── crimson_roots_paper_lantern.json │ ├── crimson_shroomlamp.json │ ├── crimson_table.json │ ├── dandelion_paper_lantern.json │ ├── dark_oak_table.json │ ├── ender_mesh.json │ ├── exposed_copper_pillar.json │ ├── flowering_azalea_from_azalea_flowers.json │ ├── flowering_azalea_leaves_from_azalea_flowers.json │ ├── jungle_table.json │ ├── lamp.json │ ├── mangrove_table.json │ ├── mossy_brick_slab.json │ ├── mossy_brick_slab_from_stonecutting.json │ ├── mossy_brick_stairs.json │ ├── mossy_brick_stairs_from_stonecutting.json │ ├── mossy_brick_wall.json │ ├── mossy_brick_wall_from_stonecutting.json │ ├── mossy_bricks.json │ ├── mossy_cobblestone_brick_slab.json │ ├── mossy_cobblestone_brick_slab_from_stonecutting.json │ ├── mossy_cobblestone_brick_stairs.json │ ├── mossy_cobblestone_brick_stairs_from_stonecutting.json │ ├── mossy_cobblestone_brick_wall.json │ ├── mossy_cobblestone_brick_wall_from_stonecutting.json │ ├── mossy_cobblestone_bricks.json │ ├── oak_table.json │ ├── oxidized_copper_pillar.json │ ├── paper_lantern.json │ ├── polished_amethyst.json │ ├── polished_amethyst_brick_slab.json │ ├── polished_amethyst_brick_slab_from_amethyst_block_from_stonecutting.json │ ├── polished_amethyst_brick_slab_from_polished_amethyst_from_stonecutting.json │ ├── polished_amethyst_brick_slab_from_stonecutting.json │ ├── polished_amethyst_brick_stairs.json │ ├── polished_amethyst_brick_stairs_from_amethyst_block_from_stonecutting.json │ ├── polished_amethyst_brick_stairs_from_polished_amethyst_from_stonecutting.json │ ├── polished_amethyst_brick_stairs_from_stonecutting.json │ ├── polished_amethyst_brick_wall.json │ ├── polished_amethyst_brick_wall_from_amethyst_block_from_stonecutting.json │ ├── polished_amethyst_brick_wall_from_polished_amethyst_from_stonecutting.json │ ├── polished_amethyst_brick_wall_from_stonecutting.json │ ├── polished_amethyst_bricks.json │ ├── polished_amethyst_bricks_from_stonecutting.json │ ├── polished_amethyst_from_stonecutting.json │ ├── polished_amethyst_slab.json │ ├── polished_amethyst_slab_from_amethyst_block_from_stonecutting.json │ ├── polished_amethyst_slab_from_stonecutting.json │ ├── polished_amethyst_stairs.json │ ├── polished_amethyst_stairs_from_amethyst_block_from_stonecutting.json │ ├── polished_amethyst_stairs_from_stonecutting.json │ ├── polished_basalt_bricks.json │ ├── polished_basalt_bricks_from_stonecutting.json │ ├── polished_bloodstone.json │ ├── polished_bloodstone_brick_slab.json │ ├── polished_bloodstone_brick_slab_from_bloodstone_from_stonecutting.json │ ├── polished_bloodstone_brick_slab_from_polished_bloodstone_from_stonecutting.json │ ├── polished_bloodstone_brick_slab_from_stonecutting.json │ ├── polished_bloodstone_brick_stairs.json │ ├── polished_bloodstone_brick_stairs_from_bloodstone_from_stonecutting.json │ ├── polished_bloodstone_brick_stairs_from_polished_bloodstone_from_stonecutting.json │ ├── polished_bloodstone_brick_stairs_from_stonecutting.json │ ├── polished_bloodstone_brick_wall.json │ ├── polished_bloodstone_brick_wall_from_bloodstone_from_stonecutting.json │ ├── polished_bloodstone_brick_wall_from_polished_bloodstone_from_stonecutting.json │ ├── polished_bloodstone_brick_wall_from_stonecutting.json │ ├── polished_bloodstone_bricks.json │ ├── polished_bloodstone_bricks_from_stonecutting.json │ ├── polished_bloodstone_from_stonecutting.json │ ├── polished_bloodstone_slab.json │ ├── polished_bloodstone_slab_from_bloodstone_from_stonecutting.json │ ├── polished_bloodstone_slab_from_stonecutting.json │ ├── polished_bloodstone_stairs.json │ ├── polished_bloodstone_stairs_from_bloodstone_from_stonecutting.json │ ├── polished_bloodstone_stairs_from_stonecutting.json │ ├── polished_calcite.json │ ├── polished_calcite_brick_slab.json │ ├── polished_calcite_brick_slab_from_calcite_from_stonecutting.json │ ├── polished_calcite_brick_slab_from_polished_calcite_from_stonecutting.json │ ├── polished_calcite_brick_slab_from_stonecutting.json │ ├── polished_calcite_brick_stairs.json │ ├── polished_calcite_brick_stairs_from_calcite_from_stonecutting.json │ ├── polished_calcite_brick_stairs_from_polished_calcite_from_stonecutting.json │ ├── polished_calcite_brick_stairs_from_stonecutting.json │ ├── polished_calcite_brick_wall.json │ ├── polished_calcite_brick_wall_from_calcite_from_stonecutting.json │ ├── polished_calcite_brick_wall_from_polished_calcite_from_stonecutting.json │ ├── polished_calcite_brick_wall_from_stonecutting.json │ ├── polished_calcite_bricks.json │ ├── polished_calcite_bricks_from_stonecutting.json │ ├── polished_calcite_from_stonecutting.json │ ├── polished_calcite_slab.json │ ├── polished_calcite_slab_from_calcite_from_stonecutting.json │ ├── polished_calcite_slab_from_stonecutting.json │ ├── polished_calcite_stairs.json │ ├── polished_calcite_stairs_from_calcite_from_stonecutting.json │ ├── polished_calcite_stairs_from_stonecutting.json │ ├── polished_rhyolite.json │ ├── polished_rhyolite_brick_slab.json │ ├── polished_rhyolite_brick_slab_from_polished_rhyolite_from_stonecutting.json │ ├── polished_rhyolite_brick_slab_from_rhyolite_from_stonecutting.json │ ├── polished_rhyolite_brick_slab_from_stonecutting.json │ ├── polished_rhyolite_brick_stairs.json │ ├── polished_rhyolite_brick_stairs_from_polished_rhyolite_from_stonecutting.json │ ├── polished_rhyolite_brick_stairs_from_rhyolite_from_stonecutting.json │ ├── polished_rhyolite_brick_stairs_from_stonecutting.json │ ├── polished_rhyolite_brick_wall.json │ ├── polished_rhyolite_brick_wall_from_polished_rhyolite_from_stonecutting.json │ ├── polished_rhyolite_brick_wall_from_rhyolite_from_stonecutting.json │ ├── polished_rhyolite_brick_wall_from_stonecutting.json │ ├── polished_rhyolite_bricks.json │ ├── polished_rhyolite_bricks_from_stonecutting.json │ ├── polished_rhyolite_from_stonecutting.json │ ├── polished_rhyolite_slab.json │ ├── polished_rhyolite_slab_from_rhyolite_from_stonecutting.json │ ├── polished_rhyolite_slab_from_stonecutting.json │ ├── polished_rhyolite_stairs.json │ ├── polished_rhyolite_stairs_from_rhyolite_from_stonecutting.json │ ├── polished_rhyolite_stairs_from_stonecutting.json │ ├── polished_schist.json │ ├── polished_schist_brick_slab.json │ ├── polished_schist_brick_slab_from_polished_schist_from_stonecutting.json │ ├── polished_schist_brick_slab_from_schist_from_stonecutting.json │ ├── polished_schist_brick_slab_from_stonecutting.json │ ├── polished_schist_brick_stairs.json │ ├── polished_schist_brick_stairs_from_polished_schist_from_stonecutting.json │ ├── polished_schist_brick_stairs_from_schist_from_stonecutting.json │ ├── polished_schist_brick_stairs_from_stonecutting.json │ ├── polished_schist_brick_wall.json │ ├── polished_schist_brick_wall_from_polished_schist_from_stonecutting.json │ ├── polished_schist_brick_wall_from_schist_from_stonecutting.json │ ├── polished_schist_brick_wall_from_stonecutting.json │ ├── polished_schist_bricks.json │ ├── polished_schist_bricks_from_stonecutting.json │ ├── polished_schist_from_stonecutting.json │ ├── polished_schist_slab.json │ ├── polished_schist_slab_from_schist_from_stonecutting.json │ ├── polished_schist_slab_from_stonecutting.json │ ├── polished_schist_stairs.json │ ├── polished_schist_stairs_from_schist_from_stonecutting.json │ ├── polished_schist_stairs_from_stonecutting.json │ ├── polished_tuff.json │ ├── polished_tuff_brick_slab.json │ ├── polished_tuff_brick_slab_from_polished_tuff_from_stonecutting.json │ ├── polished_tuff_brick_slab_from_stonecutting.json │ ├── polished_tuff_brick_slab_from_tuff_from_stonecutting.json │ ├── polished_tuff_brick_stairs.json │ ├── polished_tuff_brick_stairs_from_polished_tuff_from_stonecutting.json │ ├── polished_tuff_brick_stairs_from_stonecutting.json │ ├── polished_tuff_brick_stairs_from_tuff_from_stonecutting.json │ ├── polished_tuff_brick_wall.json │ ├── polished_tuff_brick_wall_from_polished_tuff_from_stonecutting.json │ ├── polished_tuff_brick_wall_from_stonecutting.json │ ├── polished_tuff_brick_wall_from_tuff_from_stonecutting.json │ ├── polished_tuff_bricks.json │ ├── polished_tuff_bricks_from_stonecutting.json │ ├── polished_tuff_from_stonecutting.json │ ├── polished_tuff_slab.json │ ├── polished_tuff_slab_from_stonecutting.json │ ├── polished_tuff_slab_from_tuff_from_stonecutting.json │ ├── polished_tuff_stairs.json │ ├── polished_tuff_stairs_from_stonecutting.json │ ├── polished_tuff_stairs_from_tuff_from_stonecutting.json │ ├── rhyolite.json │ ├── rhyolite_slab.json │ ├── rhyolite_slab_from_stonecutting.json │ ├── rhyolite_stairs.json │ ├── rhyolite_stairs_from_stonecutting.json │ ├── rhyolite_wall.json │ ├── rhyolite_wall_from_stonecutting.json │ ├── rocky_dirt.json │ ├── schist.json │ ├── schist_slab.json │ ├── schist_slab_from_stonecutting.json │ ├── schist_stairs.json │ ├── schist_stairs_from_stonecutting.json │ ├── schist_wall.json │ ├── schist_wall_from_stonecutting.json │ ├── smooth_basalt_brick_slab.json │ ├── smooth_basalt_brick_slab_from_smooth_basalt_from_stonecutting.json │ ├── smooth_basalt_brick_slab_from_stonecutting.json │ ├── smooth_basalt_brick_stairs.json │ ├── smooth_basalt_brick_stairs_from_smooth_basalt_from_stonecutting.json │ ├── smooth_basalt_brick_stairs_from_stonecutting.json │ ├── smooth_basalt_brick_wall.json │ ├── smooth_basalt_brick_wall_from_smooth_basalt_from_stonecutting.json │ ├── smooth_basalt_brick_wall_from_stonecutting.json │ ├── smooth_basalt_bricks.json │ ├── smooth_basalt_bricks_from_stonecutting.json │ ├── soul_lamp.json │ ├── spruce_table.json │ ├── stick_from_twig.json │ ├── stripped_bamboo_button.json │ ├── stripped_bamboo_door.json │ ├── stripped_bamboo_fence.json │ ├── stripped_bamboo_fence_gate.json │ ├── stripped_bamboo_from_bundled_bamboo_from_stonecutting.json │ ├── stripped_bamboo_from_stonecutting.json │ ├── stripped_bamboo_from_stripped_bundled_bamboo_from_stonecutting.json │ ├── stripped_bamboo_mat.json │ ├── stripped_bamboo_planks.json │ ├── stripped_bamboo_pressure_plate.json │ ├── stripped_bamboo_sign.json │ ├── stripped_bamboo_slab.json │ ├── stripped_bamboo_stairs.json │ ├── stripped_bamboo_table.json │ ├── stripped_bamboo_trapdoor.json │ ├── stripped_bundled_bamboo_from_stonecutting.json │ ├── tuff_slab.json │ ├── tuff_slab_from_stonecutting.json │ ├── tuff_stairs.json │ ├── tuff_stairs_from_stonecutting.json │ ├── tuff_wall.json │ ├── tuff_wall_from_stonecutting.json │ ├── twisting_polished_blackstone_brick_slab.json │ ├── twisting_polished_blackstone_brick_slab_from_stonecutting.json │ ├── twisting_polished_blackstone_brick_stairs.json │ ├── twisting_polished_blackstone_brick_stairs_from_stonecutting.json │ ├── twisting_polished_blackstone_brick_wall.json │ ├── twisting_polished_blackstone_brick_wall_from_stonecutting.json │ ├── twisting_polished_blackstone_bricks.json │ ├── warped_shroomlamp.json │ ├── warped_table.json │ ├── waxed_copper_pillar.json │ ├── waxed_exposed_copper_pillar.json │ ├── waxed_oxidized_copper_pillar.json │ ├── waxed_weathered_copper_pillar.json │ ├── weathered_copper_pillar.json │ ├── weeping_polished_blackstone_brick_slab.json │ ├── weeping_polished_blackstone_brick_slab_from_stonecutting.json │ ├── weeping_polished_blackstone_brick_stairs.json │ ├── weeping_polished_blackstone_brick_stairs_from_stonecutting.json │ ├── weeping_polished_blackstone_brick_wall.json │ ├── weeping_polished_blackstone_brick_wall_from_stonecutting.json │ └── weeping_polished_blackstone_bricks.json │ └── tags │ ├── blocks │ ├── paper_lanterns.json │ └── tables.json │ ├── entity_types │ └── bamboo_leaves_slow_immune.json │ ├── items │ ├── item_group_tab │ │ ├── decoration.json │ │ ├── miscellaneous.json │ │ ├── natural.json │ │ └── stones.json │ ├── paper_lanterns.json │ └── tables.json │ └── worldgen │ └── biome │ ├── does_not_spawn_rhyolite.json │ ├── spawns_bloodstone.json │ ├── spawns_pebble.json │ ├── spawns_schist.json │ ├── spawns_sea_shell.json │ └── spawns_twig.json ├── java └── net │ └── moddingplayground │ └── twigs │ ├── api │ ├── Twigs.java │ ├── block │ │ ├── AmethystSlabBlock.java │ │ ├── AmethystStairsBlock.java │ │ ├── AmethystWallBlock.java │ │ ├── BambooLeavesBlock.java │ │ ├── BambooMatBlock.java │ │ ├── FloorLayerBlock.java │ │ ├── LampBlock.java │ │ ├── LichenBlock.java │ │ ├── PaperLanternBlock.java │ │ ├── PillarOxidizableBlock.java │ │ ├── QuadPoleBlock.java │ │ ├── StrippedBambooBlock.java │ │ ├── TableBlock.java │ │ ├── TwigsBlocks.java │ │ ├── TwigsMaterial.java │ │ ├── TwigsProperties.java │ │ └── TwigsSignTypes.java │ ├── config │ │ └── TwigsWorldGenReplacementsConfig.java │ ├── data │ │ └── TwigsBlockFamilies.java │ ├── entity │ │ ├── PebbleEntity.java │ │ ├── TwigsBoatTypes.java │ │ └── TwigsEntityType.java │ ├── item │ │ ├── FlintAndSteelBlockItem.java │ │ ├── PebbleItem.java │ │ ├── TwigsItemGroups.java │ │ └── TwigsItems.java │ ├── particle │ │ └── TwigsParticleTypes.java │ ├── sound │ │ ├── TwigsBlockSoundGroup.java │ │ └── TwigsSoundEvents.java │ ├── tag │ │ ├── TwigsBiomeTags.java │ │ ├── TwigsBlockTags.java │ │ ├── TwigsEntityTypeTags.java │ │ └── TwigsItemTags.java │ └── world │ │ └── gen │ │ └── feature │ │ ├── TwigsConfiguredFeatures.java │ │ └── TwigsPlacedFeatures.java │ ├── impl │ ├── TwigsImpl.java │ ├── block │ │ └── TwigsBlocksImpl.java │ ├── client │ │ ├── TwigsClientImpl.java │ │ ├── block │ │ │ └── TwigsBlocksClientImpl.java │ │ ├── entity │ │ │ └── TwigsEntityTypeClientImpl.java │ │ └── particle │ │ │ ├── TwigsCrackParticle.java │ │ │ └── TwigsParticleTypesClientImpl.java │ ├── data │ │ ├── BiomeTagProvider.java │ │ ├── BlockLootTableProvider.java │ │ ├── BlockTagProvider.java │ │ ├── EntityLootTableProvider.java │ │ ├── EntityTypeTagProvider.java │ │ ├── ItemTagProvider.java │ │ ├── ModelProvider.java │ │ ├── RecipeProvider.java │ │ └── TwigsDataGeneratorImpl.java │ ├── entity │ │ └── TwigsBoatTypesImpl.java │ ├── item │ │ └── TwigsItemsImpl.java │ └── world │ │ └── gen │ │ └── feature │ │ └── TwigsPlacedFeaturesImpl.java │ └── mixin │ ├── AbstractBlockStateMixin.java │ ├── ItemEntryAccessor.java │ ├── OrePlacedFeaturesAccessor.java │ └── worldgen │ ├── FeatureContextAccessor.java │ └── MultifaceGrowthFeatureMixin.java └── resources ├── assets ├── ecologics │ └── lang │ │ └── en_us.json ├── presencefootsteps │ └── config │ │ └── blockmap.json └── twigs │ ├── icon.png │ ├── lang │ ├── en_us.json │ ├── it_it.json │ └── zh_cn.json │ ├── models │ └── block │ │ ├── bamboo_leaves.json │ │ ├── bamboo_leaves1.json │ │ ├── bamboo_leaves2.json │ │ ├── bamboo_leaves3.json │ │ ├── template_mat.json │ │ ├── template_paper_lantern.json │ │ ├── template_paper_lantern_hanging.json │ │ ├── template_quad_pole.json │ │ ├── template_table.json │ │ ├── template_wall_column_inventory.json │ │ ├── template_wall_column_post.json │ │ ├── template_wall_column_side.json │ │ └── template_wall_column_side_tall.json │ ├── particles │ └── item_pebble.json │ ├── sounds.json │ └── textures │ ├── block │ ├── acacia_table_bottom.png │ ├── acacia_table_side.png │ ├── acacia_table_top.png │ ├── allium_paper_lantern_side.png │ ├── azalea_flowers.png │ ├── bamboo_leaves.png │ ├── bamboo_leaves1.png │ ├── bamboo_leaves2.png │ ├── bamboo_leaves3.png │ ├── bamboo_thatch.png │ ├── birch_table_bottom.png │ ├── birch_table_side.png │ ├── birch_table_top.png │ ├── bloodstone.png │ ├── blue_orchid_paper_lantern.png │ ├── blue_orchid_paper_lantern_side.png │ ├── bundled_bamboo_side.png │ ├── bundled_bamboo_top.png │ ├── chiseled_bricks_side.png │ ├── chiseled_bricks_top.png │ ├── chiseled_polished_amethyst.png │ ├── cobblestone_bricks.png │ ├── copper_pillar_side.png │ ├── copper_pillar_top.png │ ├── cracked_bricks.png │ ├── cracked_cobblestone_bricks.png │ ├── cracked_polished_amethyst_bricks.png │ ├── cracked_polished_bloodstone_bricks.png │ ├── cracked_polished_calcite_bricks.png │ ├── cracked_polished_rhyolite_bricks.png │ ├── cracked_polished_schist_bricks.png │ ├── cracked_polished_tuff_bricks.png │ ├── crimson_roots_paper_lantern.png │ ├── crimson_roots_paper_lantern_side.png │ ├── crimson_shroomlamp_side.png │ ├── crimson_shroomlamp_top.png │ ├── crimson_table_bottom.png │ ├── crimson_table_side.png │ ├── crimson_table_top.png │ ├── dandelion_paper_lantern.png │ ├── dandelion_paper_lantern_side.png │ ├── dark_oak_table_bottom.png │ ├── dark_oak_table_side.png │ ├── dark_oak_table_top.png │ ├── ender_mesh.png │ ├── ender_mesh.png.mcmeta │ ├── exposed_copper_pillar_side.png │ ├── exposed_copper_pillar_top.png │ ├── jungle_table_bottom.png │ ├── jungle_table_side.png │ ├── jungle_table_top.png │ ├── lamp_bottom.png │ ├── lamp_side.png │ ├── lamp_side.png.mcmeta │ ├── lamp_side_off.png │ ├── lamp_top.png │ ├── mangrove_table_bottom.png │ ├── mangrove_table_side.png │ ├── mangrove_table_top.png │ ├── mossy_bricks.png │ ├── mossy_cobblestone_bricks.png │ ├── oak_table_bottom.png │ ├── oak_table_side.png │ ├── oak_table_top.png │ ├── oxidized_copper_pillar_side.png │ ├── oxidized_copper_pillar_top.png │ ├── paper_lantern.png │ ├── paper_lantern_bottom.png │ ├── paper_lantern_side.png │ ├── paper_lantern_top.png │ ├── pebble.png │ ├── pebble1.png │ ├── pebble2.png │ ├── petrified_lichen.png │ ├── polished_amethyst.png │ ├── polished_amethyst_bricks.png │ ├── polished_basalt_bricks_side.png │ ├── polished_basalt_bricks_top.png │ ├── polished_bloodstone.png │ ├── polished_bloodstone_bricks.png │ ├── polished_calcite.png │ ├── polished_calcite_bricks.png │ ├── polished_rhyolite.png │ ├── polished_rhyolite_bricks.png │ ├── polished_schist.png │ ├── polished_schist_bricks.png │ ├── polished_tuff.png │ ├── polished_tuff_bricks.png │ ├── potted_azalea_flowers.png │ ├── rhyolite_side.png │ ├── rhyolite_top.png │ ├── rocky_dirt.png │ ├── schist.png │ ├── sea_shell.png │ ├── sea_shell1.png │ ├── sea_shell2.png │ ├── sea_shell3.png │ ├── sea_shell4.png │ ├── sea_shell5.png │ ├── sea_shell6.png │ ├── smooth_basalt_bricks.png │ ├── soul_lamp_bottom.png │ ├── soul_lamp_side.png │ ├── soul_lamp_side.png.mcmeta │ ├── soul_lamp_side_off.png │ ├── soul_lamp_top.png │ ├── spruce_table_bottom.png │ ├── spruce_table_side.png │ ├── spruce_table_top.png │ ├── stripped_bamboo_door_bottom.png │ ├── stripped_bamboo_door_top.png │ ├── stripped_bamboo_large_leaves.png │ ├── stripped_bamboo_mat.png │ ├── stripped_bamboo_planks.png │ ├── stripped_bamboo_singleleaf.png │ ├── stripped_bamboo_small_leaves.png │ ├── stripped_bamboo_stage0.png │ ├── stripped_bamboo_stalk.png │ ├── stripped_bamboo_table_bottom.png │ ├── stripped_bamboo_table_side.png │ ├── stripped_bamboo_table_top.png │ ├── stripped_bamboo_trapdoor.png │ ├── stripped_bundled_bamboo_side.png │ ├── stripped_bundled_bamboo_top.png │ ├── twig.png │ ├── twig1.png │ ├── twig2.png │ ├── twisting_polished_blackstone_bricks.png │ ├── warped_shroomlamp_side.png │ ├── warped_shroomlamp_top.png │ ├── warped_table_bottom.png │ ├── warped_table_side.png │ ├── warped_table_top.png │ ├── weathered_copper_pillar_side.png │ ├── weathered_copper_pillar_top.png │ └── weeping_polished_blackstone_bricks.png │ ├── entity │ ├── boat │ │ └── stripped_bamboo.png │ ├── chest_boat │ │ └── stripped_bamboo.png │ └── signs │ │ └── stripped_bamboo.png │ └── item │ ├── allium_paper_lantern.png │ ├── azalea_flowers.png │ ├── bamboo_leaves.png │ ├── blue_orchid_paper_lantern.png │ ├── crimson_roots_paper_lantern.png │ ├── dandelion_paper_lantern.png │ ├── paper_lantern.png │ ├── pebble.png │ ├── petrified_lichen.png │ ├── sea_shell.png │ ├── stripped_bamboo.png │ ├── stripped_bamboo_boat.png │ ├── stripped_bamboo_chest_boat.png │ ├── stripped_bamboo_door.png │ ├── stripped_bamboo_sign.png │ └── twig.png ├── fabric.mod.json └── twigs.mixins.json /README.md: -------------------------------------------------------------------------------- 1 | # twigs 2 | 3 | ## license 4 | This project's code is licensed under [MIT](LICENSE), and assets are licensed under [ARR](LICENSE_ASSETS). If you would like clarification or explicit permission, contact us on [Discord](https://discord.moddingplayground.net). 5 | -------------------------------------------------------------------------------- /gradle/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | No changelog provided. 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/bamboo_thatch.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/bamboo_thatch" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/bloodstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/bloodstone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/chiseled_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/chiseled_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/chiseled_polished_amethyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/chiseled_polished_amethyst" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/cobblestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/cobblestone_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/cracked_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/cracked_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/cracked_cobblestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/cracked_cobblestone_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/cracked_polished_amethyst_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/cracked_polished_amethyst_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/cracked_polished_bloodstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/cracked_polished_bloodstone_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/cracked_polished_calcite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/cracked_polished_calcite_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/cracked_polished_rhyolite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/cracked_polished_rhyolite_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/cracked_polished_schist_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/cracked_polished_schist_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/cracked_polished_tuff_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/cracked_polished_tuff_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/crimson_shroomlamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/crimson_shroomlamp" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/ender_mesh.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/ender_mesh" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "lit=false": { 4 | "model": "twigs:block/lamp_off" 5 | }, 6 | "lit=true": { 7 | "model": "twigs:block/lamp" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/mossy_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/mossy_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/mossy_cobblestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/mossy_cobblestone_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/paper_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "hanging=false": { 4 | "model": "twigs:block/paper_lantern" 5 | }, 6 | "hanging=true": { 7 | "model": "twigs:block/paper_lantern_hanging" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/polished_amethyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/polished_amethyst" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/polished_amethyst_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/polished_amethyst_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/polished_bloodstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/polished_bloodstone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/polished_bloodstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/polished_bloodstone_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/polished_calcite.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/polished_calcite" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/polished_calcite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/polished_calcite_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/polished_rhyolite.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/polished_rhyolite" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/polished_rhyolite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/polished_rhyolite_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/polished_schist.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/polished_schist" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/polished_schist_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/polished_schist_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/polished_tuff.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/polished_tuff" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/polished_tuff_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/polished_tuff_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/potted_azalea_flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/potted_azalea_flowers" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/rocky_dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/rocky_dirt" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/schist.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/schist" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/smooth_basalt_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/smooth_basalt_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/soul_lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "lit=false": { 4 | "model": "twigs:block/soul_lamp_off" 5 | }, 6 | "lit=true": { 7 | "model": "twigs:block/soul_lamp" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/stripped_bamboo_mat.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/stripped_bamboo_mat" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/stripped_bamboo_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/stripped_bamboo_planks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/stripped_bamboo_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/stripped_bamboo_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/stripped_bamboo_wall_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/stripped_bamboo_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/twisting_polished_blackstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/twisting_polished_blackstone_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/warped_shroomlamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/warped_shroomlamp" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/blockstates/weeping_polished_blackstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "twigs:block/weeping_polished_blackstone_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/azalea_flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_wall_plant_thin", 3 | "textures": { 4 | "texture": "twigs:block/azalea_flowers" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bamboo_thatch.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/bamboo_thatch" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bamboo_thatch_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "twigs:block/bamboo_thatch", 5 | "side": "twigs:block/bamboo_thatch", 6 | "top": "twigs:block/bamboo_thatch" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bamboo_thatch_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "twigs:block/bamboo_thatch", 5 | "side": "twigs:block/bamboo_thatch", 6 | "top": "twigs:block/bamboo_thatch" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bamboo_thatch_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "twigs:block/bamboo_thatch", 5 | "side": "twigs:block/bamboo_thatch", 6 | "top": "twigs:block/bamboo_thatch" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bloodstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/bloodstone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bloodstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "twigs:block/bloodstone", 5 | "side": "twigs:block/bloodstone", 6 | "top": "twigs:block/bloodstone" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bloodstone_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "twigs:block/bloodstone", 5 | "side": "twigs:block/bloodstone", 6 | "top": "twigs:block/bloodstone" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bloodstone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "twigs:block/bloodstone", 5 | "side": "twigs:block/bloodstone", 6 | "top": "twigs:block/bloodstone" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bloodstone_stairs_inner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/inner_stairs", 3 | "textures": { 4 | "bottom": "twigs:block/bloodstone", 5 | "side": "twigs:block/bloodstone", 6 | "top": "twigs:block/bloodstone" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bloodstone_stairs_outer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/outer_stairs", 3 | "textures": { 4 | "bottom": "twigs:block/bloodstone", 5 | "side": "twigs:block/bloodstone", 6 | "top": "twigs:block/bloodstone" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bloodstone_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "twigs:block/bloodstone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bloodstone_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "twigs:block/bloodstone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bloodstone_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "twigs:block/bloodstone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bloodstone_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "twigs:block/bloodstone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/bundled_bamboo.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "twigs:block/bundled_bamboo_top", 5 | "side": "twigs:block/bundled_bamboo_side" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/calcite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "minecraft:block/calcite", 5 | "side": "minecraft:block/calcite", 6 | "top": "minecraft:block/calcite" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/calcite_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "minecraft:block/calcite", 5 | "side": "minecraft:block/calcite", 6 | "top": "minecraft:block/calcite" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/calcite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "minecraft:block/calcite", 5 | "side": "minecraft:block/calcite", 6 | "top": "minecraft:block/calcite" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/calcite_stairs_inner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/inner_stairs", 3 | "textures": { 4 | "bottom": "minecraft:block/calcite", 5 | "side": "minecraft:block/calcite", 6 | "top": "minecraft:block/calcite" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/calcite_stairs_outer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/outer_stairs", 3 | "textures": { 4 | "bottom": "minecraft:block/calcite", 5 | "side": "minecraft:block/calcite", 6 | "top": "minecraft:block/calcite" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/calcite_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "minecraft:block/calcite" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/calcite_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "minecraft:block/calcite" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/calcite_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "minecraft:block/calcite" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/calcite_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "minecraft:block/calcite" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/chiseled_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "twigs:block/chiseled_bricks_top", 5 | "side": "twigs:block/chiseled_bricks_side" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/chiseled_polished_amethyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/chiseled_polished_amethyst" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/cobblestone_brick_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "twigs:block/cobblestone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/cobblestone_brick_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "twigs:block/cobblestone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/cobblestone_brick_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "twigs:block/cobblestone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/cobblestone_brick_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "twigs:block/cobblestone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/cobblestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/cobblestone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/copper_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "twigs:block/copper_pillar_top", 5 | "side": "twigs:block/copper_pillar_side" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/cracked_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/cracked_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/cracked_cobblestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/cracked_cobblestone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/cracked_polished_amethyst_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/cracked_polished_amethyst_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/cracked_polished_bloodstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/cracked_polished_bloodstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/cracked_polished_calcite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/cracked_polished_calcite_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/cracked_polished_rhyolite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/cracked_polished_rhyolite_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/cracked_polished_schist_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/cracked_polished_schist_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/cracked_polished_tuff_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/cracked_polished_tuff_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/crimson_shroomlamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "twigs:block/crimson_shroomlamp_top", 5 | "side": "twigs:block/crimson_shroomlamp_side" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/ender_mesh.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/ender_mesh" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/exposed_copper_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "twigs:block/exposed_copper_pillar_top", 5 | "side": "twigs:block/exposed_copper_pillar_side" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_bottom_top", 3 | "textures": { 4 | "bottom": "twigs:block/lamp_bottom", 5 | "side": "twigs:block/lamp_side", 6 | "top": "twigs:block/lamp_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/lamp_off.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_bottom_top", 3 | "textures": { 4 | "bottom": "twigs:block/lamp_bottom", 5 | "side": "twigs:block/lamp_side_off", 6 | "top": "twigs:block/lamp_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/mossy_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "twigs:block/mossy_bricks", 5 | "side": "twigs:block/mossy_bricks", 6 | "top": "twigs:block/mossy_bricks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/mossy_brick_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "twigs:block/mossy_bricks", 5 | "side": "twigs:block/mossy_bricks", 6 | "top": "twigs:block/mossy_bricks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/mossy_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "twigs:block/mossy_bricks", 5 | "side": "twigs:block/mossy_bricks", 6 | "top": "twigs:block/mossy_bricks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/mossy_brick_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "twigs:block/mossy_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/mossy_brick_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "twigs:block/mossy_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/mossy_brick_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "twigs:block/mossy_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/mossy_brick_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "twigs:block/mossy_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/mossy_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/mossy_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/mossy_cobblestone_brick_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "twigs:block/mossy_cobblestone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/mossy_cobblestone_brick_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "twigs:block/mossy_cobblestone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/mossy_cobblestone_brick_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "twigs:block/mossy_cobblestone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/mossy_cobblestone_brick_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "twigs:block/mossy_cobblestone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/mossy_cobblestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/mossy_cobblestone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/oak_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/template_table", 3 | "textures": { 4 | "bottom": "twigs:block/oak_table_bottom", 5 | "side": "twigs:block/oak_table_side", 6 | "top": "twigs:block/oak_table_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/oxidized_copper_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "twigs:block/oxidized_copper_pillar_top", 5 | "side": "twigs:block/oxidized_copper_pillar_side" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/pebble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_floor_layer", 3 | "textures": { 4 | "texture": "twigs:block/pebble" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/pebble1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_floor_layer", 3 | "textures": { 4 | "texture": "twigs:block/pebble1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/pebble2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_floor_layer", 3 | "textures": { 4 | "texture": "twigs:block/pebble2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/petrified_lichen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_wall_plant_thin", 3 | "textures": { 4 | "texture": "twigs:block/petrified_lichen" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_amethyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/polished_amethyst" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_amethyst_brick_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "twigs:block/polished_amethyst_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_amethyst_brick_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "twigs:block/polished_amethyst_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_amethyst_brick_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "twigs:block/polished_amethyst_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_amethyst_brick_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "twigs:block/polished_amethyst_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_amethyst_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/polished_amethyst_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_basalt_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "twigs:block/polished_basalt_bricks_top", 5 | "side": "twigs:block/polished_basalt_bricks_side" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_bloodstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/polished_bloodstone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_bloodstone_brick_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "twigs:block/polished_bloodstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_bloodstone_brick_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "twigs:block/polished_bloodstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_bloodstone_brick_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "twigs:block/polished_bloodstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_bloodstone_brick_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "twigs:block/polished_bloodstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_bloodstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/polished_bloodstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_calcite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/polished_calcite" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_calcite_brick_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "twigs:block/polished_calcite_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_calcite_brick_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "twigs:block/polished_calcite_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_calcite_brick_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "twigs:block/polished_calcite_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_calcite_brick_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "twigs:block/polished_calcite_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_calcite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/polished_calcite_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_rhyolite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/polished_rhyolite" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_rhyolite_brick_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "twigs:block/polished_rhyolite_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_rhyolite_brick_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "twigs:block/polished_rhyolite_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_rhyolite_brick_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "twigs:block/polished_rhyolite_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_rhyolite_brick_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "twigs:block/polished_rhyolite_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_rhyolite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/polished_rhyolite_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_schist.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/polished_schist" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_schist_brick_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "twigs:block/polished_schist_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_schist_brick_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "twigs:block/polished_schist_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_schist_brick_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "twigs:block/polished_schist_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_schist_brick_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "twigs:block/polished_schist_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_schist_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/polished_schist_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_schist_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "twigs:block/polished_schist", 5 | "side": "twigs:block/polished_schist", 6 | "top": "twigs:block/polished_schist" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_tuff.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/polished_tuff" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_tuff_brick_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "twigs:block/polished_tuff_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_tuff_brick_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "twigs:block/polished_tuff_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_tuff_brick_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "twigs:block/polished_tuff_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_tuff_brick_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "twigs:block/polished_tuff_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_tuff_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/polished_tuff_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_tuff_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "twigs:block/polished_tuff", 5 | "side": "twigs:block/polished_tuff", 6 | "top": "twigs:block/polished_tuff" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_tuff_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "twigs:block/polished_tuff", 5 | "side": "twigs:block/polished_tuff", 6 | "top": "twigs:block/polished_tuff" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/polished_tuff_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "twigs:block/polished_tuff", 5 | "side": "twigs:block/polished_tuff", 6 | "top": "twigs:block/polished_tuff" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/potted_azalea_flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/flower_pot_cross", 3 | "textures": { 4 | "plant": "twigs:block/potted_azalea_flowers" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/rhyolite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "twigs:block/rhyolite_top", 5 | "side": "twigs:block/rhyolite_side" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/rhyolite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "twigs:block/rhyolite_top", 5 | "side": "twigs:block/rhyolite_side", 6 | "top": "twigs:block/rhyolite_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/rhyolite_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "twigs:block/rhyolite_top", 5 | "side": "twigs:block/rhyolite_side", 6 | "top": "twigs:block/rhyolite_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/rhyolite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "twigs:block/rhyolite_top", 5 | "side": "twigs:block/rhyolite_side", 6 | "top": "twigs:block/rhyolite_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/rocky_dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/rocky_dirt" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/schist.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/schist" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/schist_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "twigs:block/schist", 5 | "side": "twigs:block/schist", 6 | "top": "twigs:block/schist" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/schist_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "twigs:block/schist", 5 | "side": "twigs:block/schist", 6 | "top": "twigs:block/schist" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/schist_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "twigs:block/schist", 5 | "side": "twigs:block/schist", 6 | "top": "twigs:block/schist" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/schist_stairs_inner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/inner_stairs", 3 | "textures": { 4 | "bottom": "twigs:block/schist", 5 | "side": "twigs:block/schist", 6 | "top": "twigs:block/schist" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/schist_stairs_outer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/outer_stairs", 3 | "textures": { 4 | "bottom": "twigs:block/schist", 5 | "side": "twigs:block/schist", 6 | "top": "twigs:block/schist" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/schist_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "twigs:block/schist" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/schist_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "twigs:block/schist" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/schist_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "twigs:block/schist" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/schist_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "twigs:block/schist" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/sea_shell.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_floor_layer", 3 | "textures": { 4 | "texture": "twigs:block/sea_shell" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/sea_shell1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_floor_layer", 3 | "textures": { 4 | "texture": "twigs:block/sea_shell1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/sea_shell2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_floor_layer", 3 | "textures": { 4 | "texture": "twigs:block/sea_shell2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/sea_shell3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_floor_layer", 3 | "textures": { 4 | "texture": "twigs:block/sea_shell3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/sea_shell4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_floor_layer", 3 | "textures": { 4 | "texture": "twigs:block/sea_shell4" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/sea_shell5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_floor_layer", 3 | "textures": { 4 | "texture": "twigs:block/sea_shell5" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/sea_shell6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_floor_layer", 3 | "textures": { 4 | "texture": "twigs:block/sea_shell6" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/smooth_basalt_brick_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "twigs:block/smooth_basalt_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/smooth_basalt_brick_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "twigs:block/smooth_basalt_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/smooth_basalt_brick_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "twigs:block/smooth_basalt_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/smooth_basalt_brick_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "twigs:block/smooth_basalt_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/smooth_basalt_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/smooth_basalt_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/soul_lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_bottom_top", 3 | "textures": { 4 | "bottom": "twigs:block/soul_lamp_bottom", 5 | "side": "twigs:block/soul_lamp_side", 6 | "top": "twigs:block/soul_lamp_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/template_quad_pole", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_stalk" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_button_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_inventory", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_button_pressed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_pressed", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_door_top_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_left", 3 | "textures": { 4 | "bottom": "twigs:block/stripped_bamboo_door_bottom", 5 | "top": "twigs:block/stripped_bamboo_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_door_top_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_right", 3 | "textures": { 4 | "bottom": "twigs:block/stripped_bamboo_door_bottom", 5 | "top": "twigs:block/stripped_bamboo_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_fence_gate_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_open", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_fence_gate_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_fence_gate_wall_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall_open", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_fence_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_inventory", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_post", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_fence_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_side", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_mat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/template_mat", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_mat" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/stripped_bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pressure_plate_up", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_pressure_plate_down.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pressure_plate_down", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "twigs:block/stripped_bamboo_planks" 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_trapdoor_bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_orientable_trapdoor_bottom", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_trapdoor" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_trapdoor_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_orientable_trapdoor_open", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_trapdoor" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bamboo_trapdoor_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_orientable_trapdoor_top", 3 | "textures": { 4 | "texture": "twigs:block/stripped_bamboo_trapdoor" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/stripped_bundled_bamboo.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "twigs:block/stripped_bundled_bamboo_top", 5 | "side": "twigs:block/stripped_bundled_bamboo_side" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/tuff_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "minecraft:block/tuff", 5 | "side": "minecraft:block/tuff", 6 | "top": "minecraft:block/tuff" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/tuff_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "minecraft:block/tuff", 5 | "side": "minecraft:block/tuff", 6 | "top": "minecraft:block/tuff" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/tuff_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "minecraft:block/tuff", 5 | "side": "minecraft:block/tuff", 6 | "top": "minecraft:block/tuff" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/tuff_stairs_inner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/inner_stairs", 3 | "textures": { 4 | "bottom": "minecraft:block/tuff", 5 | "side": "minecraft:block/tuff", 6 | "top": "minecraft:block/tuff" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/tuff_stairs_outer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/outer_stairs", 3 | "textures": { 4 | "bottom": "minecraft:block/tuff", 5 | "side": "minecraft:block/tuff", 6 | "top": "minecraft:block/tuff" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/tuff_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "minecraft:block/tuff" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/tuff_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "minecraft:block/tuff" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/tuff_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "minecraft:block/tuff" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/tuff_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "minecraft:block/tuff" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/twig.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_floor_layer", 3 | "textures": { 4 | "texture": "twigs:block/twig" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/twig1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_floor_layer", 3 | "textures": { 4 | "texture": "twigs:block/twig1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/twig2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "frame:block/template_floor_layer", 3 | "textures": { 4 | "texture": "twigs:block/twig2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/twisting_polished_blackstone_brick_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "twigs:block/twisting_polished_blackstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/twisting_polished_blackstone_brick_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "twigs:block/twisting_polished_blackstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/twisting_polished_blackstone_brick_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "twigs:block/twisting_polished_blackstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/twisting_polished_blackstone_brick_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "twigs:block/twisting_polished_blackstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/twisting_polished_blackstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/twisting_polished_blackstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/warped_shroomlamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "twigs:block/warped_shroomlamp_top", 5 | "side": "twigs:block/warped_shroomlamp_side" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/weathered_copper_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "twigs:block/weathered_copper_pillar_top", 5 | "side": "twigs:block/weathered_copper_pillar_side" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/weeping_polished_blackstone_brick_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "twigs:block/weeping_polished_blackstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/weeping_polished_blackstone_brick_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "twigs:block/weeping_polished_blackstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/weeping_polished_blackstone_brick_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "twigs:block/weeping_polished_blackstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/weeping_polished_blackstone_brick_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "twigs:block/weeping_polished_blackstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/block/weeping_polished_blackstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "twigs:block/weeping_polished_blackstone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/acacia_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/acacia_table" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/allium_paper_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/allium_paper_lantern" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/azalea_flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/azalea_flowers" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/bamboo_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/bamboo_leaves" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/bamboo_thatch.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/bamboo_thatch" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/bamboo_thatch_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/bamboo_thatch_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/bamboo_thatch_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/bamboo_thatch_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/birch_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/birch_table" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/bloodstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/bloodstone" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/bloodstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/bloodstone_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/bloodstone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/bloodstone_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/bloodstone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/bloodstone_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/blue_orchid_paper_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/blue_orchid_paper_lantern" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/bundled_bamboo.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/bundled_bamboo" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/calcite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/calcite_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/calcite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/calcite_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/calcite_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/calcite_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/chiseled_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/chiseled_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/chiseled_polished_amethyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/chiseled_polished_amethyst" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/cobblestone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/cobblestone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/cobblestone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/cobblestone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/cobblestone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/cobblestone_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/cobblestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/cobblestone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/copper_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/copper_pillar" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/cracked_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/cracked_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/cracked_cobblestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/cracked_cobblestone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/cracked_polished_amethyst_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/cracked_polished_amethyst_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/cracked_polished_bloodstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/cracked_polished_bloodstone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/cracked_polished_calcite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/cracked_polished_calcite_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/cracked_polished_rhyolite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/cracked_polished_rhyolite_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/cracked_polished_schist_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/cracked_polished_schist_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/cracked_polished_tuff_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/cracked_polished_tuff_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/crimson_roots_paper_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/crimson_roots_paper_lantern" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/crimson_shroomlamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/crimson_shroomlamp" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/crimson_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/crimson_table" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/dandelion_paper_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/dandelion_paper_lantern" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/dark_oak_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/dark_oak_table" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/ender_mesh.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/ender_mesh" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/exposed_copper_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/exposed_copper_pillar" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/jungle_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/jungle_table" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/lamp" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/mangrove_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/mangrove_table" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/mossy_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/mossy_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/mossy_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/mossy_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/mossy_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/mossy_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/mossy_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/mossy_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/mossy_cobblestone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/mossy_cobblestone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/mossy_cobblestone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/mossy_cobblestone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/mossy_cobblestone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/mossy_cobblestone_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/mossy_cobblestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/mossy_cobblestone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/oak_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/oak_table" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/oxidized_copper_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/oxidized_copper_pillar" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/paper_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/paper_lantern" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/pebble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/pebble" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/petrified_lichen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/petrified_lichen" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_amethyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_amethyst" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_amethyst_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_amethyst_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_amethyst_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_amethyst_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_amethyst_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_amethyst_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_amethyst_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_amethyst_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_amethyst_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_amethyst_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_amethyst_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_amethyst_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_basalt_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_basalt_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_bloodstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_bloodstone" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_bloodstone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_bloodstone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_bloodstone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_bloodstone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_bloodstone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_bloodstone_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_bloodstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_bloodstone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_bloodstone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_bloodstone_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_bloodstone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_bloodstone_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_calcite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_calcite" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_calcite_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_calcite_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_calcite_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_calcite_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_calcite_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_calcite_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_calcite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_calcite_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_calcite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_calcite_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_calcite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_calcite_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_rhyolite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_rhyolite" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_rhyolite_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_rhyolite_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_rhyolite_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_rhyolite_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_rhyolite_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_rhyolite_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_rhyolite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_rhyolite_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_rhyolite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_rhyolite_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_rhyolite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_rhyolite_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_schist.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_schist" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_schist_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_schist_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_schist_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_schist_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_schist_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_schist_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_schist_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_schist_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_schist_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_schist_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_schist_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_schist_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_tuff.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_tuff" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_tuff_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_tuff_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_tuff_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_tuff_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_tuff_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_tuff_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_tuff_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_tuff_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_tuff_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_tuff_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/polished_tuff_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/polished_tuff_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/rhyolite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/rhyolite" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/rhyolite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/rhyolite_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/rhyolite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/rhyolite_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/rhyolite_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/rhyolite_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/rocky_dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/rocky_dirt" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/schist.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/schist" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/schist_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/schist_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/schist_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/schist_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/schist_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/schist_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/sea_shell.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/sea_shell" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/smooth_basalt_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/smooth_basalt_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/smooth_basalt_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/smooth_basalt_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/smooth_basalt_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/smooth_basalt_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/smooth_basalt_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/smooth_basalt_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/soul_lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/soul_lamp" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/spruce_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/spruce_table" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/stripped_bamboo" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo_boat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/stripped_bamboo_boat" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/stripped_bamboo_button_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo_chest_boat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/stripped_bamboo_chest_boat" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/stripped_bamboo_door" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/stripped_bamboo_fence_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/stripped_bamboo_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo_mat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/stripped_bamboo_mat" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/stripped_bamboo_planks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/stripped_bamboo_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/stripped_bamboo_sign" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/stripped_bamboo_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/stripped_bamboo_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/stripped_bamboo_table" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bamboo_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/stripped_bamboo_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/stripped_bundled_bamboo.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/stripped_bundled_bamboo" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/tuff_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/tuff_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/tuff_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/tuff_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/tuff_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/tuff_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/twig.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "twigs:item/twig" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/twisting_polished_blackstone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/twisting_polished_blackstone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/twisting_polished_blackstone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/twisting_polished_blackstone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/twisting_polished_blackstone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/twisting_polished_blackstone_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/twisting_polished_blackstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/twisting_polished_blackstone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/warped_shroomlamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/warped_shroomlamp" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/warped_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/warped_table" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/waxed_copper_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/copper_pillar" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/waxed_exposed_copper_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/exposed_copper_pillar" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/waxed_oxidized_copper_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/oxidized_copper_pillar" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/waxed_weathered_copper_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/weathered_copper_pillar" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/weathered_copper_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/weathered_copper_pillar" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/weeping_polished_blackstone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/weeping_polished_blackstone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/weeping_polished_blackstone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/weeping_polished_blackstone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/weeping_polished_blackstone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/weeping_polished_blackstone_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/twigs/models/item/weeping_polished_blackstone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "twigs:block/weeping_polished_blackstone_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/bamboo_plantable_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:rocky_dirt" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/base_stone_overworld.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:schist", 5 | "twigs:rhyolite" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:rocky_dirt" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/enderman_holdable.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:rocky_dirt" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/fence_gates.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_fence_gate" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/flower_pots.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:potted_azalea_flowers" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/foxes_spawnable_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:rocky_dirt" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/piglin_repellents.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:soul_lamp" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_planks" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/replaceable_plants.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:azalea_flowers", 5 | "twigs:petrified_lichen" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/standing_signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_sign" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/wall_signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_wall_sign" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/wooden_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_button" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/wooden_doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_door" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/wooden_fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_fence" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/wooden_pressure_plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_pressure_plate" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/wooden_slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_slab" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/wooden_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_stairs" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/blocks/wooden_trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_trapdoor" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/boats.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_boat" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/chest_boats.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_chest_boat" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:rocky_dirt" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/piglin_repellents.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:soul_lamp" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_planks" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_sign" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/stone_crafting_materials.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:schist", 5 | "twigs:rhyolite" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/stone_tool_materials.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:schist", 5 | "twigs:rhyolite" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/wooden_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_button" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/wooden_doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_door" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/wooden_fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_fence" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/wooden_pressure_plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_pressure_plate" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/wooden_slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_slab" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/wooden_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_stairs" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/items/wooden_trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "twigs:stripped_bamboo_trapdoor" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/bloodstone_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:bloodstone" 6 | }, 7 | "result": "twigs:bloodstone_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/bloodstone_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:bloodstone" 6 | }, 7 | "result": "twigs:bloodstone_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/bloodstone_wall_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:bloodstone" 6 | }, 7 | "result": "twigs:bloodstone_wall" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/calcite_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "minecraft:calcite" 6 | }, 7 | "result": "twigs:calcite_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/calcite_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:calcite" 6 | }, 7 | "result": "twigs:calcite_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/calcite_wall_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:calcite" 6 | }, 7 | "result": "twigs:calcite_wall" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/cobblestone_brick_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:cobblestone_bricks" 6 | }, 7 | "result": "twigs:cobblestone_brick_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/cobblestone_brick_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:cobblestone_bricks" 6 | }, 7 | "result": "twigs:cobblestone_brick_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/cobblestone_brick_wall_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:cobblestone_bricks" 6 | }, 7 | "result": "twigs:cobblestone_brick_wall" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/cobblestone_bricks_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:cobblestone" 6 | }, 7 | "result": "twigs:cobblestone_bricks" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/cracked_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smelting", 3 | "cookingtime": 200, 4 | "experience": 0.1, 5 | "ingredient": { 6 | "item": "minecraft:bricks" 7 | }, 8 | "result": "twigs:cracked_bricks" 9 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/mossy_brick_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:mossy_bricks" 6 | }, 7 | "result": "twigs:mossy_brick_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/mossy_brick_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:mossy_bricks" 6 | }, 7 | "result": "twigs:mossy_brick_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/mossy_brick_wall_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:mossy_bricks" 6 | }, 7 | "result": "twigs:mossy_brick_wall" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_amethyst_bricks_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_amethyst" 6 | }, 7 | "result": "twigs:polished_amethyst_bricks" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_amethyst_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:amethyst_block" 6 | }, 7 | "result": "twigs:polished_amethyst" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_amethyst_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:polished_amethyst" 6 | }, 7 | "result": "twigs:polished_amethyst_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_amethyst_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_amethyst" 6 | }, 7 | "result": "twigs:polished_amethyst_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_basalt_bricks_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:polished_basalt" 6 | }, 7 | "result": "twigs:polished_basalt_bricks" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_bloodstone_bricks_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_bloodstone" 6 | }, 7 | "result": "twigs:polished_bloodstone_bricks" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_bloodstone_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:bloodstone" 6 | }, 7 | "result": "twigs:polished_bloodstone" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_bloodstone_slab_from_bloodstone_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:bloodstone" 6 | }, 7 | "result": "twigs:polished_bloodstone_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_bloodstone_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:polished_bloodstone" 6 | }, 7 | "result": "twigs:polished_bloodstone_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_bloodstone_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_bloodstone" 6 | }, 7 | "result": "twigs:polished_bloodstone_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_calcite_bricks_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_calcite" 6 | }, 7 | "result": "twigs:polished_calcite_bricks" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_calcite_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:calcite" 6 | }, 7 | "result": "twigs:polished_calcite" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_calcite_slab_from_calcite_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "minecraft:calcite" 6 | }, 7 | "result": "twigs:polished_calcite_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_calcite_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:polished_calcite" 6 | }, 7 | "result": "twigs:polished_calcite_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_calcite_stairs_from_calcite_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:calcite" 6 | }, 7 | "result": "twigs:polished_calcite_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_calcite_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_calcite" 6 | }, 7 | "result": "twigs:polished_calcite_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_rhyolite_bricks_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_rhyolite" 6 | }, 7 | "result": "twigs:polished_rhyolite_bricks" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_rhyolite_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:rhyolite" 6 | }, 7 | "result": "twigs:polished_rhyolite" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_rhyolite_slab_from_rhyolite_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:rhyolite" 6 | }, 7 | "result": "twigs:polished_rhyolite_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_rhyolite_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:polished_rhyolite" 6 | }, 7 | "result": "twigs:polished_rhyolite_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_rhyolite_stairs_from_rhyolite_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:rhyolite" 6 | }, 7 | "result": "twigs:polished_rhyolite_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_rhyolite_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_rhyolite" 6 | }, 7 | "result": "twigs:polished_rhyolite_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_schist_brick_slab_from_schist_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:schist" 6 | }, 7 | "result": "twigs:polished_schist_brick_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_schist_brick_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:polished_schist_bricks" 6 | }, 7 | "result": "twigs:polished_schist_brick_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_schist_brick_stairs_from_schist_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:schist" 6 | }, 7 | "result": "twigs:polished_schist_brick_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_schist_brick_wall_from_schist_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:schist" 6 | }, 7 | "result": "twigs:polished_schist_brick_wall" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_schist_brick_wall_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_schist_bricks" 6 | }, 7 | "result": "twigs:polished_schist_brick_wall" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_schist_bricks_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_schist" 6 | }, 7 | "result": "twigs:polished_schist_bricks" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_schist_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:schist" 6 | }, 7 | "result": "twigs:polished_schist" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_schist_slab_from_schist_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:schist" 6 | }, 7 | "result": "twigs:polished_schist_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_schist_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:polished_schist" 6 | }, 7 | "result": "twigs:polished_schist_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_schist_stairs_from_schist_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:schist" 6 | }, 7 | "result": "twigs:polished_schist_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_schist_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_schist" 6 | }, 7 | "result": "twigs:polished_schist_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_tuff_brick_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:polished_tuff_bricks" 6 | }, 7 | "result": "twigs:polished_tuff_brick_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_tuff_brick_slab_from_tuff_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "minecraft:tuff" 6 | }, 7 | "result": "twigs:polished_tuff_brick_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_tuff_brick_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_tuff_bricks" 6 | }, 7 | "result": "twigs:polished_tuff_brick_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_tuff_brick_stairs_from_tuff_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:tuff" 6 | }, 7 | "result": "twigs:polished_tuff_brick_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_tuff_brick_wall_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_tuff_bricks" 6 | }, 7 | "result": "twigs:polished_tuff_brick_wall" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_tuff_brick_wall_from_tuff_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:tuff" 6 | }, 7 | "result": "twigs:polished_tuff_brick_wall" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_tuff_bricks_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_tuff" 6 | }, 7 | "result": "twigs:polished_tuff_bricks" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_tuff_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:tuff" 6 | }, 7 | "result": "twigs:polished_tuff" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_tuff_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:polished_tuff" 6 | }, 7 | "result": "twigs:polished_tuff_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_tuff_slab_from_tuff_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "minecraft:tuff" 6 | }, 7 | "result": "twigs:polished_tuff_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_tuff_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:polished_tuff" 6 | }, 7 | "result": "twigs:polished_tuff_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/polished_tuff_stairs_from_tuff_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:tuff" 6 | }, 7 | "result": "twigs:polished_tuff_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/rhyolite_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:rhyolite" 6 | }, 7 | "result": "twigs:rhyolite_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/rhyolite_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:rhyolite" 6 | }, 7 | "result": "twigs:rhyolite_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/rhyolite_wall_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:rhyolite" 6 | }, 7 | "result": "twigs:rhyolite_wall" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/schist_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:schist" 6 | }, 7 | "result": "twigs:schist_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/schist_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:schist" 6 | }, 7 | "result": "twigs:schist_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/schist_wall_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:schist" 6 | }, 7 | "result": "twigs:schist_wall" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/smooth_basalt_brick_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "twigs:smooth_basalt_bricks" 6 | }, 7 | "result": "twigs:smooth_basalt_brick_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/smooth_basalt_brick_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:smooth_basalt_bricks" 6 | }, 7 | "result": "twigs:smooth_basalt_brick_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/smooth_basalt_brick_wall_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:smooth_basalt_bricks" 6 | }, 7 | "result": "twigs:smooth_basalt_brick_wall" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/smooth_basalt_bricks_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:smooth_basalt" 6 | }, 7 | "result": "twigs:smooth_basalt_bricks" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/stripped_bamboo_from_bundled_bamboo_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 4, 4 | "ingredient": { 5 | "item": "twigs:bundled_bamboo" 6 | }, 7 | "result": "twigs:stripped_bamboo" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/stripped_bamboo_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:bamboo" 6 | }, 7 | "result": "twigs:stripped_bamboo" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/stripped_bundled_bamboo_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "twigs:bundled_bamboo" 6 | }, 7 | "result": "twigs:stripped_bundled_bamboo" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/tuff_slab_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 2, 4 | "ingredient": { 5 | "item": "minecraft:tuff" 6 | }, 7 | "result": "twigs:tuff_slab" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/tuff_stairs_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:tuff" 6 | }, 7 | "result": "twigs:tuff_stairs" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/recipes/tuff_wall_from_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:tuff" 6 | }, 7 | "result": "twigs:tuff_wall" 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/tags/entity_types/bamboo_leaves_slow_immune.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:panda", 5 | "minecraft:bee", 6 | "minecraft:parrot", 7 | "minecraft:ocelot" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/tags/worldgen/biome/does_not_spawn_rhyolite.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [] 4 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/tags/worldgen/biome/spawns_bloodstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#minecraft:is_nether" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/tags/worldgen/biome/spawns_schist.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#minecraft:is_mountain" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/tags/worldgen/biome/spawns_sea_shell.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#minecraft:is_beach", 5 | "minecraft:stony_shore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/generated/data/twigs/tags/worldgen/biome/spawns_twig.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#minecraft:is_forest", 5 | "#minecraft:is_taiga", 6 | "minecraft:swamp" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/java/net/moddingplayground/twigs/api/entity/TwigsBoatTypes.java: -------------------------------------------------------------------------------- 1 | package net.moddingplayground.twigs.api.entity; 2 | 3 | import net.minecraft.entity.vehicle.BoatEntity; 4 | 5 | public class TwigsBoatTypes { 6 | public static BoatEntity.Type STRIPPED_BAMBOO; 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/ecologics/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "block.ecologics.seashell": "Large Seashell" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/particles/item_pebble.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/acacia_table_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/acacia_table_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/acacia_table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/acacia_table_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/acacia_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/acacia_table_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/allium_paper_lantern_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/allium_paper_lantern_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/azalea_flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/azalea_flowers.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/bamboo_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/bamboo_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/bamboo_leaves1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/bamboo_leaves1.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/bamboo_leaves2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/bamboo_leaves2.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/bamboo_leaves3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/bamboo_leaves3.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/bamboo_thatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/bamboo_thatch.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/birch_table_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/birch_table_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/birch_table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/birch_table_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/birch_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/birch_table_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/bloodstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/bloodstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/blue_orchid_paper_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/blue_orchid_paper_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/blue_orchid_paper_lantern_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/blue_orchid_paper_lantern_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/bundled_bamboo_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/bundled_bamboo_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/bundled_bamboo_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/bundled_bamboo_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/chiseled_bricks_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/chiseled_bricks_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/chiseled_bricks_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/chiseled_bricks_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/chiseled_polished_amethyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/chiseled_polished_amethyst.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/cobblestone_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/cobblestone_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/copper_pillar_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/copper_pillar_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/copper_pillar_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/copper_pillar_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/cracked_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/cracked_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/cracked_cobblestone_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/cracked_cobblestone_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/cracked_polished_amethyst_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/cracked_polished_amethyst_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/cracked_polished_bloodstone_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/cracked_polished_bloodstone_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/cracked_polished_calcite_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/cracked_polished_calcite_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/cracked_polished_rhyolite_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/cracked_polished_rhyolite_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/cracked_polished_schist_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/cracked_polished_schist_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/cracked_polished_tuff_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/cracked_polished_tuff_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/crimson_roots_paper_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/crimson_roots_paper_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/crimson_roots_paper_lantern_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/crimson_roots_paper_lantern_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/crimson_shroomlamp_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/crimson_shroomlamp_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/crimson_shroomlamp_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/crimson_shroomlamp_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/crimson_table_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/crimson_table_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/crimson_table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/crimson_table_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/crimson_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/crimson_table_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/dandelion_paper_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/dandelion_paper_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/dandelion_paper_lantern_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/dandelion_paper_lantern_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/dark_oak_table_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/dark_oak_table_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/dark_oak_table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/dark_oak_table_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/dark_oak_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/dark_oak_table_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/ender_mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/ender_mesh.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/exposed_copper_pillar_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/exposed_copper_pillar_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/exposed_copper_pillar_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/exposed_copper_pillar_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/jungle_table_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/jungle_table_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/jungle_table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/jungle_table_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/jungle_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/jungle_table_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/lamp_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/lamp_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/lamp_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/lamp_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/lamp_side.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 8 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/lamp_side_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/lamp_side_off.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/lamp_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/lamp_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/mangrove_table_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/mangrove_table_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/mangrove_table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/mangrove_table_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/mangrove_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/mangrove_table_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/mossy_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/mossy_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/mossy_cobblestone_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/mossy_cobblestone_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/oak_table_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/oak_table_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/oak_table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/oak_table_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/oak_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/oak_table_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/oxidized_copper_pillar_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/oxidized_copper_pillar_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/oxidized_copper_pillar_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/oxidized_copper_pillar_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/paper_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/paper_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/paper_lantern_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/paper_lantern_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/paper_lantern_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/paper_lantern_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/paper_lantern_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/paper_lantern_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/pebble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/pebble.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/pebble1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/pebble1.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/pebble2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/pebble2.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/petrified_lichen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/petrified_lichen.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/polished_amethyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/polished_amethyst.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/polished_amethyst_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/polished_amethyst_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/polished_basalt_bricks_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/polished_basalt_bricks_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/polished_basalt_bricks_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/polished_basalt_bricks_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/polished_bloodstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/polished_bloodstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/polished_bloodstone_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/polished_bloodstone_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/polished_calcite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/polished_calcite.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/polished_calcite_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/polished_calcite_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/polished_rhyolite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/polished_rhyolite.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/polished_rhyolite_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/polished_rhyolite_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/polished_schist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/polished_schist.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/polished_schist_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/polished_schist_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/polished_tuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/polished_tuff.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/polished_tuff_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/polished_tuff_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/potted_azalea_flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/potted_azalea_flowers.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/rhyolite_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/rhyolite_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/rhyolite_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/rhyolite_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/rocky_dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/rocky_dirt.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/schist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/schist.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/sea_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/sea_shell.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/sea_shell1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/sea_shell1.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/sea_shell2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/sea_shell2.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/sea_shell3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/sea_shell3.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/sea_shell4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/sea_shell4.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/sea_shell5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/sea_shell5.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/sea_shell6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/sea_shell6.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/smooth_basalt_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/smooth_basalt_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/soul_lamp_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/soul_lamp_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/soul_lamp_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/soul_lamp_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/soul_lamp_side.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 8 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/soul_lamp_side_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/soul_lamp_side_off.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/soul_lamp_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/soul_lamp_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/spruce_table_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/spruce_table_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/spruce_table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/spruce_table_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/spruce_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/spruce_table_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bamboo_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bamboo_door_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bamboo_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bamboo_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bamboo_large_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bamboo_large_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bamboo_mat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bamboo_mat.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bamboo_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bamboo_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bamboo_singleleaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bamboo_singleleaf.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bamboo_small_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bamboo_small_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bamboo_stage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bamboo_stage0.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bamboo_stalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bamboo_stalk.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bamboo_table_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bamboo_table_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bamboo_table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bamboo_table_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bamboo_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bamboo_table_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bamboo_trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bamboo_trapdoor.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bundled_bamboo_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bundled_bamboo_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/stripped_bundled_bamboo_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/stripped_bundled_bamboo_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/twig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/twig.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/twig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/twig1.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/twig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/twig2.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/twisting_polished_blackstone_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/twisting_polished_blackstone_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/warped_shroomlamp_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/warped_shroomlamp_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/warped_shroomlamp_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/warped_shroomlamp_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/warped_table_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/warped_table_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/warped_table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/warped_table_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/warped_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/warped_table_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/weathered_copper_pillar_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/weathered_copper_pillar_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/weathered_copper_pillar_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/weathered_copper_pillar_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/block/weeping_polished_blackstone_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/block/weeping_polished_blackstone_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/entity/boat/stripped_bamboo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/entity/boat/stripped_bamboo.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/entity/chest_boat/stripped_bamboo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/entity/chest_boat/stripped_bamboo.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/entity/signs/stripped_bamboo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/entity/signs/stripped_bamboo.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/allium_paper_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/allium_paper_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/azalea_flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/azalea_flowers.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/bamboo_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/bamboo_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/blue_orchid_paper_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/blue_orchid_paper_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/crimson_roots_paper_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/crimson_roots_paper_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/dandelion_paper_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/dandelion_paper_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/paper_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/paper_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/pebble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/pebble.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/petrified_lichen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/petrified_lichen.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/sea_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/sea_shell.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/stripped_bamboo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/stripped_bamboo.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/stripped_bamboo_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/stripped_bamboo_boat.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/stripped_bamboo_chest_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/stripped_bamboo_chest_boat.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/stripped_bamboo_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/stripped_bamboo_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/stripped_bamboo_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/stripped_bamboo_sign.png -------------------------------------------------------------------------------- /src/main/resources/assets/twigs/textures/item/twig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moddingplayground/twigs-fabric/36b15361fcb6d05a28e2f4f03233a915224c963e/src/main/resources/assets/twigs/textures/item/twig.png --------------------------------------------------------------------------------