|
// Defines a biome, to be used by dimensions |
|
{ |
|
"starts": [ // List of structures from configured_structure_feature |
|
"minecraft:mineshaft_mesa", |
|
"minecraft:stronghold", |
|
"minecraft:ruined_portal" |
|
], |
|
"spawners": { |
|
"water_ambient": [], // Water ambient mobs |
|
"ambient": [ // Ambient mobs |
|
{ |
|
"type": "minecraft:bat", // Any mob ID |
|
"weight": 10, // Relative chance of spawning (weight over total sum of all mob weights) |
|
"minCount": 8, // Min pack spawn size? |
|
"maxCount": 8 // Max pack spawn size? |
|
} |
|
], |
|
"misc": [], // Other mobs |
|
"water_creature": [], // Water passive mobs |
|
"creature": [], // Passive mobs |
|
"monster": [] // Hostile mobs |
|
}, |
|
"spawn_costs": { // Energy system for limiting mob spawns |
|
"minecraft:enderman": { |
|
"energy_budget": 0.12, |
|
"charge": 1.0 |
|
} |
|
}, |
|
"sky_color": 7254527, // Sky colour, same format as leather armour |
|
"surface_builder": "minecraft:badlands", // A configured_surface_builder |
|
"carvers": { // List of carvers from configured_carver |
|
"air": [ // What the carvers replace blocks with. "liquid" or "air", "liquid" probably corresponds to the dimension's default_fluid |
|
"minecraft:cave", |
|
"minecraft:canyon" |
|
] |
|
}, |
|
"features": [ // List of features from configured_features |
|
[], |
|
[ |
|
"minecraft:lake_water", |
|
"minecraft:lake_lava" |
|
], |
|
[], |
|
[ |
|
"minecraft:monster_room" |
|
], |
|
[], |
|
[], |
|
[ |
|
"minecraft:ore_dirt", |
|
"minecraft:ore_gravel", |
|
"minecraft:ore_granite", |
|
"minecraft:ore_diorite", |
|
"minecraft:ore_andesite", |
|
"minecraft:ore_coal", |
|
"minecraft:ore_iron", |
|
"minecraft:ore_gold", |
|
"minecraft:ore_redstone", |
|
"minecraft:ore_diamond", |
|
"minecraft:ore_lapis", |
|
"minecraft:ore_gold_extra", |
|
"minecraft:disk_sand", |
|
"minecraft:disk_clay", |
|
"minecraft:disk_gravel" |
|
], |
|
[], |
|
[ |
|
"minecraft:patch_grass_badlands", |
|
"minecraft:patch_dead_bush_badlands", |
|
"minecraft:brown_mushroom_normal", |
|
"minecraft:red_mushroom_normal", |
|
"minecraft:patch_sugar_cane_badlands", |
|
"minecraft:patch_pumpkin", |
|
"minecraft:patch_cactus_decorated", |
|
"minecraft:spring_water", |
|
"minecraft:spring_lava" |
|
], |
|
[ |
|
"minecraft:freeze_top_layer" // ??? |
|
] |
|
], |
|
"depth": 0.1, // Base height, 1 depth = 16 blocks |
|
"scale": 0.2, // Height variation, https://i.imgur.com/VJEcej7.png |
|
"temperature": 2.0, |
|
"downfall": 0.0, |
|
"effects": { |
|
"ambient_sound": "minecraft:ambient.crimson_forest.loop", // Looping sound |
|
"mood_sound": { // Random ambient "cave sound" when near dark area |
|
"sound": "minecraft:ambient.crimson_forest.mood", |
|
"tick_delay": 6000, |
|
"block_search_extent": 8, |
|
"offset": 2.0 |
|
}, |
|
"additions_sound": { // Random sound |
|
"sound": "minecraft:ambient.crimson_forest.additions", |
|
"tick_chance": 0.0111 |
|
}, |
|
"music": { |
|
"sound": "minecraft:music.nether.crimson_forest", |
|
"min_delay": 12000, // Min delay between music starts |
|
"max_delay": 24000, // Max delay between music starts |
|
"replace_current_music": false |
|
}, |
|
"fog_color": 3343107, // Default fog colour, same format as leather armour |
|
"water_color": 4159204, // Water colour, same format as leather armour |
|
"water_fog_color": 329011, // Default fog colour, same format as leather armour |
|
"particle": { |
|
"options": { |
|
"type": "minecraft:crimson_spore" |
|
}, |
|
"probability": 0.025 |
|
} |
|
}, |
|
"precipitation": "none", // One of "none", "rain", or "snow" |
|
"category": "mesa" // One of "nether", "mesa", "savanna", "jungle", "nether", "beach", "forest", "ocean", "desert", "the_end", "river", "taiga", "extreme_hills", "icy", "mushroom", "plains", "beach", "swamp" |
|
} |