├── .editorconfig ├── .gitattributes ├── .github ├── 1-16-issue-report.md └── config.yml ├── .gitignore ├── Jenkinsfile ├── LICENSE.md ├── README.md ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lombok.config ├── settings.gradle └── src ├── generated └── resources │ └── data │ ├── forge │ └── tags │ │ └── items │ │ ├── ingots.json │ │ ├── rods.json │ │ └── rods │ │ └── stone.json │ ├── minecraft │ └── tags │ │ ├── blocks │ │ ├── leaves.json │ │ ├── logs.json │ │ └── saplings.json │ │ └── items │ │ ├── leaves.json │ │ ├── logs.json │ │ └── saplings.json │ └── natura │ ├── advancements │ └── recipes │ │ ├── building_blocks │ │ └── gadgets │ │ │ └── stone │ │ │ └── jack_o_lantern.json │ │ ├── food │ │ └── common │ │ │ └── seed_bags │ │ │ ├── carrotscarrot.json │ │ │ └── potatoespotato.json │ │ ├── misc │ │ └── common │ │ │ ├── seed_bags │ │ │ ├── bone_mealbone_meal.json │ │ │ ├── nether_wartnether_wart.json │ │ │ └── wheatwheat_seeds.json │ │ │ └── water_bucket.json │ │ └── natura │ │ └── general │ │ ├── common │ │ ├── food │ │ │ └── cactus_juice.json │ │ └── seed_bags │ │ │ ├── bone_mealbone_meal_bag.json │ │ │ ├── carrotscarrots_seed_bag.json │ │ │ ├── nether_wartnether_wart_seed_bag.json │ │ │ ├── potatoespotatoes_seed_bag.json │ │ │ └── wheatwheat_seed_bag.json │ │ └── gadgets │ │ ├── building │ │ ├── dried_clay_bricks.json │ │ ├── dried_clay_bricks_slab.json │ │ ├── dried_clay_bricks_slab_stonecutter.json │ │ ├── dried_clay_bricks_stairs.json │ │ ├── dried_clay_bricks_stairs_stonecutter.json │ │ ├── dried_clay_slab.json │ │ ├── dried_clay_slab_stonecutter.json │ │ ├── dried_clay_stairs.json │ │ └── dried_clay_stairs_stonecutter.json │ │ ├── punji.json │ │ └── stone │ │ ├── stone_ladder.json │ │ ├── stone_stick.json │ │ └── stone_torch.json │ ├── loot_tables │ └── blocks │ │ ├── amaranth_leaves.json │ │ ├── amaranth_log.json │ │ ├── amaranth_sapling.json │ │ ├── cotton_crop.json │ │ ├── dried_clay.json │ │ ├── dried_clay_bricks.json │ │ ├── dried_clay_bricks_slab.json │ │ ├── dried_clay_bricks_stairs.json │ │ ├── dried_clay_slab.json │ │ ├── dried_clay_stairs.json │ │ ├── eucalyptus_leaves.json │ │ ├── eucalyptus_log.json │ │ ├── eucalyptus_sapling.json │ │ ├── hopseed_leaves.json │ │ ├── hopseed_log.json │ │ ├── hopseed_sapling.json │ │ ├── maple_leaves.json │ │ ├── maple_log.json │ │ ├── maple_sapling.json │ │ ├── punji.json │ │ ├── redwood_bark.json │ │ ├── redwood_heart.json │ │ ├── redwood_leaves.json │ │ ├── redwood_root.json │ │ ├── redwood_sapling.json │ │ ├── sakura_leaves.json │ │ ├── sakura_log.json │ │ ├── sakura_sapling.json │ │ ├── silverbell_leaves.json │ │ ├── silverbell_log.json │ │ ├── silverbell_sapling.json │ │ ├── stone_ladder.json │ │ ├── stone_torch.json │ │ ├── tiger_leaves.json │ │ ├── tiger_log.json │ │ ├── tiger_sapling.json │ │ ├── wall_stone_torch.json │ │ ├── willow_leaves.json │ │ ├── willow_log.json │ │ └── willow_sapling.json │ ├── recipes │ ├── common │ │ ├── food │ │ │ └── cactus_juice.json │ │ ├── seed_bags │ │ │ ├── bone_mealbone_meal.json │ │ │ ├── bone_mealbone_meal_bag.json │ │ │ ├── carrotscarrot.json │ │ │ ├── carrotscarrots_seed_bag.json │ │ │ ├── nether_wartnether_wart.json │ │ │ ├── nether_wartnether_wart_seed_bag.json │ │ │ ├── potatoespotato.json │ │ │ ├── potatoespotatoes_seed_bag.json │ │ │ ├── wheatwheat_seed_bag.json │ │ │ └── wheatwheat_seeds.json │ │ └── water_bucket.json │ └── gadgets │ │ ├── building │ │ ├── dried_clay_bricks.json │ │ ├── dried_clay_bricks_slab.json │ │ ├── dried_clay_bricks_slab_stonecutter.json │ │ ├── dried_clay_bricks_stairs.json │ │ ├── dried_clay_bricks_stairs_stonecutter.json │ │ ├── dried_clay_slab.json │ │ ├── dried_clay_slab_stonecutter.json │ │ ├── dried_clay_stairs.json │ │ └── dried_clay_stairs_stonecutter.json │ │ ├── punji.json │ │ └── stone │ │ ├── jack_o_lantern.json │ │ ├── stone_ladder.json │ │ ├── stone_stick.json │ │ └── stone_torch.json │ └── tags │ ├── blocks │ └── redwood_logs.json │ └── items │ └── redwood_logs.json └── main ├── java └── com │ └── progwml6 │ └── natura │ ├── Natura.java │ ├── common │ ├── ClientEventBase.java │ ├── NaturaModule.java │ ├── NaturaTags.java │ ├── config │ │ ├── Config.java │ │ └── value │ │ │ ├── CachedBoolean.java │ │ │ ├── CachedInteger.java │ │ │ └── CachedValue.java │ ├── data │ │ ├── BaseRecipeProvider.java │ │ ├── loot │ │ │ ├── BlockLootTableProvider.java │ │ │ ├── NaturaLootTableProvider.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ └── tags │ │ │ ├── BlockTagProvider.java │ │ │ ├── ItemTagProvider.java │ │ │ └── package-info.java │ └── package-info.java │ ├── gadgets │ ├── GadgetClientEvents.java │ ├── NaturaGadgets.java │ ├── block │ │ ├── PunjiBlock.java │ │ └── package-info.java │ ├── data │ │ ├── GadgetRecipeProvider.java │ │ └── package-info.java │ └── package-info.java │ ├── library │ ├── data │ │ ├── package-info.java │ │ └── recipe │ │ │ ├── ICommonRecipeHelper.java │ │ │ ├── IRecipeHelper.java │ │ │ └── package-info.java │ ├── item │ │ ├── BlockNamedTooltipItem.java │ │ └── package-info.java │ ├── package-info.java │ └── utils │ │ ├── Util.java │ │ └── package-info.java │ ├── package-info.java │ ├── shared │ ├── NaturaCommons.java │ ├── NaturaFood.java │ ├── data │ │ ├── CommonRecipeProvider.java │ │ └── package-info.java │ ├── item │ │ ├── BoneMealBagItem.java │ │ ├── SeedBagItem.java │ │ └── package-info.java │ └── package-info.java │ └── world │ ├── NaturaStructures.java │ ├── NaturaWorld.java │ ├── WorldClientEvents.java │ ├── WorldEvents.java │ ├── block │ ├── OverworldLeavesBlock.java │ ├── PlankType.java │ ├── RedwoodLeavesBlock.java │ ├── RedwoodType.java │ ├── TreeType.java │ ├── crops │ │ ├── BarleyCropBlock.java │ │ ├── CottonCropBlock.java │ │ ├── OverworldCropsBlock.java │ │ └── package-info.java │ └── package-info.java │ ├── client │ ├── LeavesColorizer.java │ └── package-info.java │ ├── config │ └── FeatureType.java │ ├── data │ └── package-info.java │ ├── package-info.java │ └── worldgen │ ├── berry │ ├── config │ │ ├── BerryBushFeatureConfig.java │ │ └── package-info.java │ ├── feature │ │ ├── BerryBushFeature.java │ │ └── package-info.java │ └── package-info.java │ ├── helper │ ├── ChanceRandomFeature.java │ ├── ChanceRandomFeatureConfig.java │ ├── DisableableConfiguredFeature.java │ └── package-info.java │ ├── package-info.java │ └── trees │ ├── OverworldTree.java │ ├── RedwoodTree.java │ ├── SupplierBlockStateProvider.java │ ├── config │ ├── BaseOverworldTreeFeatureConfig.java │ ├── RedwoodTreeFeatureConfig.java │ └── package-info.java │ ├── feature │ ├── EucalyptusTreeFeature.java │ ├── GenericOverworldTreeFeature.java │ ├── HopseedTreeFeature.java │ ├── OverworldTreeFeature.java │ ├── RedwoodTreeFeature.java │ ├── WillowTreeFeature.java │ └── package-info.java │ └── package-info.java └── resources ├── META-INF ├── accesstransformer.cfg └── mods.toml ├── assets ├── natura │ ├── blockstates │ │ ├── amaranth_leaves.json │ │ ├── amaranth_log.json │ │ ├── amaranth_sapling.json │ │ ├── cotton_crop.json │ │ ├── dried_clay.json │ │ ├── dried_clay_bricks.json │ │ ├── dried_clay_bricks_slab.json │ │ ├── dried_clay_bricks_stairs.json │ │ ├── dried_clay_slab.json │ │ ├── dried_clay_stairs.json │ │ ├── eucalyptus_leaves.json │ │ ├── eucalyptus_log.json │ │ ├── eucalyptus_sapling.json │ │ ├── hopseed_leaves.json │ │ ├── hopseed_log.json │ │ ├── hopseed_sapling.json │ │ ├── maple_leaves.json │ │ ├── maple_log.json │ │ ├── maple_sapling.json │ │ ├── punji.json │ │ ├── redwood_bark.json │ │ ├── redwood_heart.json │ │ ├── redwood_leaves.json │ │ ├── redwood_root.json │ │ ├── redwood_sapling.json │ │ ├── sakura_leaves.json │ │ ├── sakura_log.json │ │ ├── sakura_sapling.json │ │ ├── silverbell_leaves.json │ │ ├── silverbell_log.json │ │ ├── silverbell_sapling.json │ │ ├── stone_ladder.json │ │ ├── stone_torch.json │ │ ├── tiger_leaves.json │ │ ├── tiger_log.json │ │ ├── tiger_sapling.json │ │ ├── wall_stone_torch.json │ │ ├── willow_leaves.json │ │ ├── willow_log.json │ │ └── willow_sapling.json │ ├── lang │ │ └── en_us.json │ ├── models │ │ ├── block │ │ │ ├── crops │ │ │ │ └── cotton │ │ │ │ │ ├── stage0.json │ │ │ │ │ ├── stage1.json │ │ │ │ │ ├── stage2.json │ │ │ │ │ ├── stage3.json │ │ │ │ │ └── stage4.json │ │ │ ├── dried_clay.json │ │ │ ├── dried_clay_bricks.json │ │ │ ├── leaves │ │ │ │ ├── amaranth.json │ │ │ │ ├── eucalyptus.json │ │ │ │ ├── hopseed.json │ │ │ │ ├── maple.json │ │ │ │ ├── redwood.json │ │ │ │ ├── sakura.json │ │ │ │ ├── silverbell.json │ │ │ │ ├── tiger.json │ │ │ │ └── willow.json │ │ │ ├── log │ │ │ │ ├── amaranth.json │ │ │ │ ├── amaranth_horizontal.json │ │ │ │ ├── eucalyptus.json │ │ │ │ ├── eucalyptus_horizontal.json │ │ │ │ ├── hopseed.json │ │ │ │ ├── hopseed_horizontal.json │ │ │ │ ├── maple.json │ │ │ │ ├── maple_horizontal.json │ │ │ │ ├── redwood_bark.json │ │ │ │ ├── redwood_heart.json │ │ │ │ ├── redwood_root.json │ │ │ │ ├── sakura.json │ │ │ │ ├── sakura_horizontal.json │ │ │ │ ├── silverbell.json │ │ │ │ ├── silverbell_horizontal.json │ │ │ │ ├── tiger.json │ │ │ │ ├── tiger_horizontal.json │ │ │ │ ├── willow.json │ │ │ │ └── willow_horizontal.json │ │ │ ├── punji │ │ │ │ ├── base.json │ │ │ │ ├── stick.json │ │ │ │ ├── stick_east.json │ │ │ │ ├── stick_north.json │ │ │ │ ├── stick_northeast.json │ │ │ │ └── stick_northwest.json │ │ │ ├── saplings │ │ │ │ ├── amaranth.json │ │ │ │ ├── eucalyptus.json │ │ │ │ ├── hopseed.json │ │ │ │ ├── maple.json │ │ │ │ ├── redwood.json │ │ │ │ ├── sakura.json │ │ │ │ ├── silverbell.json │ │ │ │ ├── tiger.json │ │ │ │ └── willow.json │ │ │ ├── slab │ │ │ │ ├── dried_clay │ │ │ │ │ ├── slab.json │ │ │ │ │ └── slab_top.json │ │ │ │ └── dried_clay_bricks │ │ │ │ │ ├── slab.json │ │ │ │ │ └── slab_top.json │ │ │ ├── stairs │ │ │ │ ├── dried_clay │ │ │ │ │ ├── stairs.json │ │ │ │ │ ├── stairs_inner.json │ │ │ │ │ └── stairs_outer.json │ │ │ │ └── dried_clay_bricks │ │ │ │ │ ├── stairs.json │ │ │ │ │ ├── stairs_inner.json │ │ │ │ │ └── stairs_outer.json │ │ │ ├── stone_ladder.json │ │ │ ├── stone_torch.json │ │ │ └── wall_stone_torch.json │ │ └── item │ │ │ ├── amaranth_leaves.json │ │ │ ├── amaranth_log.json │ │ │ ├── amaranth_sapling.json │ │ │ ├── barley.json │ │ │ ├── barley_flour.json │ │ │ ├── beef_jerky.json │ │ │ ├── bone_meal_bag.json │ │ │ ├── cactus_juice.json │ │ │ ├── carrots_seed_bag.json │ │ │ ├── chicken_jerky.json │ │ │ ├── clownfish_jerky.json │ │ │ ├── cotton.json │ │ │ ├── cotton_crop.json │ │ │ ├── dried_brick.json │ │ │ ├── dried_clay.json │ │ │ ├── dried_clay_bricks.json │ │ │ ├── dried_clay_bricks_slab.json │ │ │ ├── dried_clay_bricks_stairs.json │ │ │ ├── dried_clay_slab.json │ │ │ ├── dried_clay_stairs.json │ │ │ ├── eucalyptus_leaves.json │ │ │ ├── eucalyptus_log.json │ │ │ ├── eucalyptus_sapling.json │ │ │ ├── fish_jerky.json │ │ │ ├── hopseed_leaves.json │ │ │ ├── hopseed_log.json │ │ │ ├── hopseed_sapling.json │ │ │ ├── maple_leaves.json │ │ │ ├── maple_log.json │ │ │ ├── maple_sapling.json │ │ │ ├── monster_jerky.json │ │ │ ├── mutton_jerky.json │ │ │ ├── nether_wart_seed_bag.json │ │ │ ├── pork_jerky.json │ │ │ ├── potatoes_seed_bag.json │ │ │ ├── pufferfish_jerky.json │ │ │ ├── punji.json │ │ │ ├── rabbit_jerky.json │ │ │ ├── redwood_bark.json │ │ │ ├── redwood_heart.json │ │ │ ├── redwood_leaves.json │ │ │ ├── redwood_root.json │ │ │ ├── redwood_sapling.json │ │ │ ├── sakura_leaves.json │ │ │ ├── sakura_log.json │ │ │ ├── sakura_sapling.json │ │ │ ├── salmon_jerky.json │ │ │ ├── silverbell_leaves.json │ │ │ ├── silverbell_log.json │ │ │ ├── silverbell_sapling.json │ │ │ ├── stone_ladder.json │ │ │ ├── stone_stick.json │ │ │ ├── stone_torch.json │ │ │ ├── tiger_leaves.json │ │ │ ├── tiger_log.json │ │ │ ├── tiger_sapling.json │ │ │ ├── wheat_flour.json │ │ │ ├── wheat_seed_bag.json │ │ │ ├── willow_leaves.json │ │ │ ├── willow_log.json │ │ │ └── willow_sapling.json │ └── textures │ │ ├── block │ │ ├── crops │ │ │ └── cotton │ │ │ │ ├── stage_0.png │ │ │ │ ├── stage_1.png │ │ │ │ ├── stage_2.png │ │ │ │ ├── stage_3.png │ │ │ │ └── stage_4.png │ │ ├── dried_clay.png │ │ ├── dried_clay_bricks.png │ │ ├── leaves │ │ │ ├── amaranth_leaves.png │ │ │ ├── eucalyptus_leaves.png │ │ │ ├── hopseed_leaves.png │ │ │ ├── maple_leaves.png │ │ │ ├── redwood_leaves.png │ │ │ ├── sakura_leaves.png │ │ │ ├── silverbell_leaves.png │ │ │ ├── tiger_leaves.png │ │ │ └── willow_leaves.png │ │ ├── log │ │ │ ├── amaranth_log.png │ │ │ ├── amaranth_log_top.png │ │ │ ├── eucalyptus_log.png │ │ │ ├── eucalyptus_log_top.png │ │ │ ├── hopseed_log.png │ │ │ ├── hopseed_log_top.png │ │ │ ├── maple_log.png │ │ │ ├── maple_log_top.png │ │ │ ├── redwood_bark.png │ │ │ ├── redwood_heart.png │ │ │ ├── redwood_root.png │ │ │ ├── sakura_log.png │ │ │ ├── sakura_log_top.png │ │ │ ├── silverbell_log.png │ │ │ ├── silverbell_log_top.png │ │ │ ├── tiger_log.png │ │ │ ├── tiger_log_top.png │ │ │ ├── willow_log.png │ │ │ └── willow_log_top.png │ │ ├── punji.png │ │ ├── saplings │ │ │ ├── amaranth_sapling.png │ │ │ ├── eucalyptus_sapling.png │ │ │ ├── hopseed_sapling.png │ │ │ ├── maple_sapling.png │ │ │ ├── redwood_sapling.png │ │ │ ├── sakura_sapling.png │ │ │ ├── silverbell_sapling.png │ │ │ ├── tiger_sapling.png │ │ │ └── willow_sapling.png │ │ ├── stone_ladder.png │ │ └── stone_torch.png │ │ └── item │ │ ├── bags │ │ ├── bone_meal_bag.png │ │ ├── carrots_seed_bag.png │ │ ├── nether_wart_seed_bag.png │ │ ├── potatoes_seed_bag.png │ │ └── wheat_seed_bag.png │ │ ├── food │ │ ├── beef_jerky.png │ │ ├── cactus_juice.png │ │ ├── chicken_jerky.png │ │ ├── clownfish_jerky.png │ │ ├── fish_jerky.png │ │ ├── monster_jerky.png │ │ ├── mutton_jerky.png │ │ ├── pork_jerky.png │ │ ├── pufferfish_jerky.png │ │ ├── rabbit_jerky.png │ │ └── salmon_jerky.png │ │ ├── materials │ │ ├── barley.png │ │ ├── barley_flour.png │ │ ├── cotton.png │ │ ├── dried_brick.png │ │ ├── stone_rod.png │ │ └── wheat_flour.png │ │ └── seeds │ │ ├── barley.png │ │ └── cotton.png └── natura_old │ ├── blockstates │ ├── amaranth_button.json │ ├── amaranth_fence.json │ ├── amaranth_fence_gate.json │ ├── amaranth_pressure_plate.json │ ├── amaranth_trap_door.json │ ├── barley_crop.json │ ├── blaze_hopper.json │ ├── blaze_rail.json │ ├── blaze_rail_activator.json │ ├── blaze_rail_detector.json │ ├── blaze_rail_golden.json │ ├── bloodwood_button.json │ ├── bloodwood_fence.json │ ├── bloodwood_fence_gate.json │ ├── bloodwood_pressure_plate.json │ ├── bloodwood_trap_door.json │ ├── bluebells_flower.json │ ├── clouds.json │ ├── colored_grass.json │ ├── colored_grass_slab.json │ ├── colored_grass_stairs_autumnal.json │ ├── colored_grass_stairs_bluegrass.json │ ├── colored_grass_stairs_topiary.json │ ├── darkwood_button.json │ ├── darkwood_fence.json │ ├── darkwood_fence_gate.json │ ├── darkwood_pressure_plate.json │ ├── darkwood_trap_door.json │ ├── edibles.json │ ├── empty_bowls.json │ ├── eucalyptus_button.json │ ├── eucalyptus_fence.json │ ├── eucalyptus_fence_gate.json │ ├── eucalyptus_pressure_plate.json │ ├── eucalyptus_trap_door.json │ ├── fusewood_button.json │ ├── fusewood_fence.json │ ├── fusewood_fence_gate.json │ ├── fusewood_pressure_plate.json │ ├── fusewood_trap_door.json │ ├── ghostwood_button.json │ ├── ghostwood_fence.json │ ├── ghostwood_fence_gate.json │ ├── ghostwood_pressure_plate.json │ ├── ghostwood_trap_door.json │ ├── hopseed_button.json │ ├── hopseed_fence.json │ ├── hopseed_fence_gate.json │ ├── hopseed_pressure_plate.json │ ├── hopseed_trap_door.json │ ├── lit_netherrack_furnace.json │ ├── logs.json │ ├── maple_button.json │ ├── maple_fence.json │ ├── maple_fence_gate.json │ ├── maple_pressure_plate.json │ ├── maple_trap_door.json │ ├── materials.json │ ├── nether_berrybush_blightberry.json │ ├── nether_berrybush_duskberry.json │ ├── nether_berrybush_skyberry.json │ ├── nether_berrybush_stingberry.json │ ├── nether_blue_large_glowshroom.json │ ├── nether_bookshelves.json │ ├── nether_button.json │ ├── nether_door_bloodwood.json │ ├── nether_door_darkwood.json │ ├── nether_door_fusewood.json │ ├── nether_door_ghostwood.json │ ├── nether_doors.json │ ├── nether_glass.json │ ├── nether_glowshroom.json │ ├── nether_green_large_glowshroom.json │ ├── nether_heat_sand.json │ ├── nether_leaves.json │ ├── nether_leaves2.json │ ├── nether_lever.json │ ├── nether_logs.json │ ├── nether_logs2.json │ ├── nether_planks.json │ ├── nether_pressure_plate.json │ ├── nether_purple_large_glowshroom.json │ ├── nether_sapling.json │ ├── nether_sapling2.json │ ├── nether_slab.json │ ├── nether_stairs_bloodwood.json │ ├── nether_stairs_darkwood.json │ ├── nether_stairs_fusewood.json │ ├── nether_stairs_ghostwood.json │ ├── nether_tainted_soil.json │ ├── nether_thorn_vine.json │ ├── nether_workbenches.json │ ├── netherrack_furnace.json │ ├── overworld_berrybush_blackberry.json │ ├── overworld_berrybush_blueberry.json │ ├── overworld_berrybush_maloberry.json │ ├── overworld_berrybush_raspberry.json │ ├── overworld_bookshelves.json │ ├── overworld_door_eucalyptus.json │ ├── overworld_door_hopseed.json │ ├── overworld_door_maple.json │ ├── overworld_door_redwood.json │ ├── overworld_door_redwood_bark.json │ ├── overworld_door_sakura.json │ ├── overworld_door_silverbell.json │ ├── overworld_door_tiger.json │ ├── overworld_doors.json │ ├── overworld_leaves.json │ ├── overworld_leaves2.json │ ├── overworld_logs.json │ ├── overworld_logs2.json │ ├── overworld_planks.json │ ├── overworld_sapling.json │ ├── overworld_sapling2.json │ ├── overworld_seed_bags.json │ ├── overworld_seeds.json │ ├── overworld_slab.json │ ├── overworld_slab2.json │ ├── overworld_stairs_amaranth.json │ ├── overworld_stairs_eucalyptus.json │ ├── overworld_stairs_hopseed.json │ ├── overworld_stairs_maple.json │ ├── overworld_stairs_redwood.json │ ├── overworld_stairs_sakura.json │ ├── overworld_stairs_silverbell.json │ ├── overworld_stairs_tiger.json │ ├── overworld_stairs_willow.json │ ├── overworld_workbenches.json │ ├── redwood_button.json │ ├── redwood_fence.json │ ├── redwood_fence_gate.json │ ├── redwood_leaves.json │ ├── redwood_logs.json │ ├── redwood_pressure_plate.json │ ├── redwood_sapling.json │ ├── redwood_trap_door.json │ ├── respawn_obelisk.json │ ├── saguaro.json │ ├── saguaro_baby.json │ ├── saguaro_fruit.json │ ├── sakura_button.json │ ├── sakura_fence.json │ ├── sakura_fence_gate.json │ ├── sakura_pressure_plate.json │ ├── sakura_trap_door.json │ ├── seed_bags.json │ ├── silverbell_button.json │ ├── silverbell_fence.json │ ├── silverbell_fence_gate.json │ ├── silverbell_pressure_plate.json │ ├── silverbell_trap_door.json │ ├── soups.json │ ├── sticks.json │ ├── tiger_button.json │ ├── tiger_fence.json │ ├── tiger_fence_gate.json │ ├── tiger_pressure_plate.json │ ├── tiger_trap_door.json │ ├── willow_button.json │ ├── willow_fence.json │ ├── willow_fence_gate.json │ ├── willow_pressure_plate.json │ └── willow_trap_door.json │ ├── lang │ ├── de_DE.lang │ ├── en_UD.lang │ ├── en_US.lang │ ├── ja_JP.lang │ ├── ru_RU.lang │ ├── zh_CN.lang │ └── zh_TW.lang │ ├── loot_tables │ └── entities │ │ ├── heatscarspider.json │ │ └── imp.json │ ├── models │ ├── block │ │ ├── natura_bush_large.json │ │ ├── natura_bush_medium.json │ │ ├── natura_bush_small.json │ │ ├── natura_door_bottom.json │ │ ├── natura_door_bottom_rh.json │ │ ├── natura_door_top.json │ │ ├── natura_door_top_rh.json │ │ ├── natura_grass.json │ │ ├── natura_half_slab.json │ │ ├── natura_hopper_down.json │ │ ├── natura_hopper_side.json │ │ ├── natura_inner_stairs.json │ │ ├── natura_outer_stairs.json │ │ ├── natura_saguaro.json │ │ ├── natura_saguaro_baby.json │ │ ├── natura_saguaro_bottom.json │ │ ├── natura_saguaro_fruit.json │ │ ├── natura_saguaro_side.json │ │ ├── natura_saguaro_top.json │ │ ├── natura_stairs.json │ │ ├── natura_upper_slab.json │ │ ├── natura_vine_north.json │ │ └── natura_vine_up.json │ └── item │ │ ├── amaranth_button.json │ │ ├── amaranth_fence.json │ │ ├── amaranth_fence_gate.json │ │ ├── amaranth_pressure_plate.json │ │ ├── amaranth_trap_door.json │ │ ├── blaze_hopper.json │ │ ├── blaze_rail.json │ │ ├── blaze_rail_activator.json │ │ ├── blaze_rail_detector.json │ │ ├── blaze_rail_golden.json │ │ ├── bloodwood_axe.json │ │ ├── bloodwood_bow.json │ │ ├── bloodwood_bow_pulling_0.json │ │ ├── bloodwood_bow_pulling_1.json │ │ ├── bloodwood_bow_pulling_2.json │ │ ├── bloodwood_button.json │ │ ├── bloodwood_fence.json │ │ ├── bloodwood_fence_gate.json │ │ ├── bloodwood_kama.json │ │ ├── bloodwood_pickaxe.json │ │ ├── bloodwood_pressure_plate.json │ │ ├── bloodwood_shovel.json │ │ ├── bloodwood_sword.json │ │ ├── bloodwood_trap_door.json │ │ ├── bluebells_flower.json │ │ ├── bonemeal_bag.json │ │ ├── bow.json │ │ ├── darkwood_axe.json │ │ ├── darkwood_bow.json │ │ ├── darkwood_bow_pulling_0.json │ │ ├── darkwood_bow_pulling_1.json │ │ ├── darkwood_bow_pulling_2.json │ │ ├── darkwood_button.json │ │ ├── darkwood_fence.json │ │ ├── darkwood_fence_gate.json │ │ ├── darkwood_kama.json │ │ ├── darkwood_pickaxe.json │ │ ├── darkwood_pressure_plate.json │ │ ├── darkwood_shovel.json │ │ ├── darkwood_sword.json │ │ ├── darkwood_trap_door.json │ │ ├── eucalyptus_button.json │ │ ├── eucalyptus_fence.json │ │ ├── eucalyptus_fence_gate.json │ │ ├── eucalyptus_pressure_plate.json │ │ ├── eucalyptus_trap_door.json │ │ ├── flint_and_blaze.json │ │ ├── fusewood_axe.json │ │ ├── fusewood_bow.json │ │ ├── fusewood_bow_pulling_0.json │ │ ├── fusewood_bow_pulling_1.json │ │ ├── fusewood_bow_pulling_2.json │ │ ├── fusewood_button.json │ │ ├── fusewood_fence.json │ │ ├── fusewood_fence_gate.json │ │ ├── fusewood_kama.json │ │ ├── fusewood_pickaxe.json │ │ ├── fusewood_pressure_plate.json │ │ ├── fusewood_shovel.json │ │ ├── fusewood_sword.json │ │ ├── fusewood_trap_door.json │ │ ├── ghostwood_axe.json │ │ ├── ghostwood_bow.json │ │ ├── ghostwood_bow_pulling_0.json │ │ ├── ghostwood_bow_pulling_1.json │ │ ├── ghostwood_bow_pulling_2.json │ │ ├── ghostwood_button.json │ │ ├── ghostwood_fence.json │ │ ├── ghostwood_fence_gate.json │ │ ├── ghostwood_kama.json │ │ ├── ghostwood_pickaxe.json │ │ ├── ghostwood_pressure_plate.json │ │ ├── ghostwood_shovel.json │ │ ├── ghostwood_sword.json │ │ ├── ghostwood_trap_door.json │ │ ├── hopseed_button.json │ │ ├── hopseed_fence.json │ │ ├── hopseed_fence_gate.json │ │ ├── hopseed_pressure_plate.json │ │ ├── hopseed_trap_door.json │ │ ├── imp_armor_boots.json │ │ ├── imp_armor_chestplate.json │ │ ├── imp_armor_helmet.json │ │ ├── imp_armor_leggings.json │ │ ├── lit_netherrack_furnace.json │ │ ├── maple_button.json │ │ ├── maple_fence.json │ │ ├── maple_fence_gate.json │ │ ├── maple_pressure_plate.json │ │ ├── maple_trap_door.json │ │ ├── nether_button.json │ │ ├── nether_door_bloodwood.json │ │ ├── nether_door_darkwood.json │ │ ├── nether_door_fusewood.json │ │ ├── nether_door_ghostwood.json │ │ ├── nether_glowshroom_blue.json │ │ ├── nether_glowshroom_green.json │ │ ├── nether_glowshroom_purple.json │ │ ├── nether_lever.json │ │ ├── nether_pressure_plate.json │ │ ├── nether_sapling_bloodwood.json │ │ ├── nether_sapling_darkwood.json │ │ ├── nether_sapling_fusewood.json │ │ ├── nether_sapling_ghostwood.json │ │ ├── nether_thorn_vine.json │ │ ├── netherquartz_axe.json │ │ ├── netherquartz_kama.json │ │ ├── netherquartz_pickaxe.json │ │ ├── netherquartz_shovel.json │ │ ├── netherquartz_sword.json │ │ ├── netherrack_furnace.json │ │ ├── overworld_door_eucalyptus.json │ │ ├── overworld_door_hopseed.json │ │ ├── overworld_door_maple.json │ │ ├── overworld_door_redwood.json │ │ ├── overworld_door_redwood_bark.json │ │ ├── overworld_door_sakura.json │ │ ├── overworld_door_silverbell.json │ │ ├── overworld_door_tiger.json │ │ ├── overworld_sapling_amaranth.json │ │ ├── overworld_sapling_eucalyptus.json │ │ ├── overworld_sapling_hopseed.json │ │ ├── overworld_sapling_maple.json │ │ ├── overworld_sapling_redwood.json │ │ ├── overworld_sapling_sakura.json │ │ ├── overworld_sapling_silverbell.json │ │ ├── overworld_sapling_tiger.json │ │ ├── overworld_sapling_willow.json │ │ ├── redwood_button.json │ │ ├── redwood_fence.json │ │ ├── redwood_fence_gate.json │ │ ├── redwood_pressure_plate.json │ │ ├── redwood_trap_door.json │ │ ├── saguaro.json │ │ ├── saguaro_fruit.json │ │ ├── saguaro_fruit_item.json │ │ ├── sakura_button.json │ │ ├── sakura_fence.json │ │ ├── sakura_fence_gate.json │ │ ├── sakura_pressure_plate.json │ │ ├── sakura_trap_door.json │ │ ├── silverbell_button.json │ │ ├── silverbell_fence.json │ │ ├── silverbell_fence_gate.json │ │ ├── silverbell_pressure_plate.json │ │ ├── silverbell_trap_door.json │ │ ├── tiger_button.json │ │ ├── tiger_fence.json │ │ ├── tiger_fence_gate.json │ │ ├── tiger_pressure_plate.json │ │ ├── tiger_trap_door.json │ │ ├── willow_button.json │ │ ├── willow_fence.json │ │ ├── willow_fence_gate.json │ │ ├── willow_pressure_plate.json │ │ └── willow_trap_door.json │ ├── recipes │ ├── _factories.json │ ├── common │ │ ├── arrows.json │ │ ├── barley_flour.json │ │ ├── bone_meal.json │ │ ├── bone_meal_bag.json │ │ ├── bread.json │ │ ├── cactus_juice.json │ │ ├── cake.json │ │ ├── carrots.json │ │ ├── carrots_bag.json │ │ ├── charcoal.json │ │ ├── daylight_detector.json │ │ ├── glass_bottle.json │ │ ├── gunpowder.json │ │ ├── leather.json │ │ ├── nether_wart.json │ │ ├── nether_wart_bag.json │ │ ├── potatoes.json │ │ ├── potatos_bag.json │ │ ├── string.json │ │ ├── sulfur.json │ │ ├── water_bucket.json │ │ ├── wheat_flour.json │ │ ├── wheat_seed_bag.json │ │ ├── wheat_seeds.json │ │ └── wool.json │ ├── decorative │ │ ├── nether │ │ │ ├── bookshelf │ │ │ │ ├── bloodwood_bookshelf.json │ │ │ │ ├── darkwood_bookshelf.json │ │ │ │ ├── fusewood_bookshelf.json │ │ │ │ └── ghostwood_bookshelf.json │ │ │ ├── button │ │ │ │ ├── bloodwood_button.json │ │ │ │ ├── darkwood_button.json │ │ │ │ ├── fusewood_button.json │ │ │ │ └── ghostwood_button.json │ │ │ ├── fence │ │ │ │ ├── bloodwood_fence.json │ │ │ │ ├── darkwood_fence.json │ │ │ │ ├── fusewood_fence.json │ │ │ │ └── ghostwood_fence.json │ │ │ ├── fence_gate │ │ │ │ ├── bloodwood_fence_gate.json │ │ │ │ ├── darkwood_fence_gate.json │ │ │ │ ├── fusewood_fence_gate.json │ │ │ │ └── ghostwood_fence_gate.json │ │ │ ├── pressure_plate │ │ │ │ ├── bloodwood_pressure_plate.json │ │ │ │ ├── darkwood_pressure_plate.json │ │ │ │ ├── fusewood_pressure_plate.json │ │ │ │ └── ghostwood_pressure_plate.json │ │ │ ├── trap_door │ │ │ │ ├── bloodwood_trap_door.json │ │ │ │ ├── darkwood_trap_door.json │ │ │ │ ├── fusewood_trap_door.json │ │ │ │ └── ghostwood_trap_door.json │ │ │ └── workbench │ │ │ │ ├── bloodwood_workbench.json │ │ │ │ ├── darkwood_workbench.json │ │ │ │ ├── fusewood_workbench.json │ │ │ │ └── ghostwood_workbench.json │ │ └── overworld │ │ │ ├── bookshelf │ │ │ ├── amaranth_bookshelf.json │ │ │ ├── eucalyptus_bookshelf.json │ │ │ ├── hopseed_bookshelf.json │ │ │ ├── maple_bookshelf.json │ │ │ ├── redwood_bookshelf.json │ │ │ ├── sakura_bookshelf.json │ │ │ ├── silverbell_bookshelf.json │ │ │ ├── tiger_bookshelf.json │ │ │ └── willow_bookshelf.json │ │ │ ├── button │ │ │ ├── amaranth_button.json │ │ │ ├── eucalyptus_button.json │ │ │ ├── hopseed_button.json │ │ │ ├── maple_button.json │ │ │ ├── redwood_button.json │ │ │ ├── sakura_button.json │ │ │ ├── silverbell_button.json │ │ │ ├── tiger_button.json │ │ │ └── willow_button.json │ │ │ ├── fence │ │ │ ├── amaranth_fence.json │ │ │ ├── eucalyptus_fence.json │ │ │ ├── hopseed_fence.json │ │ │ ├── maple_fence.json │ │ │ ├── redwood_fence.json │ │ │ ├── sakura_fence.json │ │ │ ├── silverbell_fence.json │ │ │ ├── tiger_fence.json │ │ │ └── willow_fence.json │ │ │ ├── fence_gate │ │ │ ├── amaranth_fence_gate.json │ │ │ ├── eucalyptus_fence_gate.json │ │ │ ├── hopseed_fence_gate.json │ │ │ ├── maple_fence_gate.json │ │ │ ├── redwood_fence_gate.json │ │ │ ├── sakura_fence_gate.json │ │ │ ├── silverbell_fence_gate.json │ │ │ ├── tiger_fence_gate.json │ │ │ └── willow_fence_gate.json │ │ │ ├── pressure_plate │ │ │ ├── amaranth_pressure_plate.json │ │ │ ├── eucalyptus_pressure_plate.json │ │ │ ├── hopseed_pressure_plate.json │ │ │ ├── maple_pressure_plate.json │ │ │ ├── redwood_pressure_plate.json │ │ │ ├── sakura_pressure_plate.json │ │ │ ├── silverbell_pressure_plate.json │ │ │ ├── tiger_pressure_plate.json │ │ │ └── willow_pressure_plate.json │ │ │ ├── trap_door │ │ │ ├── amaranth_trap_door.json │ │ │ ├── eucalyptus_trap_door.json │ │ │ ├── hopseed_trap_door.json │ │ │ ├── maple_trap_door.json │ │ │ ├── redwood_trap_door.json │ │ │ ├── sakura_trap_door.json │ │ │ ├── silverbell_trap_door.json │ │ │ ├── tiger_trap_door.json │ │ │ └── willow_trap_door.json │ │ │ └── workbench │ │ │ ├── amaranth_workbench.json │ │ │ ├── eucalyptus_workbench.json │ │ │ ├── hopseed_workbench.json │ │ │ ├── maple_workbench.json │ │ │ ├── redwood_workbench.json │ │ │ ├── sakura_workbench.json │ │ │ ├── silverbell_workbench.json │ │ │ ├── tiger_workbench.json │ │ │ └── willow_workbench.json │ ├── nether │ │ ├── blaze_hopper.json │ │ ├── bowls │ │ │ ├── bloodwood_bowl.json │ │ │ ├── darkwood_bowl.json │ │ │ ├── fusewood_bowl.json │ │ │ └── ghostwood_bowl.json │ │ ├── doors │ │ │ ├── bloodwood_door.json │ │ │ ├── darkwood_door.json │ │ │ ├── fusewood_door.json │ │ │ └── ghostwood_door.json │ │ ├── ghostwood_fletching.json │ │ ├── glowshroom_stew │ │ │ ├── bloodwood_glowshroom_stew.json │ │ │ ├── darkwood_glowshroom_stew.json │ │ │ ├── fusewood_glowshroom_stew.json │ │ │ ├── ghostwood_glowshroom_stew.json │ │ │ └── vanilla_glowshroom_stew.json │ │ ├── mushroom_stew │ │ │ ├── bloodwood_mushroom_stew.json │ │ │ ├── darkwood_mushroom_stew.json │ │ │ ├── fusewood_mushroom_stew.json │ │ │ └── ghostwood_mushroom_stew.json │ │ ├── nether_button.json │ │ ├── nether_lever.json │ │ ├── nether_pressure_plate.json │ │ ├── netherrack_furnace.json │ │ ├── planks │ │ │ ├── bloodwood_planks.json │ │ │ ├── darkwood_planks.json │ │ │ ├── fusewood_planks.json │ │ │ └── ghostwood_planks.json │ │ ├── rails │ │ │ ├── blaze_rail.json │ │ │ ├── blaze_rail_activator.json │ │ │ ├── blaze_rail_detector.json │ │ │ └── blaze_rail_powered.json │ │ ├── respawn_obelisk.json │ │ ├── slabs │ │ │ ├── bloodwood_slab.json │ │ │ ├── darkwood_slab.json │ │ │ ├── fusewood_slab.json │ │ │ └── ghostwood_slab.json │ │ ├── soul_sand.json │ │ ├── stairs │ │ │ ├── bloodwood_stairs.json │ │ │ ├── darkwood_stairs.json │ │ │ ├── fusewood_stairs.json │ │ │ └── ghostwood_stairs.json │ │ └── sticks │ │ │ ├── bloodwood_sticks.json │ │ │ ├── darkwood_sticks.json │ │ │ ├── fusewood_sticks.json │ │ │ └── ghostwood_sticks.json │ ├── overworld │ │ ├── barley_seed_bag.json │ │ ├── barley_seeds.json │ │ ├── berry_medley │ │ │ ├── berry_medley.json │ │ │ └── berry_medley_double.json │ │ ├── blue_dye.json │ │ ├── cotton_seed_bag.json │ │ ├── cotton_seeds.json │ │ ├── doors │ │ │ ├── eucalyptus_door.json │ │ │ ├── hopseed_door.json │ │ │ ├── maple_door.json │ │ │ ├── redwood_bark_door.json │ │ │ ├── redwood_door.json │ │ │ ├── sakura_door.json │ │ │ ├── silverbell_door.json │ │ │ └── tiger_door.json │ │ ├── grass │ │ │ ├── colored_grass.json │ │ │ ├── colored_grass_autumnal.json │ │ │ └── colored_grass_blue.json │ │ ├── planks │ │ │ ├── amaranth_planks.json │ │ │ ├── eucalyptus_planks.json │ │ │ ├── hopseed_planks.json │ │ │ ├── maple_planks.json │ │ │ ├── redwood_planks.json │ │ │ ├── sakura_planks.json │ │ │ ├── silverbell_planks.json │ │ │ ├── tiger_planks.json │ │ │ └── willow_planks.json │ │ ├── slabs │ │ │ ├── amaranth_slab.json │ │ │ ├── colored_grass_autumnal_slab.json │ │ │ ├── colored_grass_bluegrass_slab.json │ │ │ ├── colored_grass_topiary_slab.json │ │ │ ├── eucalyptus_slab.json │ │ │ ├── hopseed_slab.json │ │ │ ├── maple_slab.json │ │ │ ├── redwood_slab.json │ │ │ ├── sakura_slab.json │ │ │ ├── silverbell_slab.json │ │ │ ├── tiger_slab.json │ │ │ └── willow_slab.json │ │ ├── stairs │ │ │ ├── amaranth_stairs.json │ │ │ ├── colored_grass_autumnal_stairs.json │ │ │ ├── colored_grass_bluegrass_stairs.json │ │ │ ├── colored_grass_topiary_stairs.json │ │ │ ├── eucalyptus_stairs.json │ │ │ ├── hopseed_stairs.json │ │ │ ├── maple_stairs.json │ │ │ ├── redwood_stairs.json │ │ │ ├── sakura_stairs.json │ │ │ ├── silverbell_stairs.json │ │ │ ├── tiger_stairs.json │ │ │ └── willow_stairs.json │ │ └── sticks │ │ │ ├── amaranth_sticks.json │ │ │ ├── eucalyptus_sticks.json │ │ │ ├── hopseed_sticks.json │ │ │ ├── maple_sticks.json │ │ │ ├── redwood_sticks.json │ │ │ ├── sakura_sticks.json │ │ │ ├── silverbell_sticks.json │ │ │ ├── tiger_sticks.json │ │ │ └── willow_sticks.json │ └── tools │ │ ├── entities │ │ ├── imp_leather_boots.json │ │ ├── imp_leather_chestplate.json │ │ ├── imp_leather_helmet.json │ │ └── imp_leather_leggings.json │ │ └── nether │ │ ├── bloodwood │ │ ├── bloodwood_axe.json │ │ ├── bloodwood_bow.json │ │ ├── bloodwood_kama.json │ │ ├── bloodwood_pickaxe.json │ │ ├── bloodwood_shovel.json │ │ └── bloodwood_sword.json │ │ ├── darkwood │ │ ├── darkwood_axe.json │ │ ├── darkwood_bow.json │ │ ├── darkwood_kama.json │ │ ├── darkwood_pickaxe.json │ │ ├── darkwood_shovel.json │ │ └── darkwood_sword.json │ │ ├── flint_and_blaze.json │ │ ├── fusewood │ │ ├── fusewood_axe.json │ │ ├── fusewood_bow.json │ │ ├── fusewood_kama.json │ │ ├── fusewood_pickaxe.json │ │ ├── fusewood_shovel.json │ │ └── fusewood_sword.json │ │ ├── ghostwood │ │ ├── ghostwood_axe.json │ │ ├── ghostwood_bow.json │ │ ├── ghostwood_kama.json │ │ ├── ghostwood_pickaxe.json │ │ ├── ghostwood_shovel.json │ │ └── ghostwood_sword.json │ │ └── netherquartz │ │ ├── netherquartz_axe.json │ │ ├── netherquartz_kama.json │ │ ├── netherquartz_pickaxe.json │ │ ├── netherquartz_shovel.json │ │ └── netherquartz_sword.json │ └── textures │ ├── armor │ ├── imp_armor.png │ └── imp_armor_legs.png │ ├── blocks │ ├── berrybush │ │ ├── nether │ │ │ ├── blightberry.png │ │ │ ├── blightberry_ripe.png │ │ │ ├── duskberry.png │ │ │ ├── duskberry_ripe.png │ │ │ ├── skyberry.png │ │ │ ├── skyberry_ripe.png │ │ │ ├── stingberry.png │ │ │ └── stingberry_ripe.png │ │ └── overworld │ │ │ ├── blackberry.png │ │ │ ├── blackberry_ripe.png │ │ │ ├── blueberry.png │ │ │ ├── blueberry_ripe.png │ │ │ ├── maloberry.png │ │ │ ├── maloberry_ripe.png │ │ │ ├── raspberry.png │ │ │ └── raspberry_ripe.png │ ├── bookshelves │ │ ├── nether │ │ │ ├── bloodwood_bookshelf.png │ │ │ ├── darkwood_bookshelf.png │ │ │ ├── fusewood_bookshelf.png │ │ │ └── ghostwood_bookshelf.png │ │ └── overworld │ │ │ ├── amaranth_bookshelf.png │ │ │ ├── eucalyptus_bookshelf.png │ │ │ ├── hopseed_bookshelf.png │ │ │ ├── maple_bookshelf.png │ │ │ ├── redwood_bookshelf.png │ │ │ ├── sakura_bookshelf.png │ │ │ ├── silverbell_bookshelf.png │ │ │ ├── tiger_bookshelf.png │ │ │ └── willow_bookshelf.png │ ├── clouds │ │ ├── ash_cloud.png │ │ ├── dark_cloud.png │ │ ├── sulfur_cloud.png │ │ └── white_cloud.png │ ├── crops │ │ └── barley │ │ │ ├── barley_stage_0.png │ │ │ ├── barley_stage_1.png │ │ │ ├── barley_stage_2.png │ │ │ └── barley_stage_3.png │ ├── doors │ │ ├── amaranth │ │ │ ├── amaranth_door_bottom.png │ │ │ └── amaranth_door_top.png │ │ ├── bloodwood │ │ │ ├── bloodwood_door_bottom.png │ │ │ └── bloodwood_door_top.png │ │ ├── darkwood │ │ │ ├── darkwood_door_bottom.png │ │ │ └── darkwood_door_top.png │ │ ├── eucalyptus │ │ │ ├── eucalyptus_door_bottom.png │ │ │ └── eucalyptus_door_top.png │ │ ├── fusewood │ │ │ ├── fusewood_door_bottom.png │ │ │ └── fusewood_door_top.png │ │ ├── ghostwood │ │ │ ├── ghostwood_door_bottom.png │ │ │ └── ghostwood_door_top.png │ │ ├── hopseed │ │ │ ├── hopseed_door_bottom.png │ │ │ └── hopseed_door_top.png │ │ ├── maple │ │ │ ├── maple_door_bottom.png │ │ │ └── maple_door_top.png │ │ ├── redwood │ │ │ ├── bark │ │ │ │ ├── redwood_bark_door_bottom.png │ │ │ │ └── redwood_bark_door_top.png │ │ │ └── normal │ │ │ │ ├── redwood_door_bottom.png │ │ │ │ └── redwood_door_top.png │ │ ├── sakura │ │ │ ├── sakura_door_bottom.png │ │ │ └── sakura_door_top.png │ │ ├── silverbell │ │ │ ├── silverbell_door_bottom.png │ │ │ └── silverbell_door_top.png │ │ ├── tiger │ │ │ ├── tiger_door_bottom.png │ │ │ └── tiger_door_top.png │ │ └── willow │ │ │ ├── willow_door_bottom.png │ │ │ └── willow_door_top.png │ ├── flower │ │ └── bluebells_flowers.png │ ├── furnace │ │ ├── netherrack_furnace_off.png │ │ ├── netherrack_furnace_on.png │ │ ├── netherrack_furnace_side.png │ │ └── netherrack_furnace_top.png │ ├── glass │ │ ├── glass_heat.png │ │ └── glass_soul.png │ ├── glowshroom │ │ ├── blue │ │ │ ├── blue_glowshroom.png │ │ │ ├── blue_glowshroom_inside.png │ │ │ ├── blue_glowshroom_skin.png │ │ │ └── blue_glowshroom_stem.png │ │ ├── green │ │ │ ├── green_glowshroom.png │ │ │ ├── green_glowshroom_inside.png │ │ │ ├── green_glowshroom_skin.png │ │ │ └── green_glowshroom_stem.png │ │ └── purple │ │ │ ├── purple_glowshroom.png │ │ │ ├── purple_glowshroom_inside.png │ │ │ ├── purple_glowshroom_skin.png │ │ │ └── purple_glowshroom_stem.png │ ├── grass │ │ └── grass.png │ ├── hopper │ │ ├── blaze_hopper_inside.png │ │ ├── blaze_hopper_outside.png │ │ └── blaze_hopper_top.png │ ├── leaves │ │ └── nether │ │ │ ├── bloodwood_leaves.png │ │ │ ├── darkwood_flowering_leaves.png │ │ │ ├── darkwood_fruit_leaves.png │ │ │ ├── darkwood_leaves.png │ │ │ ├── fusewood_leaves.png │ │ │ └── ghostwood_leaves.png │ ├── lever │ │ └── nether_lever.png │ ├── logs │ │ └── nether │ │ │ ├── bloodwood_bark.png │ │ │ ├── bloodwood_heart_small.png │ │ │ ├── bloodwood_lower_left.png │ │ │ ├── bloodwood_lower_right.png │ │ │ ├── bloodwood_side_left.png │ │ │ ├── bloodwood_side_right.png │ │ │ ├── bloodwood_upper_left.png │ │ │ ├── bloodwood_upper_right.png │ │ │ ├── darkwood_log.png │ │ │ ├── darkwood_log_top.png │ │ │ ├── fusewood_log.png │ │ │ ├── fusewood_log_top.png │ │ │ ├── ghostwood_log.png │ │ │ └── ghostwood_log_top.png │ ├── obelisk │ │ ├── obelisk_active.png │ │ └── obelisk_inactive.png │ ├── planks │ │ ├── nether │ │ │ ├── bloodwood_planks.png │ │ │ ├── darkwood_planks.png │ │ │ ├── fusewood_planks.png │ │ │ └── ghostwood_planks.png │ │ └── overworld │ │ │ ├── amaranth_planks.png │ │ │ ├── eucalyptus_planks.png │ │ │ ├── hopseed_planks.png │ │ │ ├── maple_planks.png │ │ │ ├── redwood_planks.png │ │ │ ├── sakura_planks.png │ │ │ ├── silverbell_planks.png │ │ │ ├── tiger_planks.png │ │ │ └── willow_planks.png │ ├── rail │ │ ├── blaze_rail_activator.png │ │ ├── blaze_rail_activator_powered.png │ │ ├── blaze_rail_detector.png │ │ ├── blaze_rail_detector_powered.png │ │ ├── blaze_rail_golden.png │ │ ├── blaze_rail_golden_powered.png │ │ ├── blaze_rail_normal.png │ │ └── blaze_rail_normal_turned.png │ ├── saguaro │ │ ├── saguaro_bottom.png │ │ ├── saguaro_fruit.png │ │ ├── saguaro_side.png │ │ └── saguaro_top.png │ ├── sand │ │ └── heat_sand.png │ ├── saplings │ │ └── nether │ │ │ ├── bloodwood_sapling.png │ │ │ ├── darkwood_sapling.png │ │ │ ├── fusewood_sapling.png │ │ │ └── ghostwood_sapling.png │ ├── soil │ │ ├── tainted_farmland_dry.png │ │ ├── tainted_farmland_heated.png │ │ └── tainted_soil.png │ ├── trap_door │ │ ├── nether │ │ │ ├── bloodwood_trap_door.png │ │ │ ├── darkwood_trap_door.png │ │ │ ├── fusewood_trap_door.png │ │ │ └── ghostwood_trap_door.png │ │ └── overworld │ │ │ ├── amaranth_trap_door.png │ │ │ ├── eucalyptus_trap_door.png │ │ │ ├── hopseed_trap_door.png │ │ │ ├── maple_trap_door.png │ │ │ ├── redwood_trap_door.png │ │ │ ├── sakura_trap_door.png │ │ │ ├── silverbell_trap_door.png │ │ │ ├── tiger_trap_door.png │ │ │ └── willow_trap_door.png │ ├── vine │ │ └── thornvine.png │ └── workbenches │ │ ├── nether │ │ ├── bloodwood_workbench_face.png │ │ ├── bloodwood_workbench_side.png │ │ ├── bloodwood_workbench_top.png │ │ ├── darkwood_workbench_face.png │ │ ├── darkwood_workbench_side.png │ │ ├── darkwood_workbench_top.png │ │ ├── fusewood_workbench_face.png │ │ ├── fusewood_workbench_side.png │ │ ├── fusewood_workbench_top.png │ │ ├── ghostwood_workbench_face.png │ │ ├── ghostwood_workbench_side.png │ │ └── ghostwood_workbench_top.png │ │ └── overworld │ │ ├── amaranth_workbench_face.png │ │ ├── amaranth_workbench_side.png │ │ ├── amaranth_workbench_top.png │ │ ├── eucalyptus_workbench_face.png │ │ ├── eucalyptus_workbench_side.png │ │ ├── eucalyptus_workbench_top.png │ │ ├── hopseed_workbench_face.png │ │ ├── hopseed_workbench_side.png │ │ ├── hopseed_workbench_top.png │ │ ├── maple_workbench_face.png │ │ ├── maple_workbench_side.png │ │ ├── maple_workbench_top.png │ │ ├── redwood_workbench_face.png │ │ ├── redwood_workbench_side.png │ │ ├── redwood_workbench_top.png │ │ ├── sakura_workbench_face.png │ │ ├── sakura_workbench_side.png │ │ ├── sakura_workbench_top.png │ │ ├── silverbell_workbench_face.png │ │ ├── silverbell_workbench_side.png │ │ ├── silverbell_workbench_top.png │ │ ├── tiger_workbench_face.png │ │ ├── tiger_workbench_side.png │ │ ├── tiger_workbench_top.png │ │ ├── willow_workbench_face.png │ │ ├── willow_workbench_side.png │ │ └── willow_workbench_top.png │ ├── colormap │ ├── bluegrasscolor.png │ └── orangegrasscolor.png │ ├── entity │ ├── heatscarspider.png │ ├── imp.png │ └── nitrocreeper.png │ └── items │ ├── armor │ ├── imp_armor_boots.png │ ├── imp_armor_chestplate.png │ ├── imp_armor_helmet.png │ └── imp_armor_leggings.png │ ├── bags │ ├── barley_seed_bag.png │ └── cotton_seed_bag.png │ ├── bowls │ ├── empty │ │ ├── bloodwood_bowl.png │ │ ├── darkwood_bowl.png │ │ ├── fusewood_bowl.png │ │ └── ghostwood_bowl.png │ └── stew │ │ ├── stew_glowshroom.png │ │ └── stew_mushroom.png │ ├── doors │ ├── bloodwood_door.png │ ├── darkwood_door.png │ ├── eucalyptus_door.png │ ├── fusewood_door.png │ ├── ghostwood_door.png │ ├── hopseed_door.png │ ├── maple_door.png │ ├── redwood_bark_door.png │ ├── redwood_door.png │ ├── sakura_door.png │ ├── silverbell_door.png │ └── tiger_door.png │ ├── food │ ├── berry_medley.png │ ├── blackberry.png │ ├── blightberry.png │ ├── blueberry.png │ ├── duskberry.png │ ├── impmeat_cooked.png │ ├── impmeat_raw.png │ ├── maloberry.png │ ├── potashapple.png │ ├── raspberry.png │ ├── saguaro_fruit.png │ ├── skyberry.png │ └── stingberry.png │ ├── hopper │ └── blaze_hopper.png │ ├── materials │ ├── flame_string.png │ ├── ghostwood_fletching.png │ ├── imp_leather.png │ └── sulfur_powder.png │ ├── sticks │ ├── amaranth_stick.png │ ├── bloodwood_stick.png │ ├── darkwood_stick.png │ ├── eucalyptus_stick.png │ ├── fusewood_stick.png │ ├── ghostwood_stick.png │ ├── hopseed_stick.png │ ├── maple_stick.png │ ├── redwood_stick.png │ ├── sakura_stick.png │ ├── silverbell_stick.png │ ├── tiger_stick.png │ └── willow_stick.png │ └── weapons │ ├── bow │ ├── bloodwood_bow.png │ ├── bloodwood_bow_pulling_0.png │ ├── bloodwood_bow_pulling_1.png │ ├── bloodwood_bow_pulling_2.png │ ├── darkwood_bow.png │ ├── darkwood_bow_pulling_0.png │ ├── darkwood_bow_pulling_1.png │ ├── darkwood_bow_pulling_2.png │ ├── fusewood_bow.png │ ├── fusewood_bow_pulling_0.png │ ├── fusewood_bow_pulling_1.png │ ├── fusewood_bow_pulling_2.png │ ├── ghostwood_bow.png │ ├── ghostwood_bow_pulling_0.png │ ├── ghostwood_bow_pulling_1.png │ └── ghostwood_bow_pulling_2.png │ ├── flint_and_blaze.png │ ├── hatchet │ ├── bloodwood_hatchet.png │ ├── darkwood_hatchet.png │ ├── fusewood_hatchet.png │ ├── ghostwood_hatchet.png │ └── netherquartz_hatchet.png │ ├── kama │ ├── bloodwood_kama.png │ ├── darkwood_kama.png │ ├── fusewood_kama.png │ ├── ghostwood_kama.png │ └── netherquartz_kama.png │ ├── pickaxe │ ├── bloodwood_pickaxe.png │ ├── darkwood_pickaxe.png │ ├── fusewood_pickaxe.png │ ├── ghostwood_pickaxe.png │ └── netherquartz_pickaxe.png │ ├── shovel │ ├── bloodwood_shovel.png │ ├── darkwood_shovel.png │ ├── fusewood_shovel.png │ ├── ghostwood_shovel.png │ └── netherquartz_shovel.png │ └── sword │ ├── bloodwood_sword.png │ ├── darkwood_sword.png │ ├── fusewood_sword.png │ ├── ghostwood_sword.png │ └── netherquartz_sword.png ├── mcmod.info └── pack.mcmeta /.github/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: SlimeKnights Discord 4 | url: https://discord.gg/njGrvuh 5 | about: Join our discord to discuss new features or to discuss behavior that may not be a bug. -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/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-6.8.1-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /lombok.config: -------------------------------------------------------------------------------- 1 | # This file is generated by the 'io.freefair.lombok' Gradle plugin 2 | config.stopBubbling = true 3 | -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/ingots.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "natura:dried_brick" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/rods.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#forge:rods/stone" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/rods/stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "natura:stone_stick" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/natura/recipes/gadgets/building/dried_clay_slab_stonecutter.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "natura:dried_clay" 5 | }, 6 | "result": "natura:dried_clay_slab", 7 | "count": 2 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/natura/recipes/gadgets/building/dried_clay_stairs_stonecutter.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "natura:dried_clay" 5 | }, 6 | "result": "natura:dried_clay_stairs", 7 | "count": 1 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/natura/tags/blocks/redwood_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "natura:redwood_bark", 5 | "natura:redwood_heart", 6 | "natura:redwood_root" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/natura/tags/items/redwood_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "natura:redwood_bark", 5 | "natura:redwood_heart", 6 | "natura:redwood_root" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package com.progwml6.natura.common; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; 8 | -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package com.progwml6.natura; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; 8 | -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/shared/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package com.progwml6.natura.shared; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; 8 | -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package com.progwml6.natura.world; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/amaranth_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/leaves/amaranth" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/amaranth_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/saplings/amaranth" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/dried_clay.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/dried_clay" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/dried_clay_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/dried_clay_bricks" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/eucalyptus_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/leaves/eucalyptus" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/eucalyptus_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/saplings/eucalyptus" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/hopseed_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/leaves/hopseed" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/hopseed_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/saplings/hopseed" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/maple_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/leaves/maple" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/maple_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/saplings/maple" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/redwood_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/log/redwood_bark" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/redwood_heart.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/log/redwood_heart" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/redwood_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/leaves/redwood" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/redwood_root.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/log/redwood_root" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/redwood_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/saplings/redwood" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/sakura_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/leaves/sakura" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/sakura_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/saplings/sakura" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/silverbell_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/leaves/silverbell" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/silverbell_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/saplings/silverbell" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/stone_torch.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "natura:block/stone_torch" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/tiger_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/leaves/tiger" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/tiger_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/saplings/tiger" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/willow_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/leaves/willow" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/willow_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "natura:block/saplings/willow" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/crops/cotton/stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "natura:block/crops/cotton/stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/crops/cotton/stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "natura:block/crops/cotton/stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/crops/cotton/stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "natura:block/crops/cotton/stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/crops/cotton/stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "natura:block/crops/cotton/stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/crops/cotton/stage4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "natura:block/crops/cotton/stage_4" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/dried_clay.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "natura:block/dried_clay" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/dried_clay_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "natura:block/dried_clay_bricks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/amaranth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/leaves", 3 | "textures": { 4 | "all": "natura:block/leaves/amaranth_leaves" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/eucalyptus.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/leaves", 3 | "textures": { 4 | "all": "natura:block/leaves/eucalyptus_leaves" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/hopseed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/leaves", 3 | "textures": { 4 | "all": "natura:block/leaves/hopseed_leaves" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/maple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/leaves", 3 | "textures": { 4 | "all": "natura:block/leaves/maple_leaves" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/redwood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/leaves", 3 | "textures": { 4 | "all": "natura:block/leaves/redwood_leaves" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/sakura.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/leaves", 3 | "textures": { 4 | "all": "natura:block/leaves/sakura_leaves" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/silverbell.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/leaves", 3 | "textures": { 4 | "all": "natura:block/leaves/silverbell_leaves" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/tiger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/leaves", 3 | "textures": { 4 | "all": "natura:block/leaves/tiger_leaves" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/willow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/leaves", 3 | "textures": { 4 | "all": "natura:block/leaves/willow_leaves" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/amaranth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "natura:block/log/amaranth_log_top", 5 | "side": "natura:block/log/amaranth_log" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/eucalyptus.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "natura:block/log/eucalyptus_log_top", 5 | "side": "natura:block/log/eucalyptus_log" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/hopseed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "natura:block/log/hopseed_log_top", 5 | "side": "natura:block/log/hopseed_log" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/hopseed_horizontal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column_horizontal", 3 | "textures": { 4 | "end": "natura:block/log/hopseed_log_top", 5 | "side": "natura:block/log/hopseed_log" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/maple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "natura:block/log/maple_log_top", 5 | "side": "natura:block/log/maple_log" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/maple_horizontal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column_horizontal", 3 | "textures": { 4 | "end": "natura:block/log/maple_log_top", 5 | "side": "natura:block/log/maple_log" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/redwood_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "natura:block/log/redwood_bark" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/redwood_heart.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "natura:block/log/redwood_heart" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/redwood_root.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "natura:block/log/redwood_root" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/sakura.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "natura:block/log/sakura_log_top", 5 | "side": "natura:block/log/sakura_log" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/sakura_horizontal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column_horizontal", 3 | "textures": { 4 | "end": "natura:block/log/sakura_log_top", 5 | "side": "natura:block/log/sakura_log" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/silverbell.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "natura:block/log/silverbell_log_top", 5 | "side": "natura:block/log/silverbell_log" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/tiger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "natura:block/log/tiger_log_top", 5 | "side": "natura:block/log/tiger_log" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/tiger_horizontal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column_horizontal", 3 | "textures": { 4 | "end": "natura:block/log/tiger_log_top", 5 | "side": "natura:block/log/tiger_log" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/willow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "natura:block/log/willow_log_top", 5 | "side": "natura:block/log/willow_log" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/willow_horizontal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column_horizontal", 3 | "textures": { 4 | "end": "natura:block/log/willow_log_top", 5 | "side": "natura:block/log/willow_log" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/punji/stick_east.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/punji/stick", 3 | "transform": { "translation": [ 0.5, 0, 0 ] } 4 | } 5 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/punji/stick_north.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/punji/stick", 3 | "transform": { "translation": [ 0, 0, -0.5 ] } 4 | } 5 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/punji/stick_northeast.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/punji/stick", 3 | "transform": { "translation": [ 0.5, 0, -0.5 ] } 4 | } 5 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/punji/stick_northwest.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/punji/stick", 3 | "transform": { "translation": [ -0.5, 0, -0.5 ] } 4 | } 5 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/amaranth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "natura:block/saplings/amaranth_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/eucalyptus.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "natura:block/saplings/eucalyptus_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/hopseed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "natura:block/saplings/hopseed_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/maple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "natura:block/saplings/maple_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/redwood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "natura:block/saplings/redwood_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/sakura.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "natura:block/saplings/sakura_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/silverbell.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "natura:block/saplings/silverbell_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/tiger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "natura:block/saplings/tiger_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/willow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "natura:block/saplings/willow_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/stone_torch.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_torch", 3 | "textures": { 4 | "torch": "natura:block/stone_torch" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/wall_stone_torch.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_torch_wall", 3 | "textures": { 4 | "torch": "natura:block/stone_torch" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/amaranth_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/leaves/amaranth" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/amaranth_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/log/amaranth" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/amaranth_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "natura:block/saplings/amaranth_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/barley.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/materials/barley" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/barley_flour.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/materials/barley_flour" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/beef_jerky.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/food/beef_jerky" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/bone_meal_bag.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/bags/bone_meal_bag" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/cactus_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/food/cactus_juice" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/carrots_seed_bag.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/bags/carrots_seed_bag" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/chicken_jerky.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/food/chicken_jerky" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/clownfish_jerky.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/food/clownfish_jerky" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/cotton.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/materials/cotton" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/cotton_crop.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/seeds/cotton" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/dried_brick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/materials/dried_brick" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/dried_clay.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/dried_clay" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/dried_clay_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/dried_clay_bricks" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/dried_clay_bricks_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/slab/dried_clay_bricks/slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/dried_clay_bricks_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/stairs/dried_clay_bricks/stairs" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/dried_clay_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/slab/dried_clay/slab" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/dried_clay_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/stairs/dried_clay/stairs" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/eucalyptus_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/leaves/eucalyptus" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/eucalyptus_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/log/eucalyptus" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/eucalyptus_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "natura:block/saplings/eucalyptus_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/fish_jerky.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/food/fish_jerky" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/hopseed_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/leaves/hopseed" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/hopseed_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/log/hopseed" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/hopseed_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "natura:block/saplings/hopseed_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/maple_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/leaves/maple" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/maple_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/log/maple" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/maple_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "natura:block/saplings/maple_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/monster_jerky.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/food/monster_jerky" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/mutton_jerky.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/food/mutton_jerky" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/nether_wart_seed_bag.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/bags/nether_wart_seed_bag" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/pork_jerky.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/food/pork_jerky" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/potatoes_seed_bag.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/bags/potatoes_seed_bag" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/pufferfish_jerky.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/food/pufferfish_jerky" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/punji.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/punji/base" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/rabbit_jerky.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/food/rabbit_jerky" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/redwood_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/log/redwood_bark" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/redwood_heart.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/log/redwood_heart" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/redwood_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/leaves/redwood" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/redwood_root.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/log/redwood_root" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/redwood_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "natura:block/saplings/redwood_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/sakura_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/leaves/sakura" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/sakura_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/log/sakura" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/sakura_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "natura:block/saplings/sakura_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/salmon_jerky.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/food/salmon_jerky" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/silverbell_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/leaves/silverbell" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/silverbell_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/log/silverbell" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/silverbell_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "natura:block/saplings/silverbell_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/stone_ladder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:block/stone_ladder" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/stone_stick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:item/materials/stone_rod" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/stone_torch.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:block/stone_torch" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/tiger_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/leaves/tiger" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/tiger_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/log/tiger" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/tiger_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "natura:block/saplings/tiger_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/wheat_flour.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/materials/wheat_flour" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/wheat_seed_bag.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:item/bags/wheat_seed_bag" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/willow_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/leaves/willow" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/willow_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:block/log/willow" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/willow_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "natura:block/saplings/willow_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/crops/cotton/stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/crops/cotton/stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/crops/cotton/stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/crops/cotton/stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/crops/cotton/stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/crops/cotton/stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/crops/cotton/stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/crops/cotton/stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/crops/cotton/stage_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/crops/cotton/stage_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/dried_clay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/dried_clay.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/dried_clay_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/dried_clay_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/leaves/amaranth_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/leaves/amaranth_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/leaves/eucalyptus_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/leaves/eucalyptus_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/leaves/hopseed_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/leaves/hopseed_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/leaves/maple_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/leaves/maple_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/leaves/redwood_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/leaves/redwood_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/leaves/sakura_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/leaves/sakura_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/leaves/silverbell_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/leaves/silverbell_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/leaves/tiger_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/leaves/tiger_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/leaves/willow_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/leaves/willow_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/amaranth_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/amaranth_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/amaranth_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/amaranth_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/eucalyptus_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/eucalyptus_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/eucalyptus_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/eucalyptus_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/hopseed_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/hopseed_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/hopseed_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/hopseed_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/maple_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/maple_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/maple_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/maple_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/redwood_bark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/redwood_bark.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/redwood_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/redwood_heart.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/redwood_root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/redwood_root.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/sakura_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/sakura_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/sakura_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/sakura_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/silverbell_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/silverbell_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/silverbell_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/silverbell_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/tiger_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/tiger_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/tiger_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/tiger_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/willow_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/willow_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/log/willow_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/log/willow_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/punji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/punji.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/saplings/amaranth_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/saplings/amaranth_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/saplings/eucalyptus_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/saplings/eucalyptus_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/saplings/hopseed_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/saplings/hopseed_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/saplings/maple_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/saplings/maple_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/saplings/redwood_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/saplings/redwood_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/saplings/sakura_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/saplings/sakura_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/saplings/silverbell_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/saplings/silverbell_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/saplings/tiger_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/saplings/tiger_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/saplings/willow_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/saplings/willow_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/stone_ladder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/stone_ladder.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/stone_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/block/stone_torch.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/bags/bone_meal_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/bags/bone_meal_bag.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/bags/carrots_seed_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/bags/carrots_seed_bag.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/bags/nether_wart_seed_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/bags/nether_wart_seed_bag.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/bags/potatoes_seed_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/bags/potatoes_seed_bag.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/bags/wheat_seed_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/bags/wheat_seed_bag.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/food/beef_jerky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/food/beef_jerky.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/food/cactus_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/food/cactus_juice.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/food/chicken_jerky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/food/chicken_jerky.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/food/clownfish_jerky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/food/clownfish_jerky.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/food/fish_jerky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/food/fish_jerky.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/food/monster_jerky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/food/monster_jerky.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/food/mutton_jerky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/food/mutton_jerky.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/food/pork_jerky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/food/pork_jerky.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/food/pufferfish_jerky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/food/pufferfish_jerky.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/food/rabbit_jerky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/food/rabbit_jerky.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/food/salmon_jerky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/food/salmon_jerky.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/materials/barley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/materials/barley.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/materials/barley_flour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/materials/barley_flour.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/materials/cotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/materials/cotton.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/materials/dried_brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/materials/dried_brick.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/materials/stone_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/materials/stone_rod.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/materials/wheat_flour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/materials/wheat_flour.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/seeds/barley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/seeds/barley.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/item/seeds/cotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura/textures/item/seeds/cotton.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_door_bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/door_bottom", 3 | "textures": { 4 | "bottom": "#door_bottom", 5 | "top": "#door_top" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_door_bottom_rh.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/door_bottom_rh", 3 | "textures": { 4 | "bottom": "#door_bottom_rh", 5 | "top": "#door_top_rh" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_door_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/door_top", 3 | "textures": { 4 | "bottom": "#door_bottom", 5 | "top": "#door_top" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_door_top_rh.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/door_top_rh", 3 | "textures": { 4 | "bottom": "#door_bottom_rh", 5 | "top": "#door_top_rh" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/amaranth_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/amaranth_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/amaranth_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/amaranth_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/amaranth_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_gate_closed", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/amaranth_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/amaranth_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/amaranth_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/amaranth_trap_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/trapdoor_bottom", 3 | "textures": { 4 | "texture": "natura:blocks/trap_door/overworld/amaranth_trap_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/blaze_hopper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:items/hopper/blaze_hopper" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/blaze_rail.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/rail/blaze_rail_normal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/blaze_rail_activator.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/rail/blaze_rail_activator" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/blaze_rail_detector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/rail/blaze_rail_detector" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/blaze_rail_golden.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/rail/blaze_rail_golden" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/hatchet/bloodwood_hatchet" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_bow_pulling_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:item/bow", 3 | "textures": { 4 | "layer0": "natura:items/weapons/bow/bloodwood_bow_pulling_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_bow_pulling_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:item/bow", 3 | "textures": { 4 | "layer0": "natura:items/weapons/bow/bloodwood_bow_pulling_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_bow_pulling_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:item/bow", 3 | "textures": { 4 | "layer0": "natura:items/weapons/bow/bloodwood_bow_pulling_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/bloodwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/bloodwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_gate_closed", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/bloodwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_kama.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/kama/bloodwood_kama" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/pickaxe/bloodwood_pickaxe" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/bloodwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/shovel/bloodwood_shovel" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/sword/bloodwood_sword" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_trap_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/trapdoor_bottom", 3 | "textures": { 4 | "texture": "natura:blocks/trap_door/nether/bloodwood_trap_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bluebells_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/flower/bluebells_flowers" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bonemeal_bag.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:items/bags/bonemeal_bag" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/hatchet/darkwood_hatchet" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_bow_pulling_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:item/bow", 3 | "textures": { 4 | "layer0": "natura:items/weapons/bow/darkwood_bow_pulling_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_bow_pulling_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:item/bow", 3 | "textures": { 4 | "layer0": "natura:items/weapons/bow/darkwood_bow_pulling_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_bow_pulling_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:item/bow", 3 | "textures": { 4 | "layer0": "natura:items/weapons/bow/darkwood_bow_pulling_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/darkwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/darkwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_gate_closed", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/darkwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_kama.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/kama/darkwood_kama" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/pickaxe/darkwood_pickaxe" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/darkwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/shovel/darkwood_shovel" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/sword/darkwood_sword" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_trap_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/trapdoor_bottom", 3 | "textures": { 4 | "texture": "natura:blocks/trap_door/nether/darkwood_trap_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/eucalyptus_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/eucalyptus_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/eucalyptus_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/eucalyptus_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/eucalyptus_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_gate_closed", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/eucalyptus_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/eucalyptus_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/eucalyptus_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/eucalyptus_trap_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/trapdoor_bottom", 3 | "textures": { 4 | "texture": "natura:blocks/trap_door/overworld/eucalyptus_trap_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/flint_and_blaze.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:items/weapons/flint_and_blaze" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/hatchet/fusewood_hatchet" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_bow_pulling_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:item/bow", 3 | "textures": { 4 | "layer0": "natura:items/weapons/bow/fusewood_bow_pulling_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_bow_pulling_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:item/bow", 3 | "textures": { 4 | "layer0": "natura:items/weapons/bow/fusewood_bow_pulling_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_bow_pulling_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:item/bow", 3 | "textures": { 4 | "layer0": "natura:items/weapons/bow/fusewood_bow_pulling_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/fusewood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/fusewood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_gate_closed", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/fusewood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_kama.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/kama/fusewood_kama" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/pickaxe/fusewood_pickaxe" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/fusewood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/shovel/fusewood_shovel" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/sword/fusewood_sword" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_trap_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/trapdoor_bottom", 3 | "textures": { 4 | "texture": "natura:blocks/trap_door/nether/fusewood_trap_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/hatchet/ghostwood_hatchet" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_bow_pulling_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:item/bow", 3 | "textures": { 4 | "layer0": "natura:items/weapons/bow/ghostwood_bow_pulling_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_bow_pulling_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:item/bow", 3 | "textures": { 4 | "layer0": "natura:items/weapons/bow/ghostwood_bow_pulling_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_bow_pulling_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "natura:item/bow", 3 | "textures": { 4 | "layer0": "natura:items/weapons/bow/ghostwood_bow_pulling_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/ghostwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/ghostwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_gate_closed", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/ghostwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_kama.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/kama/ghostwood_kama" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/pickaxe/ghostwood_pickaxe" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "natura:blocks/planks/nether/ghostwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/shovel/ghostwood_shovel" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/sword/ghostwood_sword" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_trap_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/trapdoor_bottom", 3 | "textures": { 4 | "texture": "natura:blocks/trap_door/nether/ghostwood_trap_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/hopseed_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/hopseed_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/hopseed_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/hopseed_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/hopseed_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_gate_closed", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/hopseed_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/hopseed_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/hopseed_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/hopseed_trap_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/trapdoor_bottom", 3 | "textures": { 4 | "texture": "natura:blocks/trap_door/overworld/hopseed_trap_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/imp_armor_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:items/armor/imp_armor_boots" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/imp_armor_chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:items/armor/imp_armor_chestplate" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/imp_armor_helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:items/armor/imp_armor_helmet" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/imp_armor_leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:items/armor/imp_armor_leggings" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/maple_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/maple_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/maple_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/maple_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/maple_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_gate_closed", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/maple_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/maple_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/maple_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/maple_trap_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/trapdoor_bottom", 3 | "textures": { 4 | "texture": "natura:blocks/trap_door/overworld/maple_trap_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "blocks/netherrack" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_door_bloodwood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/doors/bloodwood/bloodwood_door_bottom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_door_darkwood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/doors/darkwood/darkwood_door_bottom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_door_fusewood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/doors/fusewood/fusewood_door_bottom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_door_ghostwood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/doors/ghostwood/ghostwood_door_bottom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_glowshroom_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/glowshroom/blue/blue_glowshroom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_glowshroom_green.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/glowshroom/green/green_glowshroom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_glowshroom_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/glowshroom/purple/purple_glowshroom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_lever.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/lever/nether_lever" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "blocks/netherrack" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_sapling_bloodwood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/saplings/nether/bloodwood_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_sapling_darkwood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/saplings/nether/darkwood_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_sapling_fusewood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/saplings/nether/fusewood_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_sapling_ghostwood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/saplings/nether/ghostwood_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_thorn_vine.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/vine/thornvine" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/netherquartz_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/hatchet/netherquartz_hatchet" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/netherquartz_kama.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/kama/netherquartz_kama" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/netherquartz_pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/pickaxe/netherquartz_pickaxe" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/netherquartz_shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/shovel/netherquartz_shovel" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/netherquartz_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "natura:items/weapons/sword/netherquartz_sword" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_door_eucalyptus.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/doors/eucalyptus/eucalyptus_door_bottom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_door_hopseed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/doors/hopseed/hopseed_door_bottom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_door_maple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/doors/maple/maple_door_bottom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_door_redwood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/doors/redwood/normal/redwood_door_bottom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_door_redwood_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/doors/redwood/bark/redwood_bark_door_bottom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_door_sakura.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/doors/sakura/sakura_door_bottom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_door_silverbell.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/doors/silverbell/silverbell_door_bottom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_door_tiger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/doors/tiger/tiger_door_bottom" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_sapling_amaranth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/saplings/overworld/amaranth_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_sapling_eucalyptus.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/saplings/overworld/eucalyptus_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_sapling_hopseed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/saplings/overworld/hopseed_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_sapling_maple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/saplings/overworld/maple_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_sapling_redwood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/saplings/overworld/redwood_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_sapling_sakura.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/saplings/overworld/sakura_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_sapling_silverbell.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/saplings/overworld/silverbell_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_sapling_tiger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/saplings/overworld/tiger_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_sapling_willow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:blocks/saplings/overworld/willow_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/redwood_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/redwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/redwood_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/redwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/redwood_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_gate_closed", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/redwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/redwood_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/redwood_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/redwood_trap_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/trapdoor_bottom", 3 | "textures": { 4 | "texture": "natura:blocks/trap_door/overworld/redwood_trap_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/saguaro_fruit_item.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "natura:items/food/saguaro_fruit" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/sakura_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/sakura_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/sakura_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/sakura_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/sakura_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_gate_closed", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/sakura_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/sakura_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/sakura_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/sakura_trap_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/trapdoor_bottom", 3 | "textures": { 4 | "texture": "natura:blocks/trap_door/overworld/sakura_trap_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/silverbell_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/silverbell_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/silverbell_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/silverbell_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/silverbell_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_gate_closed", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/silverbell_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/silverbell_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/silverbell_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/silverbell_trap_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/trapdoor_bottom", 3 | "textures": { 4 | "texture": "natura:blocks/trap_door/overworld/silverbell_trap_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/tiger_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/tiger_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/tiger_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/tiger_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/tiger_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_gate_closed", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/tiger_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/tiger_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/tiger_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/tiger_trap_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/trapdoor_bottom", 3 | "textures": { 4 | "texture": "natura:blocks/trap_door/overworld/tiger_trap_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/willow_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/willow_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/willow_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_inventory", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/willow_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/willow_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_gate_closed", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/willow_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/willow_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "natura:blocks/planks/overworld/willow_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/willow_trap_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/trapdoor_bottom", 3 | "textures": { 4 | "texture": "natura:blocks/trap_door/overworld/willow_trap_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/armor/imp_armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/armor/imp_armor.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/armor/imp_armor_legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/armor/imp_armor_legs.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/blightberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/blightberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/blightberry_ripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/blightberry_ripe.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/duskberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/duskberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/duskberry_ripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/duskberry_ripe.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/skyberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/skyberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/skyberry_ripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/skyberry_ripe.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/stingberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/stingberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/stingberry_ripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/nether/stingberry_ripe.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/blackberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/blackberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/blackberry_ripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/blackberry_ripe.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/blueberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/blueberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/blueberry_ripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/blueberry_ripe.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/maloberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/maloberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/maloberry_ripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/maloberry_ripe.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/raspberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/raspberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/raspberry_ripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/berrybush/overworld/raspberry_ripe.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/bookshelves/nether/bloodwood_bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/bookshelves/nether/bloodwood_bookshelf.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/bookshelves/nether/darkwood_bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/bookshelves/nether/darkwood_bookshelf.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/bookshelves/nether/fusewood_bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/bookshelves/nether/fusewood_bookshelf.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/bookshelves/nether/ghostwood_bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/bookshelves/nether/ghostwood_bookshelf.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/bookshelves/overworld/amaranth_bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/bookshelves/overworld/amaranth_bookshelf.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/bookshelves/overworld/hopseed_bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/bookshelves/overworld/hopseed_bookshelf.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/bookshelves/overworld/maple_bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/bookshelves/overworld/maple_bookshelf.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/bookshelves/overworld/redwood_bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/bookshelves/overworld/redwood_bookshelf.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/bookshelves/overworld/sakura_bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/bookshelves/overworld/sakura_bookshelf.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/bookshelves/overworld/tiger_bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/bookshelves/overworld/tiger_bookshelf.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/bookshelves/overworld/willow_bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/bookshelves/overworld/willow_bookshelf.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/clouds/ash_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/clouds/ash_cloud.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/clouds/dark_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/clouds/dark_cloud.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/clouds/sulfur_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/clouds/sulfur_cloud.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/clouds/white_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/clouds/white_cloud.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/crops/barley/barley_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/crops/barley/barley_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/crops/barley/barley_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/crops/barley/barley_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/crops/barley/barley_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/crops/barley/barley_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/crops/barley/barley_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/crops/barley/barley_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/amaranth/amaranth_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/amaranth/amaranth_door_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/amaranth/amaranth_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/amaranth/amaranth_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/bloodwood/bloodwood_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/bloodwood/bloodwood_door_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/bloodwood/bloodwood_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/bloodwood/bloodwood_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/darkwood/darkwood_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/darkwood/darkwood_door_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/darkwood/darkwood_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/darkwood/darkwood_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/eucalyptus/eucalyptus_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/eucalyptus/eucalyptus_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/fusewood/fusewood_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/fusewood/fusewood_door_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/fusewood/fusewood_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/fusewood/fusewood_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/ghostwood/ghostwood_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/ghostwood/ghostwood_door_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/ghostwood/ghostwood_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/ghostwood/ghostwood_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/hopseed/hopseed_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/hopseed/hopseed_door_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/hopseed/hopseed_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/hopseed/hopseed_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/maple/maple_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/maple/maple_door_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/maple/maple_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/maple/maple_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/redwood/normal/redwood_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/redwood/normal/redwood_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/sakura/sakura_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/sakura/sakura_door_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/sakura/sakura_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/sakura/sakura_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/silverbell/silverbell_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/silverbell/silverbell_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/tiger/tiger_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/tiger/tiger_door_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/tiger/tiger_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/tiger/tiger_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/willow/willow_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/willow/willow_door_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/doors/willow/willow_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/doors/willow/willow_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/flower/bluebells_flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/flower/bluebells_flowers.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/furnace/netherrack_furnace_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/furnace/netherrack_furnace_off.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/furnace/netherrack_furnace_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/furnace/netherrack_furnace_on.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/furnace/netherrack_furnace_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/furnace/netherrack_furnace_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/furnace/netherrack_furnace_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/furnace/netherrack_furnace_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/glass/glass_heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/glass/glass_heat.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/glass/glass_soul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/glass/glass_soul.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/glowshroom/blue/blue_glowshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/glowshroom/blue/blue_glowshroom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/glowshroom/blue/blue_glowshroom_inside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/glowshroom/blue/blue_glowshroom_inside.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/glowshroom/blue/blue_glowshroom_skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/glowshroom/blue/blue_glowshroom_skin.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/glowshroom/blue/blue_glowshroom_stem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/glowshroom/blue/blue_glowshroom_stem.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/glowshroom/green/green_glowshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/glowshroom/green/green_glowshroom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/glowshroom/green/green_glowshroom_skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/glowshroom/green/green_glowshroom_skin.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/glowshroom/green/green_glowshroom_stem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/glowshroom/green/green_glowshroom_stem.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/glowshroom/purple/purple_glowshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/glowshroom/purple/purple_glowshroom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/grass/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/grass/grass.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/hopper/blaze_hopper_inside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/hopper/blaze_hopper_inside.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/hopper/blaze_hopper_outside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/hopper/blaze_hopper_outside.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/hopper/blaze_hopper_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/hopper/blaze_hopper_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/leaves/nether/bloodwood_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/leaves/nether/bloodwood_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/leaves/nether/darkwood_fruit_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/leaves/nether/darkwood_fruit_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/leaves/nether/darkwood_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/leaves/nether/darkwood_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/leaves/nether/fusewood_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/leaves/nether/fusewood_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/leaves/nether/ghostwood_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/leaves/nether/ghostwood_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/lever/nether_lever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/lever/nether_lever.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_bark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_bark.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_heart_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_heart_small.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_lower_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_lower_left.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_lower_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_lower_right.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_side_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_side_left.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_side_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_side_right.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_upper_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_upper_left.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_upper_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/logs/nether/bloodwood_upper_right.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/logs/nether/darkwood_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/logs/nether/darkwood_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/logs/nether/darkwood_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/logs/nether/darkwood_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/logs/nether/fusewood_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/logs/nether/fusewood_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/logs/nether/fusewood_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/logs/nether/fusewood_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/logs/nether/ghostwood_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/logs/nether/ghostwood_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/logs/nether/ghostwood_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/logs/nether/ghostwood_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/obelisk/obelisk_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/obelisk/obelisk_active.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/obelisk/obelisk_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/obelisk/obelisk_inactive.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/planks/nether/bloodwood_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/planks/nether/bloodwood_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/planks/nether/darkwood_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/planks/nether/darkwood_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/planks/nether/fusewood_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/planks/nether/fusewood_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/planks/nether/ghostwood_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/planks/nether/ghostwood_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/planks/overworld/amaranth_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/planks/overworld/amaranth_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/planks/overworld/eucalyptus_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/planks/overworld/eucalyptus_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/planks/overworld/hopseed_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/planks/overworld/hopseed_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/planks/overworld/maple_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/planks/overworld/maple_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/planks/overworld/redwood_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/planks/overworld/redwood_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/planks/overworld/sakura_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/planks/overworld/sakura_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/planks/overworld/silverbell_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/planks/overworld/silverbell_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/planks/overworld/tiger_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/planks/overworld/tiger_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/planks/overworld/willow_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/planks/overworld/willow_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_activator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_activator.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_activator_powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_activator_powered.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_detector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_detector.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_detector_powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_detector_powered.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_golden.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_golden_powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_golden_powered.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_normal.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_normal_turned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/rail/blaze_rail_normal_turned.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/saguaro/saguaro_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/saguaro/saguaro_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/saguaro/saguaro_fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/saguaro/saguaro_fruit.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/saguaro/saguaro_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/saguaro/saguaro_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/saguaro/saguaro_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/saguaro/saguaro_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/sand/heat_sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/sand/heat_sand.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/saplings/nether/bloodwood_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/saplings/nether/bloodwood_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/saplings/nether/darkwood_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/saplings/nether/darkwood_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/saplings/nether/fusewood_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/saplings/nether/fusewood_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/saplings/nether/ghostwood_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/saplings/nether/ghostwood_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/soil/tainted_farmland_dry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/soil/tainted_farmland_dry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/soil/tainted_farmland_heated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/soil/tainted_farmland_heated.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/soil/tainted_soil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/soil/tainted_soil.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/trap_door/nether/bloodwood_trap_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/trap_door/nether/bloodwood_trap_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/trap_door/nether/darkwood_trap_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/trap_door/nether/darkwood_trap_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/trap_door/nether/fusewood_trap_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/trap_door/nether/fusewood_trap_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/trap_door/nether/ghostwood_trap_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/trap_door/nether/ghostwood_trap_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/trap_door/overworld/amaranth_trap_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/trap_door/overworld/amaranth_trap_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/trap_door/overworld/hopseed_trap_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/trap_door/overworld/hopseed_trap_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/trap_door/overworld/maple_trap_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/trap_door/overworld/maple_trap_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/trap_door/overworld/redwood_trap_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/trap_door/overworld/redwood_trap_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/trap_door/overworld/sakura_trap_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/trap_door/overworld/sakura_trap_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/trap_door/overworld/tiger_trap_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/trap_door/overworld/tiger_trap_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/trap_door/overworld/willow_trap_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/trap_door/overworld/willow_trap_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/vine/thornvine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/blocks/vine/thornvine.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/colormap/bluegrasscolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/colormap/bluegrasscolor.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/colormap/orangegrasscolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/colormap/orangegrasscolor.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/entity/heatscarspider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/entity/heatscarspider.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/entity/imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/entity/imp.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/entity/nitrocreeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/entity/nitrocreeper.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/armor/imp_armor_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/armor/imp_armor_boots.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/armor/imp_armor_chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/armor/imp_armor_chestplate.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/armor/imp_armor_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/armor/imp_armor_helmet.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/armor/imp_armor_leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/armor/imp_armor_leggings.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/bags/barley_seed_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/bags/barley_seed_bag.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/bags/cotton_seed_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/bags/cotton_seed_bag.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/bowls/empty/bloodwood_bowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/bowls/empty/bloodwood_bowl.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/bowls/empty/darkwood_bowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/bowls/empty/darkwood_bowl.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/bowls/empty/fusewood_bowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/bowls/empty/fusewood_bowl.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/bowls/empty/ghostwood_bowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/bowls/empty/ghostwood_bowl.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/bowls/stew/stew_glowshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/bowls/stew/stew_glowshroom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/bowls/stew/stew_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/bowls/stew/stew_mushroom.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/bloodwood_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/doors/bloodwood_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/darkwood_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/doors/darkwood_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/eucalyptus_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/doors/eucalyptus_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/fusewood_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/doors/fusewood_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/ghostwood_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/doors/ghostwood_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/hopseed_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/doors/hopseed_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/maple_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/doors/maple_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/redwood_bark_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/doors/redwood_bark_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/redwood_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/doors/redwood_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/sakura_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/doors/sakura_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/silverbell_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/doors/silverbell_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/tiger_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/doors/tiger_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/berry_medley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/food/berry_medley.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/blackberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/food/blackberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/blightberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/food/blightberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/blueberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/food/blueberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/duskberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/food/duskberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/impmeat_cooked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/food/impmeat_cooked.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/impmeat_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/food/impmeat_raw.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/maloberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/food/maloberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/potashapple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/food/potashapple.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/raspberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/food/raspberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/saguaro_fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/food/saguaro_fruit.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/skyberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/food/skyberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/stingberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/food/stingberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/hopper/blaze_hopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/hopper/blaze_hopper.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/materials/flame_string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/materials/flame_string.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/materials/ghostwood_fletching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/materials/ghostwood_fletching.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/materials/imp_leather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/materials/imp_leather.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/materials/sulfur_powder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/materials/sulfur_powder.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/sticks/amaranth_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/sticks/amaranth_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/sticks/bloodwood_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/sticks/bloodwood_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/sticks/darkwood_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/sticks/darkwood_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/sticks/eucalyptus_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/sticks/eucalyptus_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/sticks/fusewood_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/sticks/fusewood_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/sticks/ghostwood_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/sticks/ghostwood_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/sticks/hopseed_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/sticks/hopseed_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/sticks/maple_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/sticks/maple_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/sticks/redwood_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/sticks/redwood_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/sticks/sakura_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/sticks/sakura_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/sticks/silverbell_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/sticks/silverbell_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/sticks/tiger_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/sticks/tiger_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/sticks/willow_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/sticks/willow_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/bloodwood_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/bloodwood_bow.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/bloodwood_bow_pulling_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/bloodwood_bow_pulling_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/bloodwood_bow_pulling_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/bloodwood_bow_pulling_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/bloodwood_bow_pulling_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/bloodwood_bow_pulling_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/darkwood_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/darkwood_bow.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/darkwood_bow_pulling_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/darkwood_bow_pulling_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/darkwood_bow_pulling_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/darkwood_bow_pulling_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/darkwood_bow_pulling_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/darkwood_bow_pulling_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/fusewood_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/fusewood_bow.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/fusewood_bow_pulling_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/fusewood_bow_pulling_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/fusewood_bow_pulling_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/fusewood_bow_pulling_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/fusewood_bow_pulling_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/fusewood_bow_pulling_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/ghostwood_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/ghostwood_bow.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/ghostwood_bow_pulling_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/ghostwood_bow_pulling_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/ghostwood_bow_pulling_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/ghostwood_bow_pulling_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/bow/ghostwood_bow_pulling_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/bow/ghostwood_bow_pulling_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/flint_and_blaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/flint_and_blaze.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/hatchet/bloodwood_hatchet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/hatchet/bloodwood_hatchet.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/hatchet/darkwood_hatchet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/hatchet/darkwood_hatchet.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/hatchet/fusewood_hatchet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/hatchet/fusewood_hatchet.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/hatchet/ghostwood_hatchet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/hatchet/ghostwood_hatchet.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/hatchet/netherquartz_hatchet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/hatchet/netherquartz_hatchet.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/kama/bloodwood_kama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/kama/bloodwood_kama.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/kama/darkwood_kama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/kama/darkwood_kama.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/kama/fusewood_kama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/kama/fusewood_kama.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/kama/ghostwood_kama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/kama/ghostwood_kama.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/kama/netherquartz_kama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/kama/netherquartz_kama.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/pickaxe/bloodwood_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/pickaxe/bloodwood_pickaxe.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/pickaxe/darkwood_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/pickaxe/darkwood_pickaxe.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/pickaxe/fusewood_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/pickaxe/fusewood_pickaxe.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/pickaxe/ghostwood_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/pickaxe/ghostwood_pickaxe.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/pickaxe/netherquartz_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/pickaxe/netherquartz_pickaxe.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/shovel/bloodwood_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/shovel/bloodwood_shovel.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/shovel/darkwood_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/shovel/darkwood_shovel.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/shovel/fusewood_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/shovel/fusewood_shovel.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/shovel/ghostwood_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/shovel/ghostwood_shovel.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/shovel/netherquartz_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/shovel/netherquartz_shovel.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/sword/bloodwood_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/sword/bloodwood_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/sword/darkwood_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/sword/darkwood_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/sword/fusewood_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/sword/fusewood_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/sword/ghostwood_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/sword/ghostwood_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/weapons/sword/netherquartz_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/8310ad049b34ea955653eebe106b8051608e44c4/src/main/resources/assets/natura_old/textures/items/weapons/sword/netherquartz_sword.png -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Natura Resources", 4 | "pack_format": 5, 5 | "_comment": "A pack_format of 5 requires json lang files. Note: we require v5 pack meta for all mods." 6 | } 7 | } 8 | --------------------------------------------------------------------------------