Skip to content

Instantly share code, notes, and snippets.

@hube12
Last active August 17, 2022 20:54
Show Gist options
  • Save hube12/b65500cd234ce2a3983b62b3903c183d to your computer and use it in GitHub Desktop.
Save hube12/b65500cd234ce2a3983b62b3903c183d to your computer and use it in GitHub Desktop.
1.16 salts
Bootstrap.register();
Registry.BIOME.stream().forEach(
biome -> {
System.out.printf("__________________________________\n");
System.out.printf("BIOME: " + Registry.BIOME.getKey(biome).getPath() + "\n");
for (GenerationStage.Decoration stage : GenerationStage.Decoration.values()) {
System.out.printf("STAGE: " + stage.name() + "\n");
int i = 0;
if (stage==GenerationStage.Decoration.SURFACE_STRUCTURES){
for (Structure<?> s:biome.structures.keySet()){
System.out.printf(s.getStructureName());
System.out.printf(" " + (i + stage.ordinal() * 10000) + "\n");
++i;
}
}
for (ConfiguredFeature<?, ?> configuredfeature : biome.features.get(stage)) {
if (configuredfeature.feature instanceof DecoratedFeature) {
DecoratedFeatureConfig config = ((DecoratedFeatureConfig) configuredfeature.config);
Feature<?> feature = config.feature.feature;
if (feature instanceof OreFeature) {
System.out.printf("ore : " + Registry.BLOCK.getKey(((OreFeatureConfig) config.feature.config).state.getBlock()).getPath());
} else if (feature instanceof SphereReplaceFeature) {
System.out.printf("disk : " + Registry.BLOCK.getKey(((SphereReplaceConfig) config.feature.config).state.getBlock()).getPath());
} else {
System.out.printf(Registry.FEATURE.getKey(feature).getPath());
}
} else {
System.out.printf(Registry.FEATURE.getKey(configuredfeature.feature).getPath());
}
System.out.printf(" " + (i + stage.ordinal() * 10000) + "\n");
++i;
}
System.out.printf("\n");
}
});
__________________________________
BIOME: ocean
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
shipwreck 40001
ocean_ruin 40002
ruined_portal 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
seagrass 80009
simple_block 80010
kelp 80011
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: plains
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
pillager_outpost 40002
village 40003
ruined_portal 40004
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: desert
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
fossil 30000
monster_room 30001
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
pillager_outpost 40002
village 40003
desert_pyramid 40004
ruined_portal 40005
desert_well 40006
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
flower 80000
random_patch 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: mountains
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
emerald_ore 60014
STAGE: UNDERGROUND_DECORATION
ore : infested_stone 70000
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: forest
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_random_selector 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: taiga
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
pillager_outpost 40002
village 40003
ruined_portal 40004
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
random_patch 80008
random_patch 80009
spring_feature 80010
spring_feature 80011
random_patch 80012
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: swamp
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
fossil 30000
monster_room 30001
STAGE: SURFACE_STRUCTURES
mineshaft 40000
swamp_hut 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : clay 60011
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
tree 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
random_patch 80008
random_patch 80009
random_patch 80010
spring_feature 80011
spring_feature 80012
seagrass 80013
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: river
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
ruined_portal 40001
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
seagrass 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: nether_wastes
STAGE: RAW_GENERATION
STAGE: LAKES
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
STAGE: SURFACE_STRUCTURES
bastion_remnant 40000
fortress 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
STAGE: UNDERGROUND_DECORATION
spring_feature 70000
random_patch 70001
random_patch 70002
glowstone_blob 70003
glowstone_blob 70004
random_patch 70005
random_patch 70006
ore : magma_block 70007
spring_feature 70008
ore : gravel 70009
ore : blackstone 70010
ore : nether_gold_ore 70011
ore : nether_quartz_ore 70012
no_surface_ore 70013
no_surface_ore 70014
STAGE: VEGETAL_DECORATION
spring_feature 80000
random_patch 80001
random_patch 80002
STAGE: TOP_LAYER_MODIFICATION
__________________________________
BIOME: the_end
STAGE: RAW_GENERATION
STAGE: LAKES
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
STAGE: SURFACE_STRUCTURES
end_spike 40000
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
STAGE: TOP_LAYER_MODIFICATION
__________________________________
BIOME: frozen_ocean
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
iceberg 20000
iceberg 20001
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
shipwreck 40001
ocean_ruin 40002
ruined_portal 40003
blue_ice 40004
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: frozen_river
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
ruined_portal 40001
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: snowy_tundra
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
pillager_outpost 40002
village 40003
igloo 40004
ruined_portal 40005
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
tree 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: snowy_mountains
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
tree 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: mushroom_fields
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_boolean_selector 80000
random_patch 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: mushroom_field_shore
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_boolean_selector 80000
random_patch 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: beach
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
shipwreck 40001
buried_treasure 40002
ruined_portal 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
flower 80000
random_patch 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
spring_feature 80006
spring_feature 80007
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: desert_hills
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
desert_pyramid 40002
ruined_portal 40003
desert_well 40004
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
flower 80000
random_patch 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: wooded_hills
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_random_selector 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: taiga_hills
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
random_patch 80008
random_patch 80009
spring_feature 80010
spring_feature 80011
random_patch 80012
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: mountain_edge
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
emerald_ore 60014
STAGE: UNDERGROUND_DECORATION
ore : infested_stone 70000
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: jungle
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
jungle_pyramid 40002
ruined_portal 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
bamboo 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
random_patch 80010
vines 80011
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: jungle_hills
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
jungle_pyramid 40002
ruined_portal 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
bamboo 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
random_patch 80010
vines 80011
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: jungle_edge
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
random_patch 80009
vines 80010
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: deep_ocean
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
shipwreck 40001
ocean_ruin 40002
monument 40003
ruined_portal 40004
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
seagrass 80009
simple_block 80010
kelp 80011
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: stone_shore
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
flower 80000
random_patch 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
spring_feature 80006
spring_feature 80007
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: snowy_beach
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
shipwreck 40001
buried_treasure 40002
ruined_portal 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
flower 80000
random_patch 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
spring_feature 80006
spring_feature 80007
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: birch_forest
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_random_selector 80000
tree 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: birch_forest_hills
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_random_selector 80000
tree 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: dark_forest
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
mansion 40002
ruined_portal 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
random_random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: snowy_taiga
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
igloo 40002
ruined_portal 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
random_patch 80008
random_patch 80009
spring_feature 80010
spring_feature 80011
random_patch 80012
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: snowy_taiga_hills
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
random_patch 80008
random_patch 80009
spring_feature 80010
spring_feature 80011
random_patch 80012
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: giant_tree_taiga
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
forest_rock 20000
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
random_patch 80008
random_patch 80009
random_patch 80010
spring_feature 80011
spring_feature 80012
random_patch 80013
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: giant_tree_taiga_hills
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
forest_rock 20000
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
random_patch 80008
random_patch 80009
random_patch 80010
spring_feature 80011
spring_feature 80012
random_patch 80013
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: wooded_mountains
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
emerald_ore 60014
STAGE: UNDERGROUND_DECORATION
ore : infested_stone 70000
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: savanna
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
pillager_outpost 40002
village 40003
ruined_portal 40004
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: savanna_plateau
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: badlands
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
ore : gold_ore 60011
disk : sand 60012
disk : clay 60013
disk : gravel 60014
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_patch 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: wooded_badlands_plateau
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
ore : gold_ore 60011
disk : sand 60012
disk : clay 60013
disk : gravel 60014
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
tree 80000
random_patch 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: badlands_plateau
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
ore : gold_ore 60011
disk : sand 60012
disk : clay 60013
disk : gravel 60014
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_patch 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: small_end_islands
STAGE: RAW_GENERATION
end_island 0
STAGE: LAKES
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
STAGE: SURFACE_STRUCTURES
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
STAGE: TOP_LAYER_MODIFICATION
__________________________________
BIOME: end_midlands
STAGE: RAW_GENERATION
STAGE: LAKES
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
STAGE: SURFACE_STRUCTURES
endcity 40000
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
STAGE: TOP_LAYER_MODIFICATION
__________________________________
BIOME: end_highlands
STAGE: RAW_GENERATION
STAGE: LAKES
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
STAGE: SURFACE_STRUCTURES
endcity 40000
end_gateway 40001
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
chorus_plant 80000
STAGE: TOP_LAYER_MODIFICATION
__________________________________
BIOME: end_barrens
STAGE: RAW_GENERATION
STAGE: LAKES
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
STAGE: SURFACE_STRUCTURES
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
STAGE: TOP_LAYER_MODIFICATION
__________________________________
BIOME: warm_ocean
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
shipwreck 40001
ocean_ruin 40002
ruined_portal 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
simple_random_selector 80009
seagrass 80010
sea_pickle 80011
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: lukewarm_ocean
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
shipwreck 40001
ocean_ruin 40002
ruined_portal 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
seagrass 80009
kelp 80010
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: cold_ocean
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
shipwreck 40001
ocean_ruin 40002
ruined_portal 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
seagrass 80009
simple_block 80010
kelp 80011
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: deep_warm_ocean
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
shipwreck 40001
ocean_ruin 40002
monument 40003
ruined_portal 40004
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
seagrass 80009
simple_block 80010
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: deep_lukewarm_ocean
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
shipwreck 40001
ocean_ruin 40002
monument 40003
ruined_portal 40004
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
seagrass 80009
simple_block 80010
kelp 80011
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: deep_cold_ocean
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
shipwreck 40001
ocean_ruin 40002
monument 40003
ruined_portal 40004
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
seagrass 80009
simple_block 80010
kelp 80011
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: deep_frozen_ocean
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
iceberg 20000
iceberg 20001
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
shipwreck 40001
ocean_ruin 40002
monument 40003
ruined_portal 40004
blue_ice 40005
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: the_void
STAGE: RAW_GENERATION
STAGE: LAKES
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
STAGE: SURFACE_STRUCTURES
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
STAGE: TOP_LAYER_MODIFICATION
void_start_platform 90000
__________________________________
BIOME: sunflower_plains
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_patch 80001
random_selector 80002
flower 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
random_patch 80008
spring_feature 80009
spring_feature 80010
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: desert_lakes
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
desert_well 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
flower 80000
random_patch 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: gravelly_mountains
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
emerald_ore 60014
STAGE: UNDERGROUND_DECORATION
ore : infested_stone 70000
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: flower_forest
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_random_selector 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: taiga_mountains
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
random_patch 80008
random_patch 80009
spring_feature 80010
spring_feature 80011
random_patch 80012
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: swamp_hills
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
fossil 30001
STAGE: SURFACE_STRUCTURES
mineshaft 40000
ruined_portal 40001
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : clay 60011
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
tree 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
random_patch 80008
random_patch 80009
random_patch 80010
spring_feature 80011
spring_feature 80012
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: ice_spikes
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
ice_spike 40003
ice_patch 40004
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
tree 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: modified_jungle
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
random_patch 80009
vines 80010
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: modified_jungle_edge
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
random_patch 80009
vines 80010
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: tall_birch_forest
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_random_selector 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: tall_birch_hills
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_random_selector 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: dark_forest_hills
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
mansion 40002
ruined_portal 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
random_random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: snowy_taiga_mountains
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
random_patch 80008
random_patch 80009
spring_feature 80010
spring_feature 80011
random_patch 80012
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: giant_spruce_taiga
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
forest_rock 20000
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
random_patch 80008
random_patch 80009
random_patch 80010
spring_feature 80011
spring_feature 80012
random_patch 80013
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: giant_spruce_taiga_hills
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
forest_rock 20000
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
random_patch 80008
random_patch 80009
random_patch 80010
spring_feature 80011
spring_feature 80012
random_patch 80013
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: modified_gravelly_mountains
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
emerald_ore 60014
STAGE: UNDERGROUND_DECORATION
ore : infested_stone 70000
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: shattered_savanna
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: shattered_savanna_plateau
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_selector 80000
flower 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: eroded_badlands
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
ore : gold_ore 60011
disk : sand 60012
disk : clay 60013
disk : gravel 60014
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_patch 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: modified_wooded_badlands_plateau
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
ore : gold_ore 60011
disk : sand 60012
disk : clay 60013
disk : gravel 60014
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
tree 80000
random_patch 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: modified_badlands_plateau
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
ore : gold_ore 60011
disk : sand 60012
disk : clay 60013
disk : gravel 60014
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
random_patch 80000
random_patch 80001
random_patch 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
spring_feature 80007
spring_feature 80008
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: bamboo_jungle
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
jungle_pyramid 40002
ruined_portal 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
bamboo 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
random_patch 80010
vines 80011
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: bamboo_jungle_hills
STAGE: RAW_GENERATION
STAGE: LAKES
lake 10000
lake 10001
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
monster_room 30000
STAGE: SURFACE_STRUCTURES
mineshaft 40000
stronghold 40001
jungle_pyramid 40002
ruined_portal 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
ore : dirt 60000
ore : gravel 60001
ore : granite 60002
ore : diorite 60003
ore : andesite 60004
ore : coal_ore 60005
ore : iron_ore 60006
ore : gold_ore 60007
ore : redstone_ore 60008
ore : diamond_ore 60009
ore : lapis_ore 60010
disk : sand 60011
disk : clay 60012
disk : gravel 60013
STAGE: UNDERGROUND_DECORATION
STAGE: VEGETAL_DECORATION
bamboo 80000
random_selector 80001
flower 80002
random_patch 80003
random_patch 80004
random_patch 80005
random_patch 80006
random_patch 80007
spring_feature 80008
spring_feature 80009
random_patch 80010
vines 80011
STAGE: TOP_LAYER_MODIFICATION
freeze_top_layer 90000
__________________________________
BIOME: soul_sand_valley
STAGE: RAW_GENERATION
STAGE: LAKES
STAGE: LOCAL_MODIFICATIONS
basalt_pillar 20000
STAGE: UNDERGROUND_STRUCTURES
STAGE: SURFACE_STRUCTURES
bastion_remnant 40000
nether_fossil 40001
fortress 40002
ruined_portal 40003
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
STAGE: UNDERGROUND_DECORATION
spring_feature 70000
glowstone_blob 70001
glowstone_blob 70002
random_patch 70003
random_patch 70004
random_patch 70005
ore : magma_block 70006
spring_feature 70007
ore : soul_sand 70008
ore : gravel 70009
ore : blackstone 70010
ore : nether_gold_ore 70011
ore : nether_quartz_ore 70012
no_surface_ore 70013
no_surface_ore 70014
STAGE: VEGETAL_DECORATION
spring_feature 80000
STAGE: TOP_LAYER_MODIFICATION
__________________________________
BIOME: crimson_forest
STAGE: RAW_GENERATION
STAGE: LAKES
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
STAGE: SURFACE_STRUCTURES
bastion_remnant 40000
fortress 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
STAGE: UNDERGROUND_DECORATION
spring_feature 70000
random_patch 70001
glowstone_blob 70002
glowstone_blob 70003
ore : magma_block 70004
spring_feature 70005
ore : gravel 70006
ore : blackstone 70007
ore : nether_gold_ore 70008
ore : nether_quartz_ore 70009
no_surface_ore 70010
no_surface_ore 70011
STAGE: VEGETAL_DECORATION
spring_feature 80000
random_patch 80001
random_patch 80002
weeping_vines 80003
huge_fungus 80004
nether_forest_vegetation 80005
STAGE: TOP_LAYER_MODIFICATION
__________________________________
BIOME: warped_forest
STAGE: RAW_GENERATION
STAGE: LAKES
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
STAGE: SURFACE_STRUCTURES
bastion_remnant 40000
fortress 40001
ruined_portal 40002
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
STAGE: UNDERGROUND_DECORATION
spring_feature 70000
random_patch 70001
random_patch 70002
glowstone_blob 70003
glowstone_blob 70004
ore : magma_block 70005
spring_feature 70006
ore : gravel 70007
ore : blackstone 70008
ore : nether_gold_ore 70009
ore : nether_quartz_ore 70010
no_surface_ore 70011
no_surface_ore 70012
STAGE: VEGETAL_DECORATION
spring_feature 80000
random_patch 80001
random_patch 80002
huge_fungus 80003
nether_forest_vegetation 80004
nether_forest_vegetation 80005
twisting_vines 80006
STAGE: TOP_LAYER_MODIFICATION
__________________________________
BIOME: basalt_deltas
STAGE: RAW_GENERATION
STAGE: LAKES
STAGE: LOCAL_MODIFICATIONS
STAGE: UNDERGROUND_STRUCTURES
STAGE: SURFACE_STRUCTURES
fortress 40000
ruined_portal 40001
delta_feature 40002
basalt_columns 40003
basalt_columns 40004
STAGE: STRONGHOLDS
STAGE: UNDERGROUND_ORES
STAGE: UNDERGROUND_DECORATION
netherrack_replace_blobs 70000
netherrack_replace_blobs 70001
spring_feature 70002
random_patch 70003
random_patch 70004
glowstone_blob 70005
glowstone_blob 70006
random_patch 70007
random_patch 70008
ore : magma_block 70009
spring_feature 70010
ore : nether_gold_ore 70011
ore : nether_quartz_ore 70012
no_surface_ore 70013
no_surface_ore 70014
STAGE: VEGETAL_DECORATION
spring_feature 80000
STAGE: TOP_LAYER_MODIFICATION
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment