From 966c55ad9091ecf52f21b000005a6942e265e248 Mon Sep 17 00:00:00 2001 From: Thutmose Date: Sun, 5 Dec 2021 14:32:04 -0500 Subject: [PATCH] adjustments to allow structures to specify needed biome size added "needed_space" to the json format for jigsaws. This allows specifying how many blocks around the chosen location must be the correct biome. This has been implemented in the ocean village, with a distance of 32 blocks, to prevent cases of it spawning in the edge of a beach. --- .../database/worldgen/WorldgenHandler.java | 11 + .../gen/jigsaw/CustomJigsawStructure.java | 21 +- .../structures/village_ocean.json | 136 + .../pokecube_world/dimension/overworld.json | 204620 ++++++++++++++- 4 files changed, 204778 insertions(+), 10 deletions(-) create mode 100644 src/main/resources/data/pokecube_legends/structures/village_ocean.json diff --git a/src/main/java/pokecube/core/database/worldgen/WorldgenHandler.java b/src/main/java/pokecube/core/database/worldgen/WorldgenHandler.java index 76303e1d6a..210a122530 100644 --- a/src/main/java/pokecube/core/database/worldgen/WorldgenHandler.java +++ b/src/main/java/pokecube/core/database/worldgen/WorldgenHandler.java @@ -170,9 +170,20 @@ private static DataResult decodeConfig(final String encoded) public String name; public String root; public int offset = 1; + + // This is max depth of the structure, ie how many times it can add new + // jigsaws onto a previous part. public int size = 4; + + // These are for the rarity of the structure public int distance = 8; public int separation = 4; + + // This defines if we need all biomes in the checked area to match. if + // this is -1, it will allow spawn if any biome matches, otherwise it + // will require all biomes to match within this number of blocks. + public int needed_space = -1; + public String type = ""; public String biomeType = "none"; public SpawnRule spawn; diff --git a/src/main/java/pokecube/core/world/gen/jigsaw/CustomJigsawStructure.java b/src/main/java/pokecube/core/world/gen/jigsaw/CustomJigsawStructure.java index 88bdba6c45..082b16c922 100644 --- a/src/main/java/pokecube/core/world/gen/jigsaw/CustomJigsawStructure.java +++ b/src/main/java/pokecube/core/world/gen/jigsaw/CustomJigsawStructure.java @@ -104,8 +104,7 @@ public class CustomJigsawStructure extends NoiseAffectingStructureFeature - { + sworld.getServer().execute(() -> { sworld.setDefaultSpawnPos(spos, 0); }); piece.placedSpawn = false; @@ -121,8 +120,7 @@ public class CustomJigsawStructure extends NoiseAffectingStructureFeature codec) { - super(codec, (context) -> - { + super(codec, (context) -> { JigsawConfig config = context.config(); boolean validContext = false; @@ -132,11 +130,22 @@ public CustomJigsawStructure(final Codec codec) final int x = context.chunkPos().getBlockX(7); final int z = context.chunkPos().getBlockZ(7); final BlockPos pos = new BlockPos(x, chunkGenerator.getSeaLevel(), z); - Set biomes = context.biomeSource().getBiomesWithin(pos.getX(), pos.getY(), pos.getZ(), 16, + + int dist = context.config().struct_config.needed_space; + boolean any = dist == -1; + if (any) dist = 1; + + Set biomes = context.biomeSource().getBiomesWithin(pos.getX(), pos.getY(), pos.getZ(), dist, chunkGenerator.climateSampler()); + + if (!any) validContext = !biomes.isEmpty(); + for (Biome b : biomes) { - validContext = validContext || config.struct_config._matcher.checkBiome(BiomeDatabase.getKey(b)); + if (any) + validContext = validContext || config.struct_config._matcher.checkBiome(BiomeDatabase.getKey(b)); + else + validContext = validContext && config.struct_config._matcher.checkBiome(BiomeDatabase.getKey(b)); } if (!validContext) { diff --git a/src/main/resources/data/pokecube_legends/structures/village_ocean.json b/src/main/resources/data/pokecube_legends/structures/village_ocean.json new file mode 100644 index 0000000000..b8bddc8543 --- /dev/null +++ b/src/main/resources/data/pokecube_legends/structures/village_ocean.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "name":"pokecube_legends:village/ocean/town_centers", + "rigid":true, + "ignoreAir":false, + "options":[ + "pokecube_legends:village/ocean/town_centers/center_1;{\"extra\":{\"markers_to_air\":true}}" + ] + }, + { + "name":"pokecube_legends:village/ocean/town_centers/bottom_1", + "rigid":true, + "ignoreAir":false, + "options":[ + "pokecube_legends:village/ocean/town_centers/bottom_1;{\"extra\":{\"markers_to_air\":true}}" + ] + }, + { + "name":"pokecube_legends:village/ocean/town_centers/bottom_2", + "rigid":true, + "ignoreAir":false, + "options":[ + "pokecube_legends:village/ocean/town_centers/bottom_2;{\"extra\":{\"markers_to_air\":true}}" + ] + }, + { + "name":"pokecube_legends:village/ocean/terminators", + "rigid":true, + "options":[ + "pokecube_legends:village/ocean/terminators/terminator_01" + ] + }, + { + "name":"pokecube_legends:village/ocean/streets", + "rigid":true, + "ignoreAir":false, + "options":[ + "pokecube_legends:village/ocean/streets/road_1;{\"weight\":3,\"extra\":{\"markers_to_air\":true}}", + "pokecube_legends:village/ocean/streets/road_2;{\"weight\":5,\"extra\":{\"markers_to_air\":true}}", + "pokecube_legends:village/ocean/streets/road_close;{\"weight\":2,\"extra\":{\"markers_to_air\":true}}" + ] + }, + { + "name":"pokecube_legends:village/ocean/pokecenter/path", + "rigid":true, + "options":[ + "pokecube_legends:village/ocean/pokecenter/path" + ] + }, + { + "name":"pokecube_legends:village/ocean/gym/path", + "rigid":true, + "options":[ + "pokecube_legends:village/ocean/gym/path" + ] + }, + { + "name":"pokecube_legends:village/ocean/gym/aether_path", + "rigid":true, + "options":[ + "pokecube_legends:village/ocean/gym/aether_path" + ] + }, + { + "name":"pokecube_legends:village/ocean/room", + "rigid":true, + "options":[ + "pokecube_legends:village/ocean/room/room_1;{\"weight\":5}", + "pokecube_legends:village/ocean/room/room_2;{\"weight\":5}", + "pokecube_legends:village/ocean/room/room_3;{\"weight\":5}", + "pokecube_legends:village/ocean/room/room_4;{\"weight\":5}" + ] + }, + { + "name":"pokecube_legends:village/ocean/room_base", + "rigid":true, + "options":[ + "pokecube_legends:village/ocean/room_base/room_1;{\"weight\":5}", + "pokecube_legends:village/ocean/room_base/room_2;{\"weight\":3}" + ] + }, + { + "name":"pokecube_legends:village/ocean/top", + "rigid":true, + "options":[ + "pokecube_legends:village/ocean/top/aether_top_1", + "pokecube_legends:village/ocean/top/aether_top_2" + ] + }, + { + "name":"pokecube_legends:village/ocean/houses", + "ignoreAir":false, + "rigid":true, + "options":[ + "pokecube_legends:village/ocean/houses/house_close;{\"weight\":3,\"extra\":{\"markers_to_air\":true}}", + "pokecube_legends:village/ocean/houses/house_1;{\"weight\":8,\"extra\":{\"markers_to_air\":true}}", + "pokecube_legends:village/ocean/houses/house_2;{\"weight\":8,\"extra\":{\"markers_to_air\":true}}", + "pokecube_legends:village/ocean/houses/house_3;{\"weight\":8,\"extra\":{\"markers_to_air\":true}}", + "pokecube_legends:village/ocean/houses/house_4;{\"weight\":8,\"extra\":{\"markers_to_air\":true}}", + "pokecube_legends:village/ocean/houses/house_5;{\"weight\":6,\"extra\":{\"markers_to_air\":true}}", + "pokecube_legends:village/ocean/pokecenter/center_01;{\"flag\":\"pokecenter\"}", + "pokecube_legends:village/ocean/gym/aether_base;{\"flag\":\"gym\"}" + ] + } + ], + "jigsaws": [ + { + "name":"pokecube_legends:village/ocean", + "root":"pokecube_legends:village/ocean/town_centers", + "chance":1, + "distance":32, + "separation":12, + "size":6, + "priority":10, + "biomeType":"beach", + "base_under":false, + "needed_space": 32, + "needed_once":[ + "pokecenter", + "gym" + ], + "dimBlacklist":[ + "the_nether", + "the_end" + ], + "spawn":{ + "values":{ + "biomes":"warm_ocean", + "typesBlacklist":"cold", + "categoryBlacklist":"the_end,nether,icy,beach" + } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/pokecube_world/dimension/overworld.json b/src/main/resources/data/pokecube_world/dimension/overworld.json index 16d2951321..7d071e869d 100644 --- a/src/main/resources/data/pokecube_world/dimension/overworld.json +++ b/src/main/resources/data/pokecube_world/dimension/overworld.json @@ -1,10 +1,204622 @@ { - "type": "pokecube_world:overworld", + "type": "minecraft:overworld", "generator": { "biome_source": { - "seed": 0, - "large_biomes": false, - "type": "minecraft:vanilla_layered" + "biomes": [ + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -1.2, + -1.05 + ] + }, + "biome": "minecraft:mushroom_fields" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -1.2, + -1.05 + ] + }, + "biome": "minecraft:mushroom_fields" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -1.05, + -0.455 + ] + }, + "biome": "minecraft:deep_frozen_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -1.05, + -0.455 + ] + }, + "biome": "minecraft:deep_frozen_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.455, + -0.19 + ] + }, + "biome": "minecraft:frozen_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.455, + -0.19 + ] + }, + "biome": "minecraft:frozen_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -1.05, + -0.455 + ] + }, + "biome": "minecraft:deep_cold_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -1.05, + -0.455 + ] + }, + "biome": "minecraft:deep_cold_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.455, + -0.19 + ] + }, + "biome": "minecraft:cold_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.455, + -0.19 + ] + }, + "biome": "minecraft:cold_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -1.05, + -0.455 + ] + }, + "biome": "minecraft:deep_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -1.05, + -0.455 + ] + }, + "biome": "minecraft:deep_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.455, + -0.19 + ] + }, + "biome": "minecraft:ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.455, + -0.19 + ] + }, + "biome": "minecraft:ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -1.05, + -0.455 + ] + }, + "biome": "minecraft:deep_lukewarm_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -1.05, + -0.455 + ] + }, + "biome": "minecraft:deep_lukewarm_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.455, + -0.19 + ] + }, + "biome": "minecraft:lukewarm_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.455, + -0.19 + ] + }, + "biome": "minecraft:lukewarm_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -1.05, + -0.455 + ] + }, + "biome": "minecraft:warm_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -1.05, + -0.455 + ] + }, + "biome": "minecraft:warm_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.455, + -0.19 + ] + }, + "biome": "minecraft:warm_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.455, + -0.19 + ] + }, + "biome": "minecraft:warm_ocean" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:stony_shore" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:stony_shore" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:swamp" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:swamp" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -1.0, + -0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.9333, + -0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.7666, + -0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jagged_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.5666, + -0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:stony_shore" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:stony_shore" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:swamp" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:swamp" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.4, + -0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:stony_shore" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:stony_shore" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:swamp" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:swamp" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_spruce_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:flower_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.2666, + -0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:frozen_river" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:frozen_river" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:river" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:river" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:frozen_river" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:frozen_river" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:river" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:river" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_river" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_river" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:river" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:river" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:frozen_river" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:frozen_river" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:river" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:river" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:swamp" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:swamp" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:frozen_river" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:frozen_river" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + -0.05, + 0.05 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:stony_shore" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:stony_shore" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:swamp" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:swamp" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:beach" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.05, + 0.2666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:stony_shore" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:stony_shore" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:swamp" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:swamp" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.2666, + 0.4 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.4, + 0.5666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.5666, + 0.7666 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:frozen_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:stony_peaks" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.7666, + 0.9333 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:stony_shore" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:stony_shore" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:swamp" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:swamp" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:ice_spikes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:snowy_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_gravelly_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_pine_taiga" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sunflower_plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:snowy_slopes" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:meadow" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_hills" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:old_growth_birch_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:grove" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:windswept_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:dark_forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:savanna_plateau" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:savanna" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:plains" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:forest" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:sparse_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:bamboo_jungle" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:eroded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:windswept_savanna" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -1.0, + -0.7799 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.7799, + -0.375 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 0.3 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.375, + -0.2225 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.3, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + -0.2225, + 0.05 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:wooded_badlands" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.05, + 0.45 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.11, + 0.03 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.45, + 0.55 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + 0.03, + 1.0 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 0.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + 0.55, + 1.0 + ], + "depth": 1.0, + "weirdness": [ + 0.9333, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "continentalness": [ + -0.19, + -0.11 + ] + }, + "biome": "minecraft:desert" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": [ + 0.2, + 0.9 + ], + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "continentalness": [ + 0.8, + 1.0 + ] + }, + "biome": "minecraft:dripstone_caves" + }, + { + "parameters": { + "erosion": [ + -1.0, + 1.0 + ], + "depth": [ + 0.2, + 0.9 + ], + "weirdness": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "humidity": [ + 0.7, + 1.0 + ], + "continentalness": [ + -1.0, + 1.0 + ] + }, + "biome": "minecraft:lush_caves" + } + ], + "type": "minecraft:multi_noise" }, "seed": 0, "settings": "minecraft:overworld",