├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main ├── java └── xyz │ └── lynxs │ └── terrarium │ ├── ConfigManager.java │ ├── Terrarium.java │ ├── TerrariumConfig.java │ ├── Util.java │ ├── accessor │ └── TerrariumSurfaceBuilderAccessor.java │ ├── gui │ ├── Slider.java │ └── terrariumCustomizeScreen.java │ ├── mixin │ ├── LevelSelectorMixin.java │ ├── MaterialRuleContextAccessor.java │ ├── RegistryElementCodecAccessor.java │ ├── SurfaceBuilderMixin.java │ └── ThreadedAnvilChunkStorageMixin.java │ ├── preset │ └── presetConfig.java │ └── world │ └── gen │ ├── BiomeProvider.java │ ├── HeightProvider.java │ ├── TerrariumRegistries.java │ ├── biome │ └── TerrariumBiomeSource.java │ └── chunk │ └── TerrariumChunkGenerator.java └── resources ├── assets └── terrarium │ ├── icon.png │ └── lang │ └── en_us.json ├── data ├── minecraft │ ├── tags │ │ └── worldgen │ │ │ └── world_preset │ │ │ └── normal.json │ └── worldgen │ │ └── biome │ │ └── badlands.json ├── terrarium │ ├── dimension_type │ │ └── overworld.json │ └── worldgen │ │ ├── noise_settings │ │ └── terrarium.json │ │ └── world_preset │ │ └── terrarium.json └── wythers │ ├── tags │ ├── block │ │ ├── air_and_plants.json │ │ ├── blue_ice.json │ │ ├── calcite_pools_replaceables.json │ │ ├── cannot_replace_tepui.json │ │ ├── deepslate_ore_replaceables.json │ │ ├── dirt.json │ │ ├── lava_ore_replaceables.json │ │ ├── mud_replaceable.json │ │ ├── river_carver_replaceables.json │ │ ├── spruce_log.json │ │ ├── spruce_stuff.json │ │ ├── stripped_acacia.json │ │ └── tree_branch_replaceable.json │ └── blocks │ │ ├── air_and_plants.json │ │ ├── blue_ice.json │ │ ├── calcite_pools_replaceables.json │ │ ├── cannot_replace_tepui.json │ │ ├── deepslate_ore_replaceables.json │ │ ├── dirt.json │ │ ├── lava_ore_replaceables.json │ │ ├── mud_replaceable.json │ │ ├── river_carver_replaceables.json │ │ ├── spruce_log.json │ │ ├── spruce_stuff.json │ │ ├── stripped_acacia.json │ │ └── tree_branch_replaceable.json │ └── worldgen │ ├── configured_feature │ ├── decor │ │ ├── campfires.json │ │ ├── floating_lantern.json │ │ ├── patch_floating_lanterns.json │ │ ├── scarecrow.json │ │ ├── skulls.json │ │ ├── stone_buttons.json │ │ └── stumps.json │ ├── other │ │ ├── block_pile_stone.json │ │ ├── lake_salt.json │ │ └── stone_forest_rock.json │ ├── palm │ │ ├── branch │ │ │ ├── tall_east.json │ │ │ ├── tall_north.json │ │ │ ├── tall_south.json │ │ │ ├── tall_top.json │ │ │ └── tall_west.json │ │ ├── branch_set │ │ │ └── tall.json │ │ └── tall.json │ ├── terrain │ │ ├── danakil_desert_mounds.json │ │ ├── dripstone_spike_1.json │ │ ├── dripstone_spike_2.json │ │ ├── dripstone_spike_3.json │ │ ├── dripstone_spikes.json │ │ ├── dripstone_spikes_1.json │ │ ├── dripstone_spikes_2.json │ │ ├── dripstone_spikes_3.json │ │ ├── dripstone_spikes_4.json │ │ ├── dripstone_spikes_5.json │ │ ├── terracotta_mound_orange.json │ │ ├── terracotta_mound_red.json │ │ ├── terracotta_mound_yellow.json │ │ ├── tuff_spikes_1.json │ │ ├── tuff_spikes_2.json │ │ ├── tuff_spikes_3.json │ │ ├── tuff_spikes_4.json │ │ └── tuff_spikes_5.json │ └── vegetation │ │ ├── column │ │ ├── bamboo_shoot.json │ │ ├── beets.json │ │ ├── carrots.json │ │ ├── fallen_log │ │ │ ├── birch_east.json │ │ │ ├── birch_north.json │ │ │ ├── birch_south.json │ │ │ ├── birch_west.json │ │ │ ├── dark_oak_east.json │ │ │ ├── dark_oak_north.json │ │ │ ├── dark_oak_south.json │ │ │ ├── dark_oak_west.json │ │ │ ├── oak_east.json │ │ │ ├── oak_north.json │ │ │ ├── oak_south.json │ │ │ ├── oak_west.json │ │ │ ├── spruce_east.json │ │ │ ├── spruce_north.json │ │ │ ├── spruce_south.json │ │ │ ├── spruce_west.json │ │ │ ├── stripped_birch_east.json │ │ │ ├── stripped_birch_north.json │ │ │ ├── stripped_birch_south.json │ │ │ ├── stripped_birch_west.json │ │ │ ├── stripped_dark_oak_east.json │ │ │ ├── stripped_dark_oak_north.json │ │ │ ├── stripped_dark_oak_south.json │ │ │ ├── stripped_dark_oak_west.json │ │ │ ├── stripped_oak_east.json │ │ │ ├── stripped_oak_north.json │ │ │ ├── stripped_oak_south.json │ │ │ ├── stripped_oak_west.json │ │ │ ├── stripped_spruce_east.json │ │ │ ├── stripped_spruce_north.json │ │ │ ├── stripped_spruce_south.json │ │ │ └── stripped_spruce_west.json │ │ ├── fallen_log_birch.json │ │ ├── fallen_log_dark_oak.json │ │ ├── fallen_log_oak.json │ │ ├── fallen_log_spruce.json │ │ ├── fallen_log_stripped_birch.json │ │ ├── fallen_log_stripped_dark_oak.json │ │ ├── fallen_log_stripped_oak.json │ │ ├── fallen_log_stripped_spruce.json │ │ ├── fern_cane.json │ │ ├── floating_vegetation_mat_dripleaf_east.json │ │ ├── floating_vegetation_mat_dripleaf_north.json │ │ ├── floating_vegetation_mat_dripleaf_south.json │ │ ├── floating_vegetation_mat_dripleaf_west.json │ │ ├── floating_vegetation_mat_tall_grass.json │ │ ├── grass.json │ │ ├── hanging_moss.json │ │ ├── mature_wheat.json │ │ ├── melon_and_stem_east.json │ │ ├── melon_and_stem_north.json │ │ ├── melon_and_stem_south.json │ │ ├── melon_and_stem_west.json │ │ ├── melon_stems.json │ │ ├── melons_and_stems.json │ │ ├── mini_dripleaf.json │ │ ├── mix_floating_vegetation_plants.json │ │ ├── mix_thin_jungle_bamboo.json │ │ ├── oasis_bamboo.json │ │ ├── potatoes.json │ │ ├── pumpkin_and_stem_east.json │ │ ├── pumpkin_and_stem_north.json │ │ ├── pumpkin_and_stem_south.json │ │ ├── pumpkin_and_stem_west.json │ │ ├── pumpkin_stem.json │ │ ├── saguaro │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ ├── sapling_bamboo.json │ │ ├── spanish_moss.json │ │ ├── tall_grass.json │ │ └── thin_jungle_bamboo.json │ │ ├── floating_vegetation_plants.json │ │ ├── fungus │ │ ├── bracket_fungus.json │ │ ├── giant_enoki.json │ │ ├── giant_matsutake.json │ │ ├── giant_morel.json │ │ ├── giant_muscaria.json │ │ ├── giant_omphalotus_illudens.json │ │ ├── medium_muscaria.json │ │ ├── patch_enoki.json │ │ └── patch_morel.json │ │ ├── melon_patch.json │ │ ├── other │ │ └── glow_lichen.json │ │ ├── patch_dead_corals_on_gravel.json │ │ ├── patch_pumpkin_farmed.json │ │ ├── patch_roses.json │ │ ├── patch_wheat_farmed.json │ │ ├── saguaro.json │ │ ├── thin_jungle_bamboo_patch.json │ │ └── tree │ │ ├── acacia_forest.json │ │ ├── acacia_plains.json │ │ ├── ancient_azalea.json │ │ ├── ancient_azalea_old.json │ │ ├── ancient_birch.json │ │ ├── ancient_birch_old.json │ │ ├── ancient_dark_oak.json │ │ ├── ancient_dark_oak_old.json │ │ ├── ancient_dead_pale_oak.json │ │ ├── ancient_oak.json │ │ ├── ancient_oak_old.json │ │ ├── ancient_pale_oak.json │ │ ├── aspen.json │ │ ├── azalea_conifer.json │ │ ├── bamboo_jungle.json │ │ ├── bamboo_palm.json │ │ ├── banyan.json │ │ ├── baobab.json │ │ ├── baobab_short.json │ │ ├── bayou.json │ │ ├── bayou_cypress_deep.json │ │ ├── bayou_cypress_middle.json │ │ ├── bayou_cypress_shallow.json │ │ ├── bayou_cypress_surface.json │ │ ├── bayou_cypress_surface_2.json │ │ ├── big_spruce │ │ ├── 1.json │ │ ├── 2.json │ │ ├── 3.json │ │ ├── branch_set │ │ │ └── 1.json │ │ ├── rooted_dirt.json │ │ └── roots │ │ │ ├── 1.json │ │ │ └── 2.json │ │ ├── birch.json │ │ ├── blue_gum_forest.json │ │ ├── brazilwood.json │ │ ├── cold_pine_medium.json │ │ ├── corymbia_aparrerinja.json │ │ ├── ebony.json │ │ ├── eucalyptus_deanei_gray.json │ │ ├── eucalyptus_deanei_white.json │ │ ├── fir_medium.json │ │ ├── fir_tall.json │ │ ├── flowering_azalea_bush.json │ │ ├── flowering_cassia.json │ │ ├── forest_azalea.json │ │ ├── forest_eucalypt_birch.json │ │ ├── forest_eucalyptus.json │ │ ├── forest_oak.json │ │ ├── forest_pine.json │ │ ├── huangshan_pine.json │ │ ├── huge_jungle │ │ ├── 1.json │ │ ├── 2.json │ │ ├── branch_east.json │ │ ├── branch_ne.json │ │ ├── branch_north.json │ │ ├── branch_nw.json │ │ ├── branch_se.json │ │ ├── branch_south.json │ │ ├── branch_sw.json │ │ ├── branch_west.json │ │ ├── extra_leaf.json │ │ ├── rooted_dirt.json │ │ └── roots.json │ │ ├── huge_sequoia │ │ ├── 1.json │ │ ├── 2.json │ │ ├── 3.json │ │ ├── 4.json │ │ ├── 5.json │ │ ├── branch │ │ │ ├── 1_east.json │ │ │ ├── 1_north.json │ │ │ ├── 1_south.json │ │ │ ├── 1_west.json │ │ │ ├── 2_east.json │ │ │ ├── 2_north.json │ │ │ ├── 2_south.json │ │ │ ├── 2_west.json │ │ │ ├── 3_east.json │ │ │ ├── 3_north.json │ │ │ ├── 3_south.json │ │ │ ├── 3_west.json │ │ │ ├── 4_east.json │ │ │ ├── 4_north.json │ │ │ ├── 4_south.json │ │ │ ├── 4_west.json │ │ │ ├── 5_east.json │ │ │ ├── 5_north.json │ │ │ ├── 5_south.json │ │ │ ├── 5_west.json │ │ │ ├── 6_east.json │ │ │ ├── 6_north.json │ │ │ ├── 6_south.json │ │ │ ├── 6_west.json │ │ │ ├── leaves_1_x.json │ │ │ ├── leaves_1_z.json │ │ │ ├── leaves_2_x.json │ │ │ └── leaves_2_z.json │ │ ├── branch_set │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ └── 5.json │ │ ├── dead.json │ │ ├── rooted_dirt │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ └── 3.json │ │ └── roots │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ └── dead.json │ │ ├── huge_spruce │ │ ├── 10.json │ │ ├── 6.json │ │ ├── 7.json │ │ ├── 8.json │ │ ├── 9.json │ │ ├── branch │ │ │ ├── 1_east.json │ │ │ ├── 1_north.json │ │ │ ├── 1_south.json │ │ │ ├── 1_west.json │ │ │ ├── 2_east.json │ │ │ ├── 2_north.json │ │ │ ├── 2_south.json │ │ │ ├── 2_west.json │ │ │ ├── 3_east.json │ │ │ ├── 3_north.json │ │ │ ├── 3_south.json │ │ │ ├── 3_west.json │ │ │ ├── 4_east.json │ │ │ ├── 4_north.json │ │ │ ├── 4_south.json │ │ │ ├── 4_west.json │ │ │ ├── 5_east.json │ │ │ ├── 5_north.json │ │ │ ├── 5_south.json │ │ │ ├── 5_west.json │ │ │ ├── 6_east.json │ │ │ ├── 6_north.json │ │ │ ├── 6_south.json │ │ │ ├── 6_west.json │ │ │ ├── leaves_1_x.json │ │ │ ├── leaves_1_z.json │ │ │ ├── leaves_2_x.json │ │ │ └── leaves_2_z.json │ │ ├── branch_set │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ └── 5.json │ │ ├── dead.json │ │ ├── rooted_dirt │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ └── 3.json │ │ └── roots │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ └── dead.json │ │ ├── humid_tropical_grassland.json │ │ ├── jungle_mangrove.json │ │ ├── jungle_palm.json │ │ ├── kapok.json │ │ ├── mahogany.json │ │ ├── maple_tall.json │ │ ├── marula.json │ │ ├── mediterranean_cypress.json │ │ ├── mega_jungle.json │ │ ├── montane_forest_spruce.json │ │ ├── mpingo.json │ │ ├── oak.json │ │ ├── oak_bush.json │ │ ├── olive.json │ │ ├── pandanus.json │ │ ├── pine.json │ │ ├── ponderosa_pine.json │ │ ├── red_ivorywood.json │ │ ├── rosewood.json │ │ ├── sandalwood.json │ │ ├── sandy_jungle.json │ │ ├── savanna_oak.json │ │ ├── sclerophylous.json │ │ ├── sclerophylous_birch.json │ │ ├── sclerophylous_tall.json │ │ ├── scrub_acacia.json │ │ ├── scrub_azalea.json │ │ ├── scrub_birch.json │ │ ├── scrub_dark_oak.json │ │ ├── scrub_flowering_azalea.json │ │ ├── scrub_jungle.json │ │ ├── scrub_oak.json │ │ ├── scrub_spruce.json │ │ ├── spruce │ │ ├── 1.json │ │ ├── 2.json │ │ ├── 3.json │ │ ├── 4.json │ │ ├── 5.json │ │ ├── branch │ │ │ ├── 1_east.json │ │ │ ├── 1_north.json │ │ │ ├── 1_south.json │ │ │ ├── 1_west.json │ │ │ ├── 2_east.json │ │ │ ├── 2_north.json │ │ │ ├── 2_south.json │ │ │ └── 2_west.json │ │ ├── branch_set │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ └── 4.json │ │ └── rooted_dirt.json │ │ ├── stick_plant.json │ │ ├── stick_plant_small.json │ │ ├── swamp_forest_birch.json │ │ ├── teak.json │ │ ├── tropical_forest.json │ │ ├── tropical_rainforest.json │ │ ├── tundra_bush.json │ │ ├── tundra_spruce.json │ │ ├── young_brazilwood.json │ │ ├── young_kapok.json │ │ └── young_mega_jungle.json │ └── placed_feature │ ├── decor │ ├── badlands.json │ ├── dense_steam.json │ ├── desert.json │ ├── floating_lanterns.json │ ├── floating_lanterns_cherry.json │ └── sparse_steam.json │ ├── farm │ ├── harvest_fields_1.json │ ├── harvest_fields_2.json │ ├── harvest_fields_3.json │ ├── harvest_fields_hay.json │ ├── harvest_fields_hay_2.json │ ├── harvest_fields_pumpkin.json │ ├── harvest_fields_scarecrow.json │ ├── harvest_fields_stumps.json │ ├── harvest_fields_wheat.json │ ├── harvest_fields_wheat_2.json │ ├── paddy_cane.json │ └── paddy_water.json │ ├── ores │ ├── ore_coal_windswept.json │ ├── ore_diamond_volcanic.json │ ├── ore_gold_volcanic.json │ ├── ore_iron_windswept.json │ ├── ore_lava_volcanic.json │ └── ore_redstone_windswept.json │ ├── palm │ ├── coastal_palm_east.json │ ├── coastal_palm_north.json │ ├── coastal_palm_south.json │ └── coastal_palm_west.json │ ├── road │ ├── andesite.json │ ├── bamboo_jungle.json │ ├── bamboo_jungle_old_1.json │ ├── bamboo_jungle_old_2.json │ ├── cherry_grove.json │ ├── harvest_fields_1.json │ ├── harvest_fields_1b.json │ ├── harvest_fields_2.json │ ├── harvest_fields_2b.json │ ├── harvest_fields_3.json │ ├── harvest_fields_4.json │ ├── jungle.json │ ├── sparse_jungle.json │ └── sunflower_plains.json │ ├── terrain │ ├── carver │ │ ├── ocean.json │ │ ├── river.json │ │ └── river_water.json │ ├── extended │ │ ├── badlands_edge.json │ │ ├── badlands_stone_fix.json │ │ ├── base_frozen_peaks.json │ │ ├── base_frozen_peaks_snow.json │ │ ├── base_jungle.json │ │ ├── base_mangrove_swamp_arid.json │ │ ├── base_mangrove_swamp_forest.json │ │ ├── base_mangrove_swamp_jungle.json │ │ ├── base_mangrove_swamp_plains.json │ │ ├── base_mangrove_swamp_savanna.json │ │ ├── base_mangrove_swamp_sparse_jungle.json │ │ ├── base_mangrove_swamp_sudd.json │ │ ├── base_savanna.json │ │ ├── base_taiga.json │ │ ├── base_windswept_gravelly_hills.json │ │ ├── beach_cliffs.json │ │ ├── coarsify_dirt.json │ │ ├── coastal_sand.json │ │ ├── cold_ocean_gravel.json │ │ ├── coral_pools.json │ │ ├── coral_pools_edge.json │ │ ├── dead_coral_stone.json │ │ ├── dead_coral_stone_2.json │ │ ├── desert_edge.json │ │ ├── disk_clay_dirt_only.json │ │ ├── disk_sand.json │ │ ├── dover_cliffs.json │ │ ├── gravelify_packed_mud.json │ │ ├── mangrove_swamp_savanna_filler.json │ │ ├── mudify_rooted_dirt.json │ │ ├── ocean_beach_gravel.json │ │ ├── ocean_beach_sand.json │ │ ├── onsen_calcite.json │ │ ├── onsen_deepslate.json │ │ ├── onsen_pools.json │ │ ├── red_sand.json │ │ ├── red_sandify_rooted_dirt.json │ │ ├── replace_basalt_to_deepslate.json │ │ ├── replace_diorite_and_calcite_to_smooth_sandstone.json │ │ ├── replace_dirt_to_sand.json │ │ ├── replace_gravel_to_mud.json │ │ ├── replace_gravel_to_sand.json │ │ ├── replace_mud_to_sand.json │ │ ├── replace_stone_to_andesite.json │ │ ├── replace_stone_to_diorite.json │ │ ├── replace_stone_to_granite.json │ │ ├── riverside_forest_clearing.json │ │ ├── sandify_rooted_dirt.json │ │ ├── scree.json │ │ ├── scree_spread.json │ │ ├── terracotify_rooted_dirt.json │ │ ├── thermal_savanna_forest_base.json │ │ ├── volcanic_extinction.json │ │ ├── volcanic_fallout.json │ │ ├── volcanic_fallout_ore.json │ │ ├── volcanic_flows.json │ │ ├── volcanic_flows_ore.json │ │ ├── volcanic_jungle_mud_in_basalt.json │ │ ├── volcanic_jungle_muddy_roots_on_basalt.json │ │ ├── volcano_snow_blocks.json │ │ └── windswept_snow.json │ ├── feature │ │ ├── danakil_desert_mounds.json │ │ ├── dripstone_cluster.json │ │ ├── lake_salt.json │ │ ├── mushroom_island_plateau.json │ │ ├── pointed_dripstone.json │ │ ├── spring_lava.json │ │ ├── stone_forest_rock.json │ │ ├── stone_pile.json │ │ ├── tepui.json │ │ ├── tepui_basalt_layer.json │ │ ├── tepui_cavern_dripstone.json │ │ ├── tepui_cavern_dripstone_spikes.json │ │ ├── tepui_cavern_lakes.json │ │ ├── tepui_cavern_moss.json │ │ ├── tepui_caverns.json │ │ ├── tepui_chasms.json │ │ ├── tepui_crystals.json │ │ ├── tepui_falls.json │ │ ├── tepui_filler.json │ │ ├── tepui_geodes.json │ │ ├── tepui_lakes.json │ │ ├── tepui_lowland_for_glacier.json │ │ ├── tepui_surface.json │ │ ├── tepui_terrain.json │ │ ├── tepui_tuff_layer.json │ │ ├── thermal_savanna_block_spikes.json │ │ ├── thermal_savanna_dripstone_spikes.json │ │ ├── thermal_vents_iron.json │ │ ├── thermal_vents_mounds.json │ │ ├── thermal_vents_soul.json │ │ ├── tuff_spikes.json │ │ └── windswept_basalt_columns.json │ └── local │ │ ├── atoll_grass.json │ │ ├── badlands_plateau_red_sand.json │ │ ├── badlands_replace_most_red_sand_to_grass_block.json │ │ ├── badlands_replace_some_red_sand_to_grass_block.json │ │ ├── badlands_snow_blocks.json │ │ ├── base_dark_forest.json │ │ ├── base_grove.json │ │ ├── base_jagged_peaks.json │ │ ├── base_mangrove_swamp.json │ │ ├── base_mangrove_swamp_bayou_hills.json │ │ ├── base_mushroom_fields.json │ │ ├── base_snowy_beach.json │ │ ├── base_wooded_badlands.json │ │ ├── beach_mossy_stone.json │ │ ├── cave_disk_basalt.json │ │ ├── cave_disk_blackstone.json │ │ ├── cave_disk_magma.json │ │ ├── cave_ice.json │ │ ├── cherry_pools.json │ │ ├── cherry_pools_edge.json │ │ ├── crack_ice.json │ │ ├── crimson_patch.json │ │ ├── crust_grass.json │ │ ├── crust_packed_mud.json │ │ ├── crust_salt.json │ │ ├── danakil_mud.json │ │ ├── danakil_orange.json │ │ ├── danakil_red.json │ │ ├── danakil_terracotta.json │ │ ├── danakil_water.json │ │ ├── danakil_yellow.json │ │ ├── danakil_yellow_2.json │ │ ├── de_snowify_stone.json │ │ ├── deepslate_cliffs.json │ │ ├── dirtify_rooted_dirt.json │ │ ├── disk_dead_coral_shore.json │ │ ├── disk_gravel_floor.json │ │ ├── disk_gravel_forest.json │ │ ├── disk_gravel_river.json │ │ ├── disk_gravel_shore.json │ │ ├── disk_moss_in_mossy_cobblestone.json │ │ ├── disk_mossy_cobblestone_in_gravel.json │ │ ├── disk_mud_in_muddy_roots.json │ │ ├── disk_mud_shore.json │ │ ├── disk_mud_shore_jungle.json │ │ ├── disk_mud_swamp.json │ │ ├── disk_muddy_roots_in_podzol.json │ │ ├── disk_packed_mud_shore.json │ │ ├── disk_sand_floor.json │ │ ├── disk_sand_forest.json │ │ ├── disk_sand_shore.json │ │ ├── disk_sand_tropical_shore.json │ │ ├── fungal_basalt_cliffs.json │ │ ├── fungal_coral.json │ │ ├── fungal_coral_2.json │ │ ├── fungal_coral_mycelium.json │ │ ├── fungal_fire_coral_shore.json │ │ ├── fungal_fire_coral_shore_2.json │ │ ├── fungal_moss.json │ │ ├── fungal_mossy_shore.json │ │ ├── fungal_mossy_shore_2.json │ │ ├── fungal_powder.json │ │ ├── fungal_prismarine_shore.json │ │ ├── fungal_savanna_floor.json │ │ ├── fungal_sculk_infection.json │ │ ├── glacial_pools.json │ │ ├── glacial_scree.json │ │ ├── grass_spread.json │ │ ├── grass_spread_badlands.json │ │ ├── grove_cliffs.json │ │ ├── highland_stone_cliffs.json │ │ ├── highland_stone_cliffs_surface.json │ │ ├── ice_spikes_glacial_dirt.json │ │ ├── ice_spikes_glacial_grass.json │ │ ├── ice_spikes_glacial_gravel.json │ │ ├── ice_spikes_glacial_stone.json │ │ ├── ice_spikes_grass.json │ │ ├── mushroom_island_caves.json │ │ ├── mushroom_plateau_cliffs.json │ │ ├── oasis_clay.json │ │ ├── oasis_grass.json │ │ ├── oasis_moss.json │ │ ├── oasis_water.json │ │ ├── ocean_rock.json │ │ ├── pack_ice_snow.json │ │ ├── pamukkale_calcite.json │ │ ├── pamukkale_diorite.json │ │ ├── pamukkale_pools.json │ │ ├── powder_snow.json │ │ ├── red_sand_scree.json │ │ ├── red_sand_spread.json │ │ ├── replace_basalt_to_deepslate.json │ │ ├── replace_basalt_to_tuff.json │ │ ├── replace_calcite_to_stone.json │ │ ├── replace_coarse_dirt_to_moss.json │ │ ├── replace_diorite_to_granite.json │ │ ├── replace_dirt_to_sand.json │ │ ├── replace_granite_to_diorite.json │ │ ├── replace_grass_to_mycelium.json │ │ ├── replace_packed_mud_to_moss.json │ │ ├── replace_sandstone_to_smooth_sandstone.json │ │ ├── replace_stone_to_basalt.json │ │ ├── replace_volcanics_flower_forest.json │ │ ├── river_grass.json │ │ ├── sandy_floor.json │ │ ├── savanna_packed_mud.json │ │ ├── shadow_snow.json │ │ ├── snow_blocks.json │ │ ├── snow_blocks_disk.json │ │ ├── snow_spread.json │ │ ├── snowy_ground.json │ │ ├── snowy_leaves.json │ │ ├── snowy_slopes.json │ │ ├── sparse_jungle_shore.json │ │ ├── stone_cliffs.json │ │ ├── stone_cliffs_plus.json │ │ ├── stone_cliffs_sheer.json │ │ ├── stone_cliffs_surface.json │ │ ├── stony_shore_tuff.json │ │ ├── swamp_pools.json │ │ ├── tepui_cap.json │ │ ├── thermal_savanna_brown.json │ │ ├── thermal_savanna_dirt.json │ │ ├── thermal_savanna_dripstone.json │ │ ├── thermal_savanna_gray.json │ │ ├── thermal_savanna_mud.json │ │ ├── thermal_savanna_soul.json │ │ ├── thermal_steppe_brown.json │ │ ├── thermal_steppe_dirt.json │ │ ├── thermal_steppe_dripstone.json │ │ ├── thermal_steppe_gray.json │ │ ├── thermal_steppe_mud.json │ │ ├── thermal_steppe_soul.json │ │ ├── thermal_taiga_disk_terracotta_orange.json │ │ ├── thermal_taiga_disk_terracotta_white.json │ │ ├── thermal_taiga_disk_terracotta_yellow.json │ │ ├── thermal_taiga_white.json │ │ ├── thermal_vents_floor.json │ │ ├── tsingy_ore_1.json │ │ ├── tsingy_ore_2.json │ │ ├── tsingy_ore_rare_1.json │ │ ├── tsingy_ore_rare_2.json │ │ ├── uluru_cap.json │ │ ├── volcanic_basalt_cliffs.json │ │ ├── volcanic_pools.json │ │ ├── volcanic_resurfacing.json │ │ ├── yellowstone_orange.json │ │ └── yellowstone_white.json │ └── vegetation │ ├── extended │ ├── bushes │ │ ├── birch_forest.json │ │ ├── cold_forest.json │ │ ├── oak_forest.json │ │ └── pine_forest.json │ ├── other │ │ └── mushroom_disks.json │ ├── patch │ │ ├── flower_dry_mediterranean.json │ │ ├── flower_humid_mediterranean.json │ │ ├── flower_meadow.json │ │ ├── sunflower.json │ │ └── tepui_plants.json │ └── trees │ │ ├── ancient_beech_woods.json │ │ ├── ancient_beech_woods_2.json │ │ ├── ancient_spring_woods.json │ │ ├── ancient_spring_woods_2.json │ │ ├── boreal_forest.json │ │ ├── cherry_huangshan_pine_snowy.json │ │ ├── cherry_maple_snowy.json │ │ ├── forest_badlands.json │ │ ├── forest_birch.json │ │ ├── forest_cold.json │ │ ├── giant_taiga_edge.json │ │ ├── giant_taiga_meadow.json │ │ ├── ice_spikes.json │ │ ├── jungle_eucalyptus.json │ │ ├── jungle_volcanic.json │ │ ├── meadow_hillside_woods.json │ │ ├── mediterranean_woods.json │ │ ├── oak_badlands.json │ │ ├── river_acacias.json │ │ ├── river_oaks.json │ │ ├── river_tropical.json │ │ ├── savanna_mediterranean_woods.json │ │ ├── savanna_oaks.json │ │ ├── sclerophyllous_woods.json │ │ ├── windbreak_1.json │ │ └── windbreak_2.json │ └── local │ ├── bushes │ ├── kwongan_heath.json │ ├── mediterranean.json │ ├── taiga.json │ └── tundra.json │ ├── other │ ├── baobab_interior.json │ ├── cocoanuts.json │ ├── coral_disks.json │ ├── coral_reef.json │ ├── creaking_heart.json │ ├── fallen_log_mix_taiga.json │ ├── fungal_blood_woods.json │ ├── fungal_glow.json │ ├── fungal_jungle_groundcover.json │ ├── fungal_jungle_undergrowth.json │ ├── fungal_jungle_vegetation.json │ ├── fungal_moss_sprouts.json │ ├── fungal_powder_spores.json │ ├── fungal_savanna_vegetation.json │ ├── fungal_sculk_growths.json │ ├── fungal_sculk_trees.json │ ├── fungal_sculk_vein.json │ ├── fungal_twisted_kelp.json │ ├── fungal_twisted_reef_vegetation.json │ ├── fungal_vines.json │ ├── fungal_weeping_growths.json │ ├── giant_fungi.json │ ├── pale_lichen.json │ └── white_bracket_fungi.json │ ├── patch │ ├── banyan_vines.json │ ├── berries_badlands.json │ ├── berry_range.json │ ├── crimson_roots.json │ ├── dead_corals_on_gravel.json │ ├── elephant_bamboo_1.json │ ├── elephant_bamboo_2.json │ ├── elephant_bamboo_3.json │ ├── elephant_bamboo_cherry.json │ ├── elephant_grass.json │ ├── fern_cane.json │ ├── fern_montane_forest.json │ ├── floating_vegetation.json │ ├── floating_vegetation_plants.json │ ├── flower_badlands.json │ ├── flower_bluebells.json │ ├── flower_bluebells_2.json │ ├── flower_cherry.json │ ├── flower_forest.json │ ├── flower_mediterranean_lilacs.json │ ├── flower_peony.json │ ├── flower_petals.json │ ├── flower_plains.json │ ├── flower_taiga.json │ ├── flower_tropical_roses.json │ ├── fungal_sea_pickle.json │ ├── fungal_seagrass.json │ ├── grass_and_ferns_range.json │ ├── grass_badlands.json │ ├── grass_beach.json │ ├── grass_desert.json │ ├── grass_forest.json │ ├── grass_savanna.json │ ├── grass_standard.json │ ├── hanging_moss.json │ ├── large_fern_forest.json │ ├── large_fern_taiga.json │ ├── large_ferns_dense_forests.json │ ├── mangrove_swamp_dripleaves.json │ ├── mycelial_grass.json │ ├── oasis_vegetation_moss.json │ ├── pale_moss_vegetation.json │ ├── pale_pumpkin.json │ ├── pineapples.json │ ├── red_coral.json │ ├── red_coral_tall.json │ ├── saguaros.json │ ├── savanna_water_plants.json │ ├── seagrass_wrecks.json │ ├── spanish_moss.json │ ├── sugar_cane_desert.json │ ├── sunflower_birch_forest.json │ ├── tall_grass_savanna.json │ ├── temperate_rainforest_undergrowth.json │ ├── temperate_rainforest_vines.json │ ├── thin_jungle_bamboo.json │ └── waterlily_dense.json │ └── trees │ ├── bamboo_jungle_1.json │ ├── bamboo_jungle_2.json │ ├── bamboo_jungle_3.json │ ├── banyans.json │ ├── cherry.json │ ├── cherry_huangshan_pine.json │ ├── cherry_maple.json │ ├── cherry_pools.json │ ├── dark_forest_1.json │ ├── dark_forest_2.json │ ├── dark_jungle.json │ ├── eucalyptus_badlands.json │ ├── eucalyptus_jungle.json │ ├── eucalyptus_savanna.json │ ├── eucalyptus_woodland.json │ ├── forest_birch.json │ ├── forest_birch_2.json │ ├── forest_birch_grove.json │ ├── forest_eucalyptus.json │ ├── forest_montane.json │ ├── forest_oak.json │ ├── forest_pine.json │ ├── forest_pine_2.json │ ├── forest_tropical.json │ ├── harvest_fields_woods_1.json │ ├── harvest_fields_woods_2.json │ ├── jungle_eucalyptus.json │ ├── jungle_island.json │ ├── jungle_island_bent.json │ ├── jungle_lowland_rainforest.json │ ├── jungle_mangroves.json │ ├── jungle_mega.json │ ├── jungle_midland.json │ ├── jungle_sandy.json │ ├── jungle_upland.json │ ├── mangrove_swamp_bayou.json │ ├── mangrove_swamp_bayou_2.json │ ├── mangrove_swamp_birch.json │ ├── mangrove_swamp_jungle.json │ ├── mangrove_swamp_mangroves.json │ ├── mangrove_swamp_tropical.json │ ├── meadow_woods.json │ ├── oasis_palms.json │ ├── ogt_giant_redwood_woods.json │ ├── ogt_redwood_woods.json │ ├── ogt_sequoia_woods.json │ ├── old_growth_spruce_taiga.json │ ├── pale_garden.json │ ├── pale_moribund.json │ ├── pine_mesa.json │ ├── pink_lapacho.json │ ├── sakura_grove.json │ ├── savanna.json │ ├── savanna_baobabs.json │ ├── savanna_mossy.json │ ├── savanna_rare.json │ ├── savanna_river.json │ ├── savanna_sparse.json │ ├── savanna_woodland.json │ ├── sparse_jungle.json │ ├── spruce_grove.json │ ├── taiga_birch.json │ ├── taiga_cold.json │ ├── taiga_cold_dwarf.json │ ├── taiga_dwarf_spruce.json │ ├── taiga_dwarf_spruce_highlands.json │ ├── taiga_dwarf_spruce_mountains.json │ ├── taiga_pine.json │ ├── taiga_spruce.json │ ├── taiga_spruce_highlands.json │ ├── taiga_spruce_mountains.json │ ├── taiga_thermal_aspen_woods.json │ ├── taiga_thermal_pine_woods.json │ ├── tropical_savanna.json │ ├── tropical_woods.json │ ├── tundra_dwarf_woods.json │ ├── tundra_woods.json │ ├── windswept_savanna_pines.json │ └── windswept_savanna_woods.json ├── fabric.mod.json ├── terrarium.accesswidener └── terrarium.mixins.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/ConfigManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/ConfigManager.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/Terrarium.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/Terrarium.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/TerrariumConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/TerrariumConfig.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/Util.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/accessor/TerrariumSurfaceBuilderAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/accessor/TerrariumSurfaceBuilderAccessor.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/gui/Slider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/gui/Slider.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/gui/terrariumCustomizeScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/gui/terrariumCustomizeScreen.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/mixin/LevelSelectorMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/mixin/LevelSelectorMixin.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/mixin/MaterialRuleContextAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/mixin/MaterialRuleContextAccessor.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/mixin/RegistryElementCodecAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/mixin/RegistryElementCodecAccessor.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/mixin/SurfaceBuilderMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/mixin/SurfaceBuilderMixin.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/mixin/ThreadedAnvilChunkStorageMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/mixin/ThreadedAnvilChunkStorageMixin.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/preset/presetConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/preset/presetConfig.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/world/gen/BiomeProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/world/gen/BiomeProvider.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/world/gen/HeightProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/world/gen/HeightProvider.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/world/gen/TerrariumRegistries.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/world/gen/TerrariumRegistries.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/world/gen/biome/TerrariumBiomeSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/world/gen/biome/TerrariumBiomeSource.java -------------------------------------------------------------------------------- /src/main/java/xyz/lynxs/terrarium/world/gen/chunk/TerrariumChunkGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/java/xyz/lynxs/terrarium/world/gen/chunk/TerrariumChunkGenerator.java -------------------------------------------------------------------------------- /src/main/resources/assets/terrarium/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/assets/terrarium/icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/terrarium/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/assets/terrarium/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/worldgen/world_preset/normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/minecraft/tags/worldgen/world_preset/normal.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/worldgen/biome/badlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/minecraft/worldgen/biome/badlands.json -------------------------------------------------------------------------------- /src/main/resources/data/terrarium/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/terrarium/dimension_type/overworld.json -------------------------------------------------------------------------------- /src/main/resources/data/terrarium/worldgen/noise_settings/terrarium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/terrarium/worldgen/noise_settings/terrarium.json -------------------------------------------------------------------------------- /src/main/resources/data/terrarium/worldgen/world_preset/terrarium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/terrarium/worldgen/world_preset/terrarium.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/block/air_and_plants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/block/air_and_plants.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/block/blue_ice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/block/blue_ice.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/block/calcite_pools_replaceables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/block/calcite_pools_replaceables.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/block/cannot_replace_tepui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/block/cannot_replace_tepui.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/block/deepslate_ore_replaceables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/block/deepslate_ore_replaceables.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/block/dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/block/dirt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/block/lava_ore_replaceables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/block/lava_ore_replaceables.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/block/mud_replaceable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/block/mud_replaceable.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/block/river_carver_replaceables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/block/river_carver_replaceables.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/block/spruce_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/block/spruce_log.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/block/spruce_stuff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/block/spruce_stuff.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/block/stripped_acacia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/block/stripped_acacia.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/block/tree_branch_replaceable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/block/tree_branch_replaceable.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/blocks/air_and_plants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/blocks/air_and_plants.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/blocks/blue_ice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/blocks/blue_ice.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/blocks/calcite_pools_replaceables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/blocks/calcite_pools_replaceables.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/blocks/cannot_replace_tepui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/blocks/cannot_replace_tepui.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/blocks/deepslate_ore_replaceables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/blocks/deepslate_ore_replaceables.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/blocks/dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/blocks/dirt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/blocks/lava_ore_replaceables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/blocks/lava_ore_replaceables.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/blocks/mud_replaceable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/blocks/mud_replaceable.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/blocks/river_carver_replaceables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/blocks/river_carver_replaceables.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/blocks/spruce_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/blocks/spruce_log.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/blocks/spruce_stuff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/blocks/spruce_stuff.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/blocks/stripped_acacia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/blocks/stripped_acacia.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/tags/blocks/tree_branch_replaceable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/tags/blocks/tree_branch_replaceable.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/decor/campfires.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/decor/campfires.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/decor/floating_lantern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/decor/floating_lantern.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/decor/patch_floating_lanterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/decor/patch_floating_lanterns.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/decor/scarecrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/decor/scarecrow.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/decor/skulls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/decor/skulls.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/decor/stone_buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/decor/stone_buttons.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/decor/stumps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/decor/stumps.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/other/block_pile_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/other/block_pile_stone.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/other/lake_salt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/other/lake_salt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/other/stone_forest_rock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/other/stone_forest_rock.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/palm/branch/tall_east.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/palm/branch/tall_east.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/palm/branch/tall_north.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/palm/branch/tall_north.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/palm/branch/tall_south.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/palm/branch/tall_south.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/palm/branch/tall_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/palm/branch/tall_top.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/palm/branch/tall_west.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/palm/branch/tall_west.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/palm/branch_set/tall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/palm/branch_set/tall.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/palm/tall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/palm/tall.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/danakil_desert_mounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/danakil_desert_mounds.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spike_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spike_1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spike_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spike_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spike_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spike_3.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spikes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spikes.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spikes_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spikes_1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spikes_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spikes_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spikes_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spikes_3.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spikes_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spikes_4.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spikes_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/dripstone_spikes_5.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/terracotta_mound_orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/terracotta_mound_orange.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/terracotta_mound_red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/terracotta_mound_red.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/terracotta_mound_yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/terracotta_mound_yellow.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/tuff_spikes_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/tuff_spikes_1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/tuff_spikes_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/tuff_spikes_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/tuff_spikes_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/tuff_spikes_3.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/tuff_spikes_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/tuff_spikes_4.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/terrain/tuff_spikes_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/terrain/tuff_spikes_5.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/bamboo_shoot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/bamboo_shoot.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/beets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/beets.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/carrots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/carrots.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log/oak_east.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log/oak_east.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log/oak_north.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log/oak_north.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log/oak_south.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log/oak_south.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log/oak_west.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log/oak_west.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log_birch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log_birch.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log_dark_oak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log_dark_oak.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log_oak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log_oak.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log_spruce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fallen_log_spruce.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fern_cane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/fern_cane.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/grass.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/hanging_moss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/hanging_moss.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/mature_wheat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/mature_wheat.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/melon_and_stem_east.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/melon_and_stem_east.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/melon_and_stem_north.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/melon_and_stem_north.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/melon_and_stem_south.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/melon_and_stem_south.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/melon_and_stem_west.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/melon_and_stem_west.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/melon_stems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/melon_stems.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/melons_and_stems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/melons_and_stems.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/mini_dripleaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/mini_dripleaf.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/oasis_bamboo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/oasis_bamboo.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/potatoes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/potatoes.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/pumpkin_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/pumpkin_stem.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/10.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/11.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/12.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/13.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/14.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/3.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/4.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/5.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/6.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/7.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/8.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/saguaro/9.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/sapling_bamboo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/sapling_bamboo.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/spanish_moss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/spanish_moss.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/tall_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/tall_grass.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/thin_jungle_bamboo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/column/thin_jungle_bamboo.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/floating_vegetation_plants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/floating_vegetation_plants.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/bracket_fungus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/bracket_fungus.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/giant_enoki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/giant_enoki.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/giant_matsutake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/giant_matsutake.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/giant_morel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/giant_morel.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/giant_muscaria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/giant_muscaria.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/medium_muscaria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/medium_muscaria.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/patch_enoki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/patch_enoki.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/patch_morel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/fungus/patch_morel.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/melon_patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/melon_patch.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/other/glow_lichen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/other/glow_lichen.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/patch_dead_corals_on_gravel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/patch_dead_corals_on_gravel.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/patch_pumpkin_farmed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/patch_pumpkin_farmed.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/patch_roses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/patch_roses.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/patch_wheat_farmed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/patch_wheat_farmed.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/saguaro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/saguaro.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/thin_jungle_bamboo_patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/thin_jungle_bamboo_patch.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/acacia_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/acacia_forest.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/acacia_plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/acacia_plains.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_azalea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_azalea.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_azalea_old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_azalea_old.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_birch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_birch.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_birch_old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_birch_old.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_dark_oak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_dark_oak.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_oak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_oak.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_oak_old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_oak_old.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_pale_oak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ancient_pale_oak.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/aspen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/aspen.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/azalea_conifer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/azalea_conifer.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/bamboo_jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/bamboo_jungle.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/bamboo_palm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/bamboo_palm.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/banyan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/banyan.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/baobab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/baobab.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/baobab_short.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/baobab_short.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/bayou.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/bayou.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/bayou_cypress_deep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/bayou_cypress_deep.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/big_spruce/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/big_spruce/1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/big_spruce/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/big_spruce/2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/big_spruce/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/big_spruce/3.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/big_spruce/roots/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/big_spruce/roots/1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/big_spruce/roots/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/big_spruce/roots/2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/birch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/birch.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/blue_gum_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/blue_gum_forest.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/brazilwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/brazilwood.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/cold_pine_medium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/cold_pine_medium.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ebony.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ebony.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/fir_medium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/fir_medium.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/fir_tall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/fir_tall.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/flowering_cassia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/flowering_cassia.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/forest_azalea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/forest_azalea.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/forest_eucalyptus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/forest_eucalyptus.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/forest_oak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/forest_oak.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/forest_pine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/forest_pine.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huangshan_pine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huangshan_pine.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_jungle/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_jungle/1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_jungle/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_jungle/2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_jungle/roots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_jungle/roots.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_sequoia/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_sequoia/1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_sequoia/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_sequoia/2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_sequoia/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_sequoia/3.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_sequoia/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_sequoia/4.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_sequoia/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_sequoia/5.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_sequoia/dead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_sequoia/dead.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/10.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/6.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/7.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/8.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/9.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/dead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/dead.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/roots/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/roots/1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/roots/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/roots/2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/roots/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/roots/3.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/roots/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/roots/4.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/roots/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/huge_spruce/roots/5.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/jungle_mangrove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/jungle_mangrove.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/jungle_palm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/jungle_palm.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/kapok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/kapok.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/mahogany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/mahogany.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/maple_tall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/maple_tall.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/marula.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/marula.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/mega_jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/mega_jungle.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/mpingo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/mpingo.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/oak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/oak.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/oak_bush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/oak_bush.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/olive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/olive.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/pandanus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/pandanus.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/pine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/pine.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ponderosa_pine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/ponderosa_pine.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/red_ivorywood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/red_ivorywood.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/rosewood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/rosewood.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/sandalwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/sandalwood.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/sandy_jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/sandy_jungle.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/savanna_oak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/savanna_oak.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/sclerophylous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/sclerophylous.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/sclerophylous_birch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/sclerophylous_birch.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/sclerophylous_tall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/sclerophylous_tall.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/scrub_acacia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/scrub_acacia.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/scrub_azalea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/scrub_azalea.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/scrub_birch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/scrub_birch.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/scrub_dark_oak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/scrub_dark_oak.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/scrub_jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/scrub_jungle.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/scrub_oak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/scrub_oak.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/scrub_spruce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/scrub_spruce.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/3.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/4.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/5.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/branch_set/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/branch_set/1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/branch_set/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/branch_set/2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/branch_set/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/branch_set/3.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/branch_set/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/branch_set/4.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/rooted_dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/spruce/rooted_dirt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/stick_plant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/stick_plant.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/stick_plant_small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/stick_plant_small.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/swamp_forest_birch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/swamp_forest_birch.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/teak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/teak.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/tropical_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/tropical_forest.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/tropical_rainforest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/tropical_rainforest.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/tundra_bush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/tundra_bush.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/tundra_spruce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/tundra_spruce.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/young_brazilwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/young_brazilwood.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/young_kapok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/young_kapok.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/young_mega_jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/configured_feature/vegetation/tree/young_mega_jungle.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/decor/badlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/decor/badlands.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/decor/dense_steam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/decor/dense_steam.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/decor/desert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/decor/desert.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/decor/floating_lanterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/decor/floating_lanterns.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/decor/floating_lanterns_cherry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/decor/floating_lanterns_cherry.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/decor/sparse_steam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/decor/sparse_steam.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_3.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_hay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_hay.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_hay_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_hay_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_pumpkin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_pumpkin.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_scarecrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_scarecrow.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_stumps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_stumps.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_wheat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_wheat.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_wheat_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/farm/harvest_fields_wheat_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/farm/paddy_cane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/farm/paddy_cane.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/farm/paddy_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/farm/paddy_water.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/ores/ore_coal_windswept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/ores/ore_coal_windswept.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/ores/ore_diamond_volcanic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/ores/ore_diamond_volcanic.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/ores/ore_gold_volcanic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/ores/ore_gold_volcanic.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/ores/ore_iron_windswept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/ores/ore_iron_windswept.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/ores/ore_lava_volcanic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/ores/ore_lava_volcanic.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/ores/ore_redstone_windswept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/ores/ore_redstone_windswept.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/palm/coastal_palm_east.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/palm/coastal_palm_east.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/palm/coastal_palm_north.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/palm/coastal_palm_north.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/palm/coastal_palm_south.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/palm/coastal_palm_south.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/palm/coastal_palm_west.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/palm/coastal_palm_west.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/road/andesite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/road/andesite.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/road/bamboo_jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/road/bamboo_jungle.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/road/bamboo_jungle_old_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/road/bamboo_jungle_old_1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/road/bamboo_jungle_old_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/road/bamboo_jungle_old_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/road/cherry_grove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/road/cherry_grove.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/road/harvest_fields_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/road/harvest_fields_1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/road/harvest_fields_1b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/road/harvest_fields_1b.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/road/harvest_fields_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/road/harvest_fields_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/road/harvest_fields_2b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/road/harvest_fields_2b.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/road/harvest_fields_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/road/harvest_fields_3.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/road/harvest_fields_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/road/harvest_fields_4.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/road/jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/road/jungle.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/road/sparse_jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/road/sparse_jungle.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/road/sunflower_plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/road/sunflower_plains.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/carver/ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/carver/ocean.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/carver/river.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/carver/river.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/carver/river_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/carver/river_water.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/badlands_edge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/badlands_edge.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/badlands_stone_fix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/badlands_stone_fix.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/base_frozen_peaks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/base_frozen_peaks.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/base_frozen_peaks_snow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/base_frozen_peaks_snow.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/base_jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/base_jungle.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/base_savanna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/base_savanna.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/base_taiga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/base_taiga.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/beach_cliffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/beach_cliffs.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/coarsify_dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/coarsify_dirt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/coastal_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/coastal_sand.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/cold_ocean_gravel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/cold_ocean_gravel.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/coral_pools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/coral_pools.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/coral_pools_edge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/coral_pools_edge.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/dead_coral_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/dead_coral_stone.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/dead_coral_stone_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/dead_coral_stone_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/desert_edge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/desert_edge.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/disk_clay_dirt_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/disk_clay_dirt_only.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/disk_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/disk_sand.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/dover_cliffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/dover_cliffs.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/gravelify_packed_mud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/gravelify_packed_mud.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/mudify_rooted_dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/mudify_rooted_dirt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/ocean_beach_gravel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/ocean_beach_gravel.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/ocean_beach_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/ocean_beach_sand.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/onsen_calcite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/onsen_calcite.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/onsen_deepslate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/onsen_deepslate.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/onsen_pools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/onsen_pools.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/red_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/red_sand.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/replace_dirt_to_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/replace_dirt_to_sand.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/replace_gravel_to_mud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/replace_gravel_to_mud.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/replace_gravel_to_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/replace_gravel_to_sand.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/replace_mud_to_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/replace_mud_to_sand.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/sandify_rooted_dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/sandify_rooted_dirt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/scree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/scree.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/scree_spread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/scree_spread.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/volcanic_extinction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/volcanic_extinction.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/volcanic_fallout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/volcanic_fallout.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/volcanic_fallout_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/volcanic_fallout_ore.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/volcanic_flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/volcanic_flows.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/volcanic_flows_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/volcanic_flows_ore.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/volcano_snow_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/volcano_snow_blocks.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/windswept_snow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/extended/windswept_snow.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/danakil_desert_mounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/danakil_desert_mounds.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/dripstone_cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/dripstone_cluster.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/lake_salt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/lake_salt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/mushroom_island_plateau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/mushroom_island_plateau.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/pointed_dripstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/pointed_dripstone.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/spring_lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/spring_lava.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/stone_forest_rock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/stone_forest_rock.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/stone_pile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/stone_pile.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_basalt_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_basalt_layer.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_cavern_dripstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_cavern_dripstone.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_cavern_lakes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_cavern_lakes.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_cavern_moss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_cavern_moss.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_caverns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_caverns.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_chasms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_chasms.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_crystals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_crystals.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_falls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_falls.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_filler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_filler.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_geodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_geodes.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_lakes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_lakes.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_surface.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_terrain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_terrain.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_tuff_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tepui_tuff_layer.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/thermal_vents_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/thermal_vents_iron.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/thermal_vents_mounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/thermal_vents_mounds.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/thermal_vents_soul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/thermal_vents_soul.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tuff_spikes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/feature/tuff_spikes.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/atoll_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/atoll_grass.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/badlands_plateau_red_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/badlands_plateau_red_sand.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/badlands_snow_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/badlands_snow_blocks.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/base_dark_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/base_dark_forest.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/base_grove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/base_grove.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/base_jagged_peaks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/base_jagged_peaks.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/base_mangrove_swamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/base_mangrove_swamp.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/base_mushroom_fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/base_mushroom_fields.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/base_snowy_beach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/base_snowy_beach.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/base_wooded_badlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/base_wooded_badlands.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/beach_mossy_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/beach_mossy_stone.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/cave_disk_basalt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/cave_disk_basalt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/cave_disk_blackstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/cave_disk_blackstone.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/cave_disk_magma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/cave_disk_magma.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/cave_ice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/cave_ice.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/cherry_pools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/cherry_pools.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/cherry_pools_edge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/cherry_pools_edge.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/crack_ice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/crack_ice.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/crimson_patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/crimson_patch.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/crust_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/crust_grass.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/crust_packed_mud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/crust_packed_mud.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/crust_salt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/crust_salt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/danakil_mud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/danakil_mud.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/danakil_orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/danakil_orange.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/danakil_red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/danakil_red.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/danakil_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/danakil_terracotta.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/danakil_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/danakil_water.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/danakil_yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/danakil_yellow.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/danakil_yellow_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/danakil_yellow_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/de_snowify_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/de_snowify_stone.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/deepslate_cliffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/deepslate_cliffs.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/dirtify_rooted_dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/dirtify_rooted_dirt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_dead_coral_shore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_dead_coral_shore.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_gravel_floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_gravel_floor.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_gravel_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_gravel_forest.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_gravel_river.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_gravel_river.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_gravel_shore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_gravel_shore.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_mud_in_muddy_roots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_mud_in_muddy_roots.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_mud_shore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_mud_shore.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_mud_shore_jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_mud_shore_jungle.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_mud_swamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_mud_swamp.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_packed_mud_shore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_packed_mud_shore.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_sand_floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_sand_floor.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_sand_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_sand_forest.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_sand_shore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_sand_shore.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_sand_tropical_shore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/disk_sand_tropical_shore.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_basalt_cliffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_basalt_cliffs.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_coral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_coral.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_coral_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_coral_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_coral_mycelium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_coral_mycelium.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_fire_coral_shore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_fire_coral_shore.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_fire_coral_shore_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_fire_coral_shore_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_moss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_moss.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_mossy_shore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_mossy_shore.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_mossy_shore_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_mossy_shore_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_powder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_powder.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_prismarine_shore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_prismarine_shore.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_savanna_floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_savanna_floor.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_sculk_infection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/fungal_sculk_infection.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/glacial_pools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/glacial_pools.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/glacial_scree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/glacial_scree.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/grass_spread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/grass_spread.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/grass_spread_badlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/grass_spread_badlands.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/grove_cliffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/grove_cliffs.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/highland_stone_cliffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/highland_stone_cliffs.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/ice_spikes_glacial_dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/ice_spikes_glacial_dirt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/ice_spikes_glacial_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/ice_spikes_glacial_grass.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/ice_spikes_glacial_gravel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/ice_spikes_glacial_gravel.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/ice_spikes_glacial_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/ice_spikes_glacial_stone.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/ice_spikes_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/ice_spikes_grass.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/mushroom_island_caves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/mushroom_island_caves.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/mushroom_plateau_cliffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/mushroom_plateau_cliffs.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/oasis_clay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/oasis_clay.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/oasis_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/oasis_grass.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/oasis_moss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/oasis_moss.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/oasis_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/oasis_water.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/ocean_rock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/ocean_rock.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/pack_ice_snow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/pack_ice_snow.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/pamukkale_calcite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/pamukkale_calcite.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/pamukkale_diorite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/pamukkale_diorite.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/pamukkale_pools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/pamukkale_pools.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/powder_snow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/powder_snow.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/red_sand_scree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/red_sand_scree.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/red_sand_spread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/red_sand_spread.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/replace_basalt_to_tuff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/replace_basalt_to_tuff.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/replace_calcite_to_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/replace_calcite_to_stone.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/replace_dirt_to_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/replace_dirt_to_sand.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/replace_grass_to_mycelium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/replace_grass_to_mycelium.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/replace_stone_to_basalt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/replace_stone_to_basalt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/river_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/river_grass.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/sandy_floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/sandy_floor.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/savanna_packed_mud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/savanna_packed_mud.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/shadow_snow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/shadow_snow.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/snow_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/snow_blocks.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/snow_blocks_disk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/snow_blocks_disk.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/snow_spread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/snow_spread.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/snowy_ground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/snowy_ground.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/snowy_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/snowy_leaves.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/snowy_slopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/snowy_slopes.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/sparse_jungle_shore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/sparse_jungle_shore.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/stone_cliffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/stone_cliffs.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/stone_cliffs_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/stone_cliffs_plus.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/stone_cliffs_sheer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/stone_cliffs_sheer.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/stone_cliffs_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/stone_cliffs_surface.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/stony_shore_tuff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/stony_shore_tuff.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/swamp_pools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/swamp_pools.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/tepui_cap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/tepui_cap.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_savanna_brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_savanna_brown.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_savanna_dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_savanna_dirt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_savanna_dripstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_savanna_dripstone.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_savanna_gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_savanna_gray.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_savanna_mud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_savanna_mud.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_savanna_soul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_savanna_soul.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_steppe_brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_steppe_brown.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_steppe_dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_steppe_dirt.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_steppe_dripstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_steppe_dripstone.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_steppe_gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_steppe_gray.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_steppe_mud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_steppe_mud.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_steppe_soul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_steppe_soul.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_taiga_white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_taiga_white.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_vents_floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/thermal_vents_floor.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/tsingy_ore_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/tsingy_ore_1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/tsingy_ore_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/tsingy_ore_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/tsingy_ore_rare_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/tsingy_ore_rare_1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/tsingy_ore_rare_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/tsingy_ore_rare_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/uluru_cap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/uluru_cap.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/volcanic_basalt_cliffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/volcanic_basalt_cliffs.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/volcanic_pools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/volcanic_pools.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/volcanic_resurfacing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/volcanic_resurfacing.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/yellowstone_orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/yellowstone_orange.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/yellowstone_white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/terrain/local/yellowstone_white.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/bushes/birch_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/bushes/birch_forest.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/bushes/cold_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/bushes/cold_forest.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/bushes/oak_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/bushes/oak_forest.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/bushes/pine_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/bushes/pine_forest.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/patch/flower_meadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/patch/flower_meadow.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/patch/sunflower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/patch/sunflower.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/patch/tepui_plants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/patch/tepui_plants.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/boreal_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/boreal_forest.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/forest_birch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/forest_birch.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/forest_cold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/forest_cold.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/ice_spikes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/ice_spikes.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/oak_badlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/oak_badlands.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/river_acacias.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/river_acacias.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/river_oaks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/river_oaks.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/savanna_oaks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/savanna_oaks.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/windbreak_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/windbreak_1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/windbreak_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/extended/trees/windbreak_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/bushes/kwongan_heath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/bushes/kwongan_heath.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/bushes/mediterranean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/bushes/mediterranean.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/bushes/taiga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/bushes/taiga.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/bushes/tundra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/bushes/tundra.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/baobab_interior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/baobab_interior.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/cocoanuts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/cocoanuts.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/coral_disks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/coral_disks.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/coral_reef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/coral_reef.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/creaking_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/creaking_heart.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/fungal_glow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/fungal_glow.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/fungal_vines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/fungal_vines.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/giant_fungi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/giant_fungi.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/pale_lichen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/other/pale_lichen.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/banyan_vines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/banyan_vines.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/berries_badlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/berries_badlands.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/berry_range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/berry_range.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/crimson_roots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/crimson_roots.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/elephant_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/elephant_grass.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/fern_cane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/fern_cane.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_badlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_badlands.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_bluebells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_bluebells.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_cherry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_cherry.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_forest.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_peony.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_peony.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_petals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_petals.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_plains.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_taiga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/flower_taiga.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/fungal_seagrass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/fungal_seagrass.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/grass_badlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/grass_badlands.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/grass_beach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/grass_beach.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/grass_desert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/grass_desert.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/grass_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/grass_forest.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/grass_savanna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/grass_savanna.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/grass_standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/grass_standard.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/hanging_moss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/hanging_moss.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/large_fern_taiga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/large_fern_taiga.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/mycelial_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/mycelial_grass.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/pale_pumpkin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/pale_pumpkin.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/pineapples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/pineapples.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/red_coral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/red_coral.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/red_coral_tall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/red_coral_tall.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/saguaros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/saguaros.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/seagrass_wrecks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/seagrass_wrecks.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/spanish_moss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/spanish_moss.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/waterlily_dense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/patch/waterlily_dense.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/bamboo_jungle_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/bamboo_jungle_1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/bamboo_jungle_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/bamboo_jungle_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/bamboo_jungle_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/bamboo_jungle_3.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/banyans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/banyans.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/cherry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/cherry.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/cherry_maple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/cherry_maple.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/cherry_pools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/cherry_pools.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/dark_forest_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/dark_forest_1.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/dark_forest_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/dark_forest_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/dark_jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/dark_jungle.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/forest_birch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/forest_birch.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/forest_birch_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/forest_birch_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/forest_montane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/forest_montane.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/forest_oak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/forest_oak.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/forest_pine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/forest_pine.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/forest_pine_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/forest_pine_2.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/forest_tropical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/forest_tropical.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/jungle_island.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/jungle_island.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/jungle_mangroves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/jungle_mangroves.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/jungle_mega.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/jungle_mega.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/jungle_midland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/jungle_midland.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/jungle_sandy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/jungle_sandy.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/jungle_upland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/jungle_upland.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/meadow_woods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/meadow_woods.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/oasis_palms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/oasis_palms.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/pale_garden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/pale_garden.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/pale_moribund.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/pale_moribund.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/pine_mesa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/pine_mesa.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/pink_lapacho.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/pink_lapacho.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/sakura_grove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/sakura_grove.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/savanna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/savanna.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/savanna_baobabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/savanna_baobabs.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/savanna_mossy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/savanna_mossy.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/savanna_rare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/savanna_rare.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/savanna_river.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/savanna_river.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/savanna_sparse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/savanna_sparse.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/savanna_woodland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/savanna_woodland.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/sparse_jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/sparse_jungle.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/spruce_grove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/spruce_grove.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/taiga_birch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/taiga_birch.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/taiga_cold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/taiga_cold.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/taiga_cold_dwarf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/taiga_cold_dwarf.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/taiga_pine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/taiga_pine.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/taiga_spruce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/taiga_spruce.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/tropical_savanna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/tropical_savanna.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/tropical_woods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/tropical_woods.json -------------------------------------------------------------------------------- /src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/tundra_woods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/data/wythers/worldgen/placed_feature/vegetation/local/trees/tundra_woods.json -------------------------------------------------------------------------------- /src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /src/main/resources/terrarium.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/terrarium.accesswidener -------------------------------------------------------------------------------- /src/main/resources/terrarium.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly-nxs/terrarium/HEAD/src/main/resources/terrarium.mixins.json --------------------------------------------------------------------------------