├── .editorconfig ├── .gitattributes ├── .github ├── 1-16-issue-report.md └── config.yml ├── .gitignore ├── Jenkinsfile ├── LICENSE.md ├── README.md ├── 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 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/1-16-issue-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/.github/1-16-issue-report.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/gradlew.bat -------------------------------------------------------------------------------- /lombok.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/lombok.config -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/forge/tags/items/ingots.json -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/rods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/forge/tags/items/rods.json -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/rods/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/forge/tags/items/rods/stone.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/minecraft/tags/blocks/leaves.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/minecraft/tags/blocks/logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/saplings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/minecraft/tags/blocks/saplings.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/minecraft/tags/items/leaves.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/minecraft/tags/items/logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/saplings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/minecraft/tags/items/saplings.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/amaranth_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/amaranth_leaves.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/amaranth_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/amaranth_log.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/amaranth_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/amaranth_sapling.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/cotton_crop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/cotton_crop.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/dried_clay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/dried_clay.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/dried_clay_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/dried_clay_slab.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/eucalyptus_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/eucalyptus_log.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/hopseed_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/hopseed_leaves.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/hopseed_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/hopseed_log.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/hopseed_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/hopseed_sapling.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/maple_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/maple_leaves.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/maple_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/maple_log.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/maple_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/maple_sapling.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/punji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/punji.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/redwood_bark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/redwood_bark.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/redwood_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/redwood_heart.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/redwood_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/redwood_leaves.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/redwood_root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/redwood_root.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/redwood_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/redwood_sapling.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/sakura_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/sakura_leaves.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/sakura_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/sakura_log.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/sakura_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/sakura_sapling.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/silverbell_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/silverbell_log.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/stone_ladder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/stone_ladder.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/stone_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/stone_torch.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/tiger_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/tiger_leaves.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/tiger_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/tiger_log.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/tiger_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/tiger_sapling.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/wall_stone_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/wall_stone_torch.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/willow_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/willow_leaves.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/willow_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/willow_log.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/loot_tables/blocks/willow_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/loot_tables/blocks/willow_sapling.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/recipes/common/food/cactus_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/recipes/common/food/cactus_juice.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/recipes/common/water_bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/recipes/common/water_bucket.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/recipes/gadgets/punji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/recipes/gadgets/punji.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/recipes/gadgets/stone/stone_ladder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/recipes/gadgets/stone/stone_ladder.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/recipes/gadgets/stone/stone_stick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/recipes/gadgets/stone/stone_stick.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/recipes/gadgets/stone/stone_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/recipes/gadgets/stone/stone_torch.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/tags/blocks/redwood_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/tags/blocks/redwood_logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/natura/tags/items/redwood_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/generated/resources/data/natura/tags/items/redwood_logs.json -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/Natura.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/Natura.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/ClientEventBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/common/ClientEventBase.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/NaturaModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/common/NaturaModule.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/NaturaTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/common/NaturaTags.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/config/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/common/config/Config.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/config/value/CachedBoolean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/common/config/value/CachedBoolean.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/config/value/CachedInteger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/common/config/value/CachedInteger.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/config/value/CachedValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/common/config/value/CachedValue.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/data/BaseRecipeProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/common/data/BaseRecipeProvider.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/data/loot/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/common/data/loot/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/data/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/common/data/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/data/tags/BlockTagProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/common/data/tags/BlockTagProvider.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/data/tags/ItemTagProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/common/data/tags/ItemTagProvider.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/data/tags/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/common/data/tags/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/common/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/common/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/gadgets/GadgetClientEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/gadgets/GadgetClientEvents.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/gadgets/NaturaGadgets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/gadgets/NaturaGadgets.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/gadgets/block/PunjiBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/gadgets/block/PunjiBlock.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/gadgets/block/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/gadgets/block/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/gadgets/data/GadgetRecipeProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/gadgets/data/GadgetRecipeProvider.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/gadgets/data/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/gadgets/data/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/gadgets/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/gadgets/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/library/data/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/library/data/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/library/data/recipe/IRecipeHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/library/data/recipe/IRecipeHelper.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/library/data/recipe/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/library/data/recipe/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/library/item/BlockNamedTooltipItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/library/item/BlockNamedTooltipItem.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/library/item/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/library/item/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/library/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/library/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/library/utils/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/library/utils/Util.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/library/utils/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/library/utils/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/shared/NaturaCommons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/shared/NaturaCommons.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/shared/NaturaFood.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/shared/NaturaFood.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/shared/data/CommonRecipeProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/shared/data/CommonRecipeProvider.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/shared/data/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/shared/data/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/shared/item/BoneMealBagItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/shared/item/BoneMealBagItem.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/shared/item/SeedBagItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/shared/item/SeedBagItem.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/shared/item/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/shared/item/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/shared/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/shared/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/NaturaStructures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/NaturaStructures.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/NaturaWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/NaturaWorld.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/WorldClientEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/WorldClientEvents.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/WorldEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/WorldEvents.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/block/OverworldLeavesBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/block/OverworldLeavesBlock.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/block/PlankType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/block/PlankType.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/block/RedwoodLeavesBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/block/RedwoodLeavesBlock.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/block/RedwoodType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/block/RedwoodType.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/block/TreeType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/block/TreeType.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/block/crops/BarleyCropBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/block/crops/BarleyCropBlock.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/block/crops/CottonCropBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/block/crops/CottonCropBlock.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/block/crops/OverworldCropsBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/block/crops/OverworldCropsBlock.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/block/crops/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/block/crops/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/block/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/block/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/client/LeavesColorizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/client/LeavesColorizer.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/client/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/client/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/config/FeatureType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/config/FeatureType.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/data/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/data/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/worldgen/berry/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/worldgen/berry/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/worldgen/helper/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/worldgen/helper/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/worldgen/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/worldgen/package-info.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/worldgen/trees/OverworldTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/worldgen/trees/OverworldTree.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/worldgen/trees/RedwoodTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/worldgen/trees/RedwoodTree.java -------------------------------------------------------------------------------- /src/main/java/com/progwml6/natura/world/worldgen/trees/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/java/com/progwml6/natura/world/worldgen/trees/package-info.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/amaranth_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/amaranth_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/amaranth_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/amaranth_log.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/amaranth_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/amaranth_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/cotton_crop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/cotton_crop.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/dried_clay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/dried_clay.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/dried_clay_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/dried_clay_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/dried_clay_bricks_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/dried_clay_bricks_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/dried_clay_bricks_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/dried_clay_bricks_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/dried_clay_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/dried_clay_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/dried_clay_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/dried_clay_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/eucalyptus_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/eucalyptus_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/eucalyptus_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/eucalyptus_log.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/eucalyptus_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/eucalyptus_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/hopseed_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/hopseed_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/hopseed_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/hopseed_log.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/hopseed_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/hopseed_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/maple_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/maple_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/maple_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/maple_log.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/maple_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/maple_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/punji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/punji.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/redwood_bark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/redwood_bark.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/redwood_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/redwood_heart.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/redwood_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/redwood_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/redwood_root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/redwood_root.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/redwood_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/redwood_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/sakura_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/sakura_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/sakura_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/sakura_log.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/sakura_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/sakura_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/silverbell_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/silverbell_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/silverbell_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/silverbell_log.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/silverbell_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/silverbell_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/stone_ladder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/stone_ladder.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/stone_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/stone_torch.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/tiger_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/tiger_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/tiger_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/tiger_log.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/tiger_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/tiger_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/wall_stone_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/wall_stone_torch.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/willow_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/willow_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/willow_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/willow_log.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/blockstates/willow_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/blockstates/willow_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/crops/cotton/stage0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/crops/cotton/stage0.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/crops/cotton/stage1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/crops/cotton/stage1.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/crops/cotton/stage2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/crops/cotton/stage2.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/crops/cotton/stage3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/crops/cotton/stage3.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/crops/cotton/stage4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/crops/cotton/stage4.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/dried_clay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/dried_clay.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/dried_clay_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/dried_clay_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/amaranth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/leaves/amaranth.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/eucalyptus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/leaves/eucalyptus.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/hopseed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/leaves/hopseed.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/maple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/leaves/maple.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/redwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/leaves/redwood.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/sakura.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/leaves/sakura.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/silverbell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/leaves/silverbell.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/tiger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/leaves/tiger.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/leaves/willow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/leaves/willow.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/amaranth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/amaranth.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/amaranth_horizontal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/amaranth_horizontal.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/eucalyptus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/eucalyptus.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/eucalyptus_horizontal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/eucalyptus_horizontal.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/hopseed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/hopseed.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/hopseed_horizontal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/hopseed_horizontal.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/maple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/maple.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/maple_horizontal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/maple_horizontal.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/redwood_bark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/redwood_bark.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/redwood_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/redwood_heart.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/redwood_root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/redwood_root.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/sakura.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/sakura.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/sakura_horizontal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/sakura_horizontal.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/silverbell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/silverbell.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/silverbell_horizontal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/silverbell_horizontal.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/tiger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/tiger.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/tiger_horizontal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/tiger_horizontal.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/willow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/willow.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/log/willow_horizontal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/log/willow_horizontal.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/punji/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/punji/base.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/punji/stick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/punji/stick.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/punji/stick_east.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/punji/stick_east.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/punji/stick_north.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/punji/stick_north.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/punji/stick_northeast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/punji/stick_northeast.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/punji/stick_northwest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/punji/stick_northwest.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/amaranth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/saplings/amaranth.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/eucalyptus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/saplings/eucalyptus.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/hopseed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/saplings/hopseed.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/maple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/saplings/maple.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/redwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/saplings/redwood.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/sakura.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/saplings/sakura.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/silverbell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/saplings/silverbell.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/tiger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/saplings/tiger.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/saplings/willow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/saplings/willow.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/slab/dried_clay/slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/slab/dried_clay/slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/slab/dried_clay/slab_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/slab/dried_clay/slab_top.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/stairs/dried_clay/stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/stairs/dried_clay/stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/stone_ladder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/stone_ladder.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/stone_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/stone_torch.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/block/wall_stone_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/block/wall_stone_torch.json -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/amaranth_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/barley.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/barley.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/barley_flour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/barley_flour.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/beef_jerky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/beef_jerky.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/bone_meal_bag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/bone_meal_bag.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/cactus_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/cactus_juice.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/carrots_seed_bag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/carrots_seed_bag.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/chicken_jerky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/chicken_jerky.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/clownfish_jerky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/clownfish_jerky.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/cotton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/cotton.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/cotton_crop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/cotton_crop.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/dried_brick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/dried_brick.json -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/dried_clay_bricks_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/dried_clay_bricks_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/dried_clay_bricks_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/dried_clay_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/dried_clay_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/dried_clay_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/dried_clay_stairs.json -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/eucalyptus_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/fish_jerky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/fish_jerky.json -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/hopseed_sapling.json -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/maple_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/monster_jerky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/monster_jerky.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/mutton_jerky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/mutton_jerky.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/nether_wart_seed_bag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/nether_wart_seed_bag.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/pork_jerky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/pork_jerky.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/potatoes_seed_bag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/potatoes_seed_bag.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/pufferfish_jerky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/pufferfish_jerky.json -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/rabbit_jerky.json -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/redwood_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/sakura_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/sakura_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/sakura_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/sakura_log.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/sakura_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/sakura_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/salmon_jerky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/salmon_jerky.json -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/silverbell_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/stone_ladder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/stone_ladder.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/stone_stick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/stone_stick.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/stone_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/stone_torch.json -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/tiger_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/wheat_flour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/wheat_flour.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/models/item/wheat_seed_bag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/wheat_seed_bag.json -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura/models/item/willow_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/crops/cotton/stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/src/main/resources/assets/natura/textures/block/punji.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/saplings/hopseed_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/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/HEAD/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/HEAD/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/HEAD/src/main/resources/assets/natura/textures/block/saplings/sakura_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura/textures/block/saplings/tiger_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/src/main/resources/assets/natura/textures/item/seeds/cotton.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/amaranth_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/amaranth_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/amaranth_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/amaranth_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/amaranth_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/amaranth_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/amaranth_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/amaranth_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/barley_crop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/barley_crop.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/blaze_hopper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/blaze_hopper.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/blaze_rail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/blaze_rail.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/blaze_rail_activator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/blaze_rail_activator.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/blaze_rail_detector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/blaze_rail_detector.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/blaze_rail_golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/blaze_rail_golden.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/bloodwood_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/bloodwood_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/bloodwood_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/bloodwood_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/bloodwood_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/bloodwood_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/bloodwood_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/bloodwood_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/bluebells_flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/bluebells_flower.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/clouds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/clouds.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/colored_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/colored_grass.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/colored_grass_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/colored_grass_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/darkwood_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/darkwood_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/darkwood_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/darkwood_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/darkwood_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/darkwood_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/darkwood_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/darkwood_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/edibles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/edibles.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/empty_bowls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/empty_bowls.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/eucalyptus_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/eucalyptus_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/eucalyptus_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/eucalyptus_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/eucalyptus_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/eucalyptus_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/eucalyptus_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/eucalyptus_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/fusewood_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/fusewood_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/fusewood_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/fusewood_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/fusewood_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/fusewood_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/fusewood_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/fusewood_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/ghostwood_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/ghostwood_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/ghostwood_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/ghostwood_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/ghostwood_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/ghostwood_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/ghostwood_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/ghostwood_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/hopseed_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/hopseed_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/hopseed_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/hopseed_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/hopseed_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/hopseed_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/hopseed_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/hopseed_pressure_plate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/hopseed_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/hopseed_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/lit_netherrack_furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/lit_netherrack_furnace.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/logs.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/maple_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/maple_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/maple_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/maple_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/maple_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/maple_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/maple_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/maple_pressure_plate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/maple_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/maple_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/materials.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_bookshelves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_bookshelves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_door_bloodwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_door_bloodwood.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_door_darkwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_door_darkwood.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_door_fusewood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_door_fusewood.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_door_ghostwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_door_ghostwood.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_doors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_doors.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_glass.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_glowshroom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_glowshroom.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_heat_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_heat_sand.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_leaves2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_leaves2.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_lever.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_lever.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_logs.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_logs2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_logs2.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_planks.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_pressure_plate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_sapling2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_sapling2.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_stairs_darkwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_stairs_darkwood.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_stairs_fusewood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_stairs_fusewood.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_tainted_soil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_tainted_soil.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_thorn_vine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_thorn_vine.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/nether_workbenches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/nether_workbenches.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/netherrack_furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/netherrack_furnace.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_bookshelves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_bookshelves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_door_hopseed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_door_hopseed.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_door_maple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_door_maple.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_door_redwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_door_redwood.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_door_sakura.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_door_sakura.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_door_tiger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_door_tiger.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_doors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_doors.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_leaves2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_leaves2.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_logs.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_logs2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_logs2.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_planks.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_sapling2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_sapling2.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_seed_bags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_seed_bags.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_seeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_seeds.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_slab2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_slab2.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_stairs_maple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_stairs_maple.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_stairs_tiger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_stairs_tiger.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/overworld_workbenches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/overworld_workbenches.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/redwood_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/redwood_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/redwood_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/redwood_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/redwood_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/redwood_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/redwood_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/redwood_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/redwood_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/redwood_logs.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/redwood_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/redwood_pressure_plate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/redwood_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/redwood_sapling.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/redwood_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/redwood_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/respawn_obelisk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/respawn_obelisk.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/saguaro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/saguaro.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/saguaro_baby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/saguaro_baby.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/saguaro_fruit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/saguaro_fruit.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/sakura_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/sakura_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/sakura_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/sakura_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/sakura_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/sakura_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/sakura_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/sakura_pressure_plate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/sakura_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/sakura_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/seed_bags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/seed_bags.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/silverbell_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/silverbell_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/silverbell_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/silverbell_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/silverbell_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/silverbell_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/silverbell_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/silverbell_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/soups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/soups.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/sticks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/sticks.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/tiger_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/tiger_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/tiger_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/tiger_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/tiger_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/tiger_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/tiger_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/tiger_pressure_plate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/tiger_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/tiger_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/willow_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/willow_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/willow_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/willow_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/willow_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/willow_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/willow_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/willow_pressure_plate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/blockstates/willow_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/blockstates/willow_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/lang/de_DE.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/lang/de_DE.lang -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/lang/en_UD.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/lang/en_UD.lang -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/lang/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/lang/en_US.lang -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/lang/ja_JP.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/lang/ja_JP.lang -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/lang/ru_RU.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/lang/ru_RU.lang -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/lang/zh_CN.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/lang/zh_CN.lang -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/lang/zh_TW.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/lang/zh_TW.lang -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/loot_tables/entities/imp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/loot_tables/entities/imp.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_bush_large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_bush_large.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_bush_medium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_bush_medium.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_bush_small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_bush_small.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_door_bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_door_bottom.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_door_bottom_rh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_door_bottom_rh.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_door_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_door_top.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_door_top_rh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_door_top_rh.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_grass.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_half_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_half_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_hopper_down.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_hopper_down.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_hopper_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_hopper_side.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_inner_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_inner_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_outer_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_outer_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_saguaro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_saguaro.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_saguaro_baby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_saguaro_baby.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_saguaro_bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_saguaro_bottom.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_saguaro_fruit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_saguaro_fruit.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_saguaro_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_saguaro_side.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_saguaro_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_saguaro_top.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_upper_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_upper_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_vine_north.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_vine_north.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/block/natura_vine_up.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/block/natura_vine_up.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/amaranth_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/amaranth_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/amaranth_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/amaranth_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/amaranth_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/amaranth_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/amaranth_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/amaranth_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/blaze_hopper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/blaze_hopper.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/blaze_rail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/blaze_rail.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/blaze_rail_activator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/blaze_rail_activator.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/blaze_rail_detector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/blaze_rail_detector.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/blaze_rail_golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/blaze_rail_golden.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/bloodwood_axe.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/bloodwood_bow.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/bloodwood_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/bloodwood_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/bloodwood_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_kama.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/bloodwood_kama.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/bloodwood_pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/bloodwood_shovel.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/bloodwood_sword.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bloodwood_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/bloodwood_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bluebells_flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/bluebells_flower.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bonemeal_bag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/bonemeal_bag.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/bow.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/darkwood_axe.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/darkwood_bow.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_bow_pulling_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/darkwood_bow_pulling_0.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_bow_pulling_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/darkwood_bow_pulling_1.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_bow_pulling_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/darkwood_bow_pulling_2.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/darkwood_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/darkwood_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/darkwood_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_kama.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/darkwood_kama.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/darkwood_pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/darkwood_shovel.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/darkwood_sword.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/darkwood_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/darkwood_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/eucalyptus_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/eucalyptus_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/eucalyptus_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/eucalyptus_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/eucalyptus_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/eucalyptus_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/eucalyptus_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/eucalyptus_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/flint_and_blaze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/flint_and_blaze.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/fusewood_axe.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/fusewood_bow.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_bow_pulling_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/fusewood_bow_pulling_0.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_bow_pulling_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/fusewood_bow_pulling_1.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_bow_pulling_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/fusewood_bow_pulling_2.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/fusewood_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/fusewood_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/fusewood_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_kama.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/fusewood_kama.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/fusewood_pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/fusewood_shovel.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/fusewood_sword.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/fusewood_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/fusewood_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/ghostwood_axe.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/ghostwood_bow.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/ghostwood_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/ghostwood_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/ghostwood_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_kama.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/ghostwood_kama.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/ghostwood_pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/ghostwood_shovel.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/ghostwood_sword.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/ghostwood_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/ghostwood_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/hopseed_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/hopseed_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/hopseed_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/hopseed_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/hopseed_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/hopseed_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/hopseed_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/hopseed_pressure_plate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/hopseed_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/hopseed_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/imp_armor_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/imp_armor_boots.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/imp_armor_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/imp_armor_chestplate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/imp_armor_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/imp_armor_helmet.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/imp_armor_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/imp_armor_leggings.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/lit_netherrack_furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/lit_netherrack_furnace.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/maple_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/maple_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/maple_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/maple_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/maple_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/maple_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/maple_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/maple_pressure_plate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/maple_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/maple_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/nether_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_door_bloodwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/nether_door_bloodwood.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_door_darkwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/nether_door_darkwood.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_door_fusewood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/nether_door_fusewood.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_door_ghostwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/nether_door_ghostwood.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_glowshroom_blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/nether_glowshroom_blue.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_lever.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/nether_lever.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/nether_pressure_plate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/nether_thorn_vine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/nether_thorn_vine.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/netherquartz_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/netherquartz_axe.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/netherquartz_kama.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/netherquartz_kama.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/netherquartz_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/netherquartz_pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/netherquartz_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/netherquartz_shovel.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/netherquartz_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/netherquartz_sword.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/netherrack_furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/netherrack_furnace.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_door_hopseed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/overworld_door_hopseed.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_door_maple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/overworld_door_maple.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_door_redwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/overworld_door_redwood.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_door_sakura.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/overworld_door_sakura.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/overworld_door_tiger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/overworld_door_tiger.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/redwood_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/redwood_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/redwood_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/redwood_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/redwood_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/redwood_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/redwood_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/redwood_pressure_plate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/redwood_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/redwood_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/saguaro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/saguaro.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/saguaro_fruit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/saguaro_fruit.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/saguaro_fruit_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/saguaro_fruit_item.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/sakura_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/sakura_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/sakura_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/sakura_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/sakura_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/sakura_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/sakura_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/sakura_pressure_plate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/sakura_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/sakura_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/silverbell_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/silverbell_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/silverbell_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/silverbell_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/tiger_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/tiger_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/tiger_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/tiger_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/tiger_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/tiger_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/tiger_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/tiger_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/willow_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/willow_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/willow_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/willow_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/willow_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/willow_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/models/item/willow_trap_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/models/item/willow_trap_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/_factories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/_factories.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/arrows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/arrows.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/barley_flour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/barley_flour.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/bone_meal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/bone_meal.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/bone_meal_bag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/bone_meal_bag.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/bread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/bread.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/cactus_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/cactus_juice.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/cake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/cake.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/carrots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/carrots.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/carrots_bag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/carrots_bag.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/charcoal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/charcoal.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/glass_bottle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/glass_bottle.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/gunpowder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/gunpowder.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/leather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/leather.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/nether_wart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/nether_wart.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/nether_wart_bag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/nether_wart_bag.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/potatoes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/potatoes.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/potatos_bag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/potatos_bag.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/string.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/sulfur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/sulfur.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/water_bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/water_bucket.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/wheat_flour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/wheat_flour.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/wheat_seed_bag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/wheat_seed_bag.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/wheat_seeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/wheat_seeds.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/common/wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/common/wool.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/nether/blaze_hopper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/nether/blaze_hopper.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/nether/nether_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/nether/nether_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/nether/nether_lever.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/nether/nether_lever.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/nether/rails/blaze_rail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/nether/rails/blaze_rail.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/nether/respawn_obelisk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/nether/respawn_obelisk.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/nether/soul_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/nether/soul_sand.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/overworld/barley_seeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/overworld/barley_seeds.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/overworld/blue_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/overworld/blue_dye.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/recipes/overworld/cotton_seeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/recipes/overworld/cotton_seeds.json -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/armor/imp_armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/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/HEAD/src/main/resources/assets/natura_old/textures/armor/imp_armor_legs.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/clouds/ash_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/textures/blocks/clouds/ash_cloud.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/glass/glass_heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/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/HEAD/src/main/resources/assets/natura_old/textures/blocks/glass/glass_soul.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/grass/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/textures/blocks/grass/grass.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/sand/heat_sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/textures/blocks/sand/heat_sand.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/blocks/vine/thornvine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/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/HEAD/src/main/resources/assets/natura_old/textures/colormap/bluegrasscolor.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/entity/heatscarspider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/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/HEAD/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/HEAD/src/main/resources/assets/natura_old/textures/entity/nitrocreeper.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/maple_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/textures/items/doors/maple_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/sakura_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/assets/natura_old/textures/items/doors/sakura_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/doors/tiger_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/src/main/resources/assets/natura_old/textures/items/food/duskberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/impmeat_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/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/HEAD/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/HEAD/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/HEAD/src/main/resources/assets/natura_old/textures/items/food/raspberry.png -------------------------------------------------------------------------------- /src/main/resources/assets/natura_old/textures/items/food/skyberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/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/HEAD/src/main/resources/assets/natura_old/textures/items/food/stingberry.png -------------------------------------------------------------------------------- /src/main/resources/mcmod.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/mcmod.info -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progwml6/Natura/HEAD/src/main/resources/pack.mcmeta --------------------------------------------------------------------------------