From d1baf88d5bd73d12f6f4faa4b2a3b84d93b5b840 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Fri, 18 Jul 2025 02:28:21 +0100 Subject: [PATCH] Merging in mars worldgen branch (#1370) * red granite is now a real stone type * starting mars rock layers * fixed red granite * flipped the continentalness! thanks stardust --- .../tfg/blockstates/loose/red_granite.json | 55 + .../rock/hardened_red_granite.json | 7 + .../blockstates/spike/red_granite_spike.json | 13 + .../tfg/models/block/loose/red_granite_1.json | 6 + .../tfg/models/block/loose/red_granite_2.json | 6 + .../tfg/models/block/loose/red_granite_3.json | 6 + .../block/rock/hardened_red_granite.json | 6 + .../models/block/spike/red_granite_base.json | 7 + .../block/spike/red_granite_middle.json | 7 + .../models/block/spike/red_granite_tip.json | 7 + kubejs/data/ad_astra/dimension/mars.json | 169885 +++------------ .../biome/mars/martian_dune_edge.json | 75 + .../worldgen/biome/mars/martian_dunes.json | 75 + .../worldgen/biome/mars/martian_forests.json | 75 + .../worldgen/biome/mars/martian_hills.json | 75 + .../biome/mars/martian_mountains.json | 36 +- .../worldgen/biome/mars/martian_oasis.json | 75 + .../worldgen/biome/mars/martian_plains.json | 36 +- .../worldgen/biome/mars/martian_riverbed.json | 36 +- .../configured_carver/mars_canyon.json | 55 + .../worldgen/configured_carver/mars_cave.json | 48 + .../density_function/mars/base_3d_noise.json | 8 + .../mars/caves/entrances.json | 83 + .../density_function/mars/caves/noodle.json | 94 + .../density_function/mars/caves/pillars.json | 50 + .../mars/caves/spaghetti_2d.json | 61 + .../spaghetti_2d_thickness_modulator.json | 17 + .../caves/spaghetti_roughness_function.json | 33 + .../density_function/mars/continents.json | 34 + .../worldgen/density_function/mars/depth.json | 11 + .../density_function/mars/erosion.json | 12 + .../density_function/mars/factor.json | 890 + .../density_function/mars/jaggedness.json | 303 + .../density_function/mars/offset.json | 1523 + .../density_function/mars/ridges.json | 12 + .../density_function/mars/ridges_folded.json | 19 + .../density_function/mars/sloped_cheese.json | 32 + .../data/tfg/worldgen/mars_rock_layers.json | 130 - .../worldgen/noise/stone_layer_mars_1.json | 2 +- .../worldgen/noise/stone_layer_mars_2.json | 2 +- .../worldgen/noise_settings/mars_noise.json | 1290 +- .../placed_feature/mars/hardening.json | 186 + kubejs/server_scripts/ad_astra/tags.js | 35 + kubejs/startup_scripts/tfg/blocks.space.js | 26 + kubejs/startup_scripts/tfg/constants.js | 4 +- kubejs/startup_scripts/tfg/fluids.js | 10 + 46 files changed, 38755 insertions(+), 136703 deletions(-) create mode 100644 kubejs/assets/tfg/blockstates/loose/red_granite.json create mode 100644 kubejs/assets/tfg/blockstates/rock/hardened_red_granite.json create mode 100644 kubejs/assets/tfg/blockstates/spike/red_granite_spike.json create mode 100644 kubejs/assets/tfg/models/block/loose/red_granite_1.json create mode 100644 kubejs/assets/tfg/models/block/loose/red_granite_2.json create mode 100644 kubejs/assets/tfg/models/block/loose/red_granite_3.json create mode 100644 kubejs/assets/tfg/models/block/rock/hardened_red_granite.json create mode 100644 kubejs/assets/tfg/models/block/spike/red_granite_base.json create mode 100644 kubejs/assets/tfg/models/block/spike/red_granite_middle.json create mode 100644 kubejs/assets/tfg/models/block/spike/red_granite_tip.json create mode 100644 kubejs/data/tfg/worldgen/biome/mars/martian_dune_edge.json create mode 100644 kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json create mode 100644 kubejs/data/tfg/worldgen/biome/mars/martian_forests.json create mode 100644 kubejs/data/tfg/worldgen/biome/mars/martian_hills.json create mode 100644 kubejs/data/tfg/worldgen/biome/mars/martian_oasis.json create mode 100644 kubejs/data/tfg/worldgen/configured_carver/mars_canyon.json create mode 100644 kubejs/data/tfg/worldgen/configured_carver/mars_cave.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/base_3d_noise.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/caves/entrances.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/caves/noodle.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/caves/pillars.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_2d.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_2d_thickness_modulator.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_roughness_function.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/continents.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/depth.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/erosion.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/factor.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/jaggedness.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/offset.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/ridges.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/ridges_folded.json create mode 100644 kubejs/data/tfg/worldgen/density_function/mars/sloped_cheese.json delete mode 100644 kubejs/data/tfg/worldgen/mars_rock_layers.json create mode 100644 kubejs/data/tfg/worldgen/placed_feature/mars/hardening.json diff --git a/kubejs/assets/tfg/blockstates/loose/red_granite.json b/kubejs/assets/tfg/blockstates/loose/red_granite.json new file mode 100644 index 000000000..c47cad90e --- /dev/null +++ b/kubejs/assets/tfg/blockstates/loose/red_granite.json @@ -0,0 +1,55 @@ +{ + "variants": { + "count=1": [ + { + "model": "tfg:block/loose/red_granite_1", + "y": 90 + }, + { + "model": "tfg:block/loose/red_granite_1" + }, + { + "model": "tfg:block/loose/red_granite_1", + "y": 180 + }, + { + "model": "tfg:block/loose/red_granite_1", + "y": 270 + } + ], + "count=2": [ + { + "model": "tfg:block/loose/red_granite_2", + "y": 90 + }, + { + "model": "tfg:block/loose/red_granite_2" + }, + { + "model": "tfg:block/loose/red_granite_2", + "y": 180 + }, + { + "model": "tfg:block/loose/red_granite_2", + "y": 270 + } + ], + "count=3": [ + { + "model": "tfg:block/loose/red_granite_3", + "y": 90 + }, + { + "model": "tfg:block/loose/red_granite_3" + }, + { + "model": "tfg:block/loose/red_granite_3", + "y": 180 + }, + { + "model": "tfg:block/loose/red_granite_3", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/hardened_red_granite.json b/kubejs/assets/tfg/blockstates/rock/hardened_red_granite.json new file mode 100644 index 000000000..ae062d2ae --- /dev/null +++ b/kubejs/assets/tfg/blockstates/rock/hardened_red_granite.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "tfg:block/rock/hardened_red_granite" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/spike/red_granite_spike.json b/kubejs/assets/tfg/blockstates/spike/red_granite_spike.json new file mode 100644 index 000000000..33c19859e --- /dev/null +++ b/kubejs/assets/tfg/blockstates/spike/red_granite_spike.json @@ -0,0 +1,13 @@ +{ + "variants": { + "part=base": { + "model": "tfg:block/spike/red_granite_base" + }, + "part=middle": { + "model": "tfg:block/spike/red_granite_middle" + }, + "part=tip": { + "model": "tfg:block/spike/red_granite_tip" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/loose/red_granite_1.json b/kubejs/assets/tfg/models/block/loose/red_granite_1.json new file mode 100644 index 000000000..4bc17ce24 --- /dev/null +++ b/kubejs/assets/tfg/models/block/loose/red_granite_1.json @@ -0,0 +1,6 @@ +{ + "parent": "tfc:block/rock/loose_igneous_intrusive_1", + "textures": { + "texture": "gtceu:block/stones/red_granite/stone" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/loose/red_granite_2.json b/kubejs/assets/tfg/models/block/loose/red_granite_2.json new file mode 100644 index 000000000..1a1778f08 --- /dev/null +++ b/kubejs/assets/tfg/models/block/loose/red_granite_2.json @@ -0,0 +1,6 @@ +{ + "parent": "tfc:block/rock/loose_igneous_intrusive_2", + "textures": { + "texture": "gtceu:block/stones/red_granite/stone" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/loose/red_granite_3.json b/kubejs/assets/tfg/models/block/loose/red_granite_3.json new file mode 100644 index 000000000..0346e0695 --- /dev/null +++ b/kubejs/assets/tfg/models/block/loose/red_granite_3.json @@ -0,0 +1,6 @@ +{ + "parent": "tfc:block/rock/loose_igneous_intrusive_3", + "textures": { + "texture": "gtceu:block/stones/red_granite/stone" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/rock/hardened_red_granite.json b/kubejs/assets/tfg/models/block/rock/hardened_red_granite.json new file mode 100644 index 000000000..015588363 --- /dev/null +++ b/kubejs/assets/tfg/models/block/rock/hardened_red_granite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "gtceu:block/stones/red_granite/stone" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/red_granite_base.json b/kubejs/assets/tfg/models/block/spike/red_granite_base.json new file mode 100644 index 000000000..043779ceb --- /dev/null +++ b/kubejs/assets/tfg/models/block/spike/red_granite_base.json @@ -0,0 +1,7 @@ +{ + "parent": "tfc:block/rock/spike_base", + "textures": { + "texture": "gtceu:block/stones/red_granite/stone", + "particle": "gtceu:block/stones/red_granite/stone" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/red_granite_middle.json b/kubejs/assets/tfg/models/block/spike/red_granite_middle.json new file mode 100644 index 000000000..5ee27d884 --- /dev/null +++ b/kubejs/assets/tfg/models/block/spike/red_granite_middle.json @@ -0,0 +1,7 @@ +{ + "parent": "tfc:block/rock/spike_middle", + "textures": { + "texture": "gtceu:block/stones/red_granite/stone", + "particle": "gtceu:block/stones/red_granite/stone" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/spike/red_granite_tip.json b/kubejs/assets/tfg/models/block/spike/red_granite_tip.json new file mode 100644 index 000000000..0a70c78b8 --- /dev/null +++ b/kubejs/assets/tfg/models/block/spike/red_granite_tip.json @@ -0,0 +1,7 @@ +{ + "parent": "tfc:block/rock/spike_tip", + "textures": { + "texture": "gtceu:block/stones/red_granite/stone", + "particle": "gtceu:block/stones/red_granite/stone" + } +} \ No newline at end of file diff --git a/kubejs/data/ad_astra/dimension/mars.json b/kubejs/data/ad_astra/dimension/mars.json index 9a3ecd53e..f53850403 100644 --- a/kubejs/data/ad_astra/dimension/mars.json +++ b/kubejs/data/ad_astra/dimension/mars.json @@ -6,7 +6,7 @@ "type": "minecraft:multi_noise", "biomes": [ { - "biome": "minecraft:mushroom_fields", + "biome": "tfg:mars/martian_oasis", "parameters": { "continentalness": [ -1.2, @@ -33,34 +33,7 @@ } }, { - "biome": "minecraft:mushroom_fields", - "parameters": { - "continentalness": [ - -1.2, - -1.05 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:deep_frozen_ocean", + "biome": "tfg:mars/martian_dunes", "parameters": { "continentalness": [ -1.05, @@ -87,34 +60,7 @@ } }, { - "biome": "minecraft:deep_frozen_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:frozen_ocean", + "biome": "tfg:mars/martian_dunes", "parameters": { "continentalness": [ -0.455, @@ -141,34 +87,7 @@ } }, { - "biome": "minecraft:frozen_ocean", - "parameters": { - "continentalness": [ - -0.455, - -0.19 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:deep_cold_ocean", + "biome": "tfg:mars/martian_dunes", "parameters": { "continentalness": [ -1.05, @@ -195,34 +114,7 @@ } }, { - "biome": "minecraft:deep_cold_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:cold_ocean", + "biome": "tfg:mars/martian_dunes", "parameters": { "continentalness": [ -0.455, @@ -249,34 +141,7 @@ } }, { - "biome": "minecraft:cold_ocean", - "parameters": { - "continentalness": [ - -0.455, - -0.19 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:deep_ocean", + "biome": "tfg:mars/martian_dunes", "parameters": { "continentalness": [ -1.05, @@ -303,34 +168,7 @@ } }, { - "biome": "minecraft:deep_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:ocean", + "biome": "tfg:mars/martian_dunes", "parameters": { "continentalness": [ -0.455, @@ -357,34 +195,7 @@ } }, { - "biome": "minecraft:ocean", - "parameters": { - "continentalness": [ - -0.455, - -0.19 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:deep_lukewarm_ocean", + "biome": "tfg:mars/martian_dunes", "parameters": { "continentalness": [ -1.05, @@ -411,34 +222,7 @@ } }, { - "biome": "minecraft:deep_lukewarm_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:lukewarm_ocean", + "biome": "tfg:mars/martian_dunes", "parameters": { "continentalness": [ -0.455, @@ -465,34 +249,7 @@ } }, { - "biome": "minecraft:lukewarm_ocean", - "parameters": { - "continentalness": [ - -0.455, - -0.19 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:warm_ocean", + "biome": "tfg:mars/martian_dunes", "parameters": { "continentalness": [ -1.05, @@ -519,34 +276,7 @@ } }, { - "biome": "minecraft:warm_ocean", - "parameters": { - "continentalness": [ - -1.05, - -0.455 - ], - "depth": 1, - "erosion": [ - -1, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - 1 - ] - } - }, - { - "biome": "minecraft:warm_ocean", + "biome": "tfg:mars/martian_dunes", "parameters": { "continentalness": [ -0.455, @@ -573,16 +303,16 @@ } }, { - "biome": "minecraft:warm_ocean", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.455, - -0.19 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ -1, - 1 + -0.2225 ], "humidity": [ -1, @@ -590,26 +320,26 @@ ], "offset": 0, "temperature": [ - 0.55, + -1, 1 ], "weirdness": [ -1, - 1 + -0.9333 ] } }, { - "biome": "minecraft:stony_shore", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ - -1, - -0.2225 + 0.55, + 1 ], "humidity": [ -1, @@ -617,8 +347,8 @@ ], "offset": 0, "temperature": [ - -1, - 1 + -0.45, + 0.2 ], "weirdness": [ -1, @@ -627,16 +357,16 @@ } }, { - "biome": "minecraft:stony_shore", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.2225 + 0.55, + 1 ], "humidity": [ -1, @@ -644,7 +374,7 @@ ], "offset": 0, "temperature": [ - -1, + 0.2, 1 ], "weirdness": [ @@ -654,7 +384,7 @@ } }, { - "biome": "minecraft:swamp", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, @@ -662,17 +392,17 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ -1, - 1 + -0.35 ], "offset": 0, "temperature": [ - -0.45, - 0.2 + -1, + -0.45 ], "weirdness": [ -1, @@ -681,25 +411,25 @@ } }, { - "biome": "minecraft:swamp", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ -1, - 1 + -0.35 ], "offset": 0, "temperature": [ - -0.45, - 0.2 + -1, + -0.45 ], "weirdness": [ -1, @@ -708,25 +438,25 @@ } }, { - "biome": "minecraft:mangrove_swamp", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ -1, - 1 + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 1 + -1, + -0.45 ], "weirdness": [ -1, @@ -735,25 +465,25 @@ } }, { - "biome": "minecraft:mangrove_swamp", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ -1, - 1 + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 1 + -1, + -0.45 ], "weirdness": [ -1, @@ -762,16 +492,16 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -789,16 +519,16 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -816,16 +546,16 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ -1, @@ -843,16 +573,16 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ -1, @@ -870,16 +600,16 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ -1, @@ -897,16 +627,16 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ -1, @@ -924,16 +654,16 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ -1, @@ -951,16 +681,16 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ -1, @@ -978,16 +708,16 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ -1, @@ -1005,16 +735,16 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ -1, @@ -1032,16 +762,16 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ -1, @@ -1059,20 +789,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -1086,20 +816,47 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ -1, - -0.35 + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": 0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -1113,20 +870,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -1140,20 +897,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -1167,20 +924,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -1194,20 +951,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -1221,20 +978,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -1248,11 +1005,11 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ @@ -1260,8 +1017,8 @@ 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -1275,20 +1032,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -1302,7 +1059,7 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -1314,8 +1071,8 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -1329,20 +1086,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -1356,11 +1113,11 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -1368,8 +1125,8 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -1383,20 +1140,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -1410,20 +1167,20 @@ } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -1437,20 +1194,20 @@ } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -1464,20 +1221,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -1491,20 +1248,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -1518,20 +1275,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -1545,20 +1302,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -1572,20 +1329,47 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ -1, - -0.7799 + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -1599,20 +1383,47 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ -1, - -0.7799 + -0.45 + ], + "weirdness": [ + -1, + -0.9333 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -1626,20 +1437,20 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -1653,20 +1464,20 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -1680,20 +1491,20 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -1707,20 +1518,20 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -1734,20 +1545,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -1761,20 +1572,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -1788,20 +1599,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -1815,20 +1626,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -1842,7 +1653,7 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.3, @@ -1850,12 +1661,12 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -1869,20 +1680,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -1896,20 +1707,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -1923,20 +1734,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -1950,11 +1761,11 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -1962,8 +1773,8 @@ 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -1977,20 +1788,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -2004,7 +1815,7 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -2016,8 +1827,8 @@ 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -2031,20 +1842,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -2058,20 +1869,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -2085,20 +1896,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -2112,11 +1923,11 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -2124,8 +1935,8 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -2139,20 +1950,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -2166,20 +1977,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -2193,20 +2004,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2220,20 +2031,20 @@ } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2247,20 +2058,20 @@ } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2274,20 +2085,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2301,20 +2112,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2328,20 +2139,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2355,20 +2166,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2382,20 +2193,20 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2409,20 +2220,20 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2436,20 +2247,20 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2463,20 +2274,20 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2490,20 +2301,20 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2517,20 +2328,20 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2544,20 +2355,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2571,20 +2382,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -2598,25 +2409,25 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -2625,25 +2436,25 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -2652,7 +2463,7 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.3, @@ -2660,17 +2471,17 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -2679,25 +2490,25 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -2706,25 +2517,25 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -2733,25 +2544,25 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -2760,11 +2571,11 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -2772,13 +2583,13 @@ 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -2787,25 +2598,25 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -2814,7 +2625,7 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -2826,13 +2637,13 @@ 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -2841,25 +2652,25 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -2868,25 +2679,25 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -2895,25 +2706,25 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -2922,11 +2733,11 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -2934,13 +2745,13 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -2949,25 +2760,25 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -2976,25 +2787,25 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3003,25 +2814,25 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3030,25 +2841,25 @@ } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3057,25 +2868,25 @@ } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3084,25 +2895,25 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3111,25 +2922,25 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3138,25 +2949,25 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3165,25 +2976,25 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3192,25 +3003,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3219,25 +3030,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3246,25 +3057,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3273,25 +3084,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3300,25 +3111,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3327,25 +3138,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3354,25 +3165,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3381,25 +3192,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3408,25 +3219,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3435,25 +3246,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3462,11 +3273,11 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ @@ -3474,13 +3285,13 @@ -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3489,25 +3300,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3516,7 +3327,7 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -3528,13 +3339,13 @@ 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3543,25 +3354,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3570,25 +3381,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3597,25 +3408,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3624,7 +3435,7 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -3632,17 +3443,17 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3651,25 +3462,25 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3678,25 +3489,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3705,25 +3516,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3732,16 +3543,16 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -3749,8 +3560,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3759,16 +3570,16 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -3776,8 +3587,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3786,16 +3597,16 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -3803,8 +3614,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3813,16 +3624,16 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -3830,8 +3641,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3840,16 +3651,16 @@ } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -3857,8 +3668,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3867,16 +3678,16 @@ } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -3884,8 +3695,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3894,16 +3705,16 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -3911,8 +3722,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3921,16 +3732,16 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -3938,8 +3749,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3948,16 +3759,16 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -3965,8 +3776,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -3975,16 +3786,16 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -3992,8 +3803,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4002,25 +3813,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4029,25 +3840,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4056,25 +3867,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4083,25 +3894,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4110,16 +3921,16 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ 0.3, @@ -4127,8 +3938,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4137,13 +3948,13 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 - ], - "depth": 1, + -0.11, + 0.3 + ], + "depth": 0, "erosion": [ -0.7799, -0.375 @@ -4154,8 +3965,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4164,16 +3975,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -4181,8 +3992,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4191,13 +4002,13 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 @@ -4208,8 +4019,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4218,7 +4029,7 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -4235,8 +4046,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4245,13 +4056,13 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 @@ -4262,8 +4073,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4272,16 +4083,16 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -4289,8 +4100,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4299,16 +4110,16 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -4316,8 +4127,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4326,16 +4137,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -4343,8 +4154,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4353,16 +4164,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -4370,8 +4181,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4380,16 +4191,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -4397,8 +4208,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4407,16 +4218,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -4424,8 +4235,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4434,16 +4245,16 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -4451,8 +4262,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4461,16 +4272,16 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ 0.3, @@ -4478,8 +4289,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ -1, @@ -4488,7 +4299,7 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, @@ -4496,17 +4307,17 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4515,25 +4326,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4542,25 +4353,25 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4569,25 +4380,25 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4596,25 +4407,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4623,25 +4434,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4650,25 +4461,25 @@ } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4677,25 +4488,25 @@ } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4704,7 +4515,7 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -4712,17 +4523,17 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4731,25 +4542,25 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4758,25 +4569,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4785,25 +4596,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4812,16 +4623,16 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ -1, @@ -4829,8 +4640,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4839,16 +4650,16 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ -1, @@ -4856,8 +4667,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4866,25 +4677,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4893,25 +4704,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4920,7 +4731,7 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.3, @@ -4932,13 +4743,13 @@ -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4947,25 +4758,25 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -4974,11 +4785,11 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ @@ -4986,13 +4797,13 @@ -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5001,25 +4812,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5028,25 +4839,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5055,25 +4866,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5082,25 +4893,25 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5109,25 +4920,25 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5136,25 +4947,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5163,25 +4974,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5190,7 +5001,7 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -5198,17 +5009,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5217,25 +5028,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5244,25 +5055,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5271,25 +5082,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5298,25 +5109,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5325,25 +5136,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5352,25 +5163,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5379,25 +5190,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5406,25 +5217,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5433,25 +5244,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5460,25 +5271,25 @@ } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5487,25 +5298,25 @@ } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5514,7 +5325,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -5522,17 +5333,17 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5541,25 +5352,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5568,25 +5379,25 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5595,25 +5406,25 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5622,25 +5433,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5649,25 +5460,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5676,7 +5487,7 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.3, @@ -5688,13 +5499,13 @@ -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5703,25 +5514,25 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5730,11 +5541,11 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ @@ -5742,13 +5553,13 @@ -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5757,25 +5568,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5784,25 +5595,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5811,25 +5622,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5838,25 +5649,25 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5865,25 +5676,25 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5892,25 +5703,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5919,25 +5730,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5946,7 +5757,7 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -5954,17 +5765,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -5973,25 +5784,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6000,25 +5811,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6027,25 +5838,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6054,25 +5865,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6081,25 +5892,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6108,25 +5919,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6135,25 +5946,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, + 0.3, + 1 + ], + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6162,25 +5973,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6189,25 +6000,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6216,25 +6027,25 @@ } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6243,25 +6054,25 @@ } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6270,7 +6081,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -6278,17 +6089,17 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6297,25 +6108,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6324,25 +6135,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6351,25 +6162,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ -1, @@ -6378,25 +6189,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6405,25 +6216,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6432,7 +6243,7 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.3, @@ -6444,13 +6255,13 @@ -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6459,25 +6270,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6486,11 +6297,11 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ @@ -6498,13 +6309,13 @@ -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6513,25 +6324,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6540,25 +6351,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6567,25 +6378,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6594,25 +6405,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6621,25 +6432,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6648,25 +6459,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6675,25 +6486,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6702,7 +6513,7 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -6710,17 +6521,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6729,25 +6540,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6756,25 +6567,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6783,25 +6594,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6810,25 +6621,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6837,25 +6648,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6864,25 +6675,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6891,25 +6702,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6918,25 +6729,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6945,25 +6756,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6972,25 +6783,25 @@ } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -6999,25 +6810,25 @@ } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7026,7 +6837,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -7034,17 +6845,17 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7053,25 +6864,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7080,25 +6891,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7107,25 +6918,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7134,25 +6945,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7161,25 +6972,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7188,7 +6999,7 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.3, @@ -7200,13 +7011,13 @@ -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7215,25 +7026,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7242,11 +7053,11 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ @@ -7254,13 +7065,13 @@ -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7269,25 +7080,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7296,25 +7107,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7323,25 +7134,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7350,25 +7161,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7377,25 +7188,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7404,25 +7215,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7431,25 +7242,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7458,7 +7269,7 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -7466,17 +7277,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7485,25 +7296,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7512,16 +7323,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -7529,8 +7340,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7539,16 +7350,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -7556,8 +7367,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7566,16 +7377,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -7583,8 +7394,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7593,16 +7404,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -7610,8 +7421,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7620,16 +7431,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -7637,8 +7448,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7647,16 +7458,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -7664,8 +7475,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7674,16 +7485,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -7691,8 +7502,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7701,16 +7512,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -7718,8 +7529,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7728,16 +7539,16 @@ } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -7745,8 +7556,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7755,16 +7566,16 @@ } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -7772,8 +7583,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7782,7 +7593,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -7790,8 +7601,8 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -7799,8 +7610,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7809,16 +7620,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -7826,8 +7637,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7836,25 +7647,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7863,25 +7674,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7890,16 +7701,16 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ 0.3, @@ -7907,8 +7718,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7917,13 +7728,13 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 @@ -7934,8 +7745,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7944,7 +7755,7 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.3, @@ -7961,8 +7772,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7971,16 +7782,16 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -7988,8 +7799,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -7998,11 +7809,11 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ @@ -8015,8 +7826,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -8025,13 +7836,13 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 @@ -8042,8 +7853,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -8052,16 +7863,16 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -8069,8 +7880,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -8079,16 +7890,16 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -8096,8 +7907,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -8106,16 +7917,16 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -8123,8 +7934,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -8133,16 +7944,16 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -8150,8 +7961,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -8160,16 +7971,16 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -8177,8 +7988,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -8187,16 +7998,16 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -8204,8 +8015,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -8214,7 +8025,7 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -8222,8 +8033,8 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -8231,8 +8042,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -8241,16 +8052,16 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ 0.3, @@ -8258,8 +8069,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ -1, @@ -8268,25 +8079,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ -1, @@ -8295,25 +8106,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ -1, @@ -8322,25 +8133,25 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ -1, @@ -8349,25 +8160,25 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ -1, @@ -8376,25 +8187,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ -1, @@ -8403,25 +8214,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ -1, @@ -8430,25 +8241,25 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ -1, @@ -8457,25 +8268,25 @@ } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ -1, @@ -8484,25 +8295,25 @@ } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ -1, @@ -8511,25 +8322,25 @@ } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ -1, @@ -8538,7 +8349,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -8546,17 +8357,17 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ -1, @@ -8565,25 +8376,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ -1, @@ -8592,16 +8403,16 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ -1, @@ -8609,8 +8420,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8619,16 +8430,16 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ -1, @@ -8636,8 +8447,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8646,25 +8457,25 @@ } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8673,25 +8484,25 @@ } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8700,7 +8511,7 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.3, @@ -8712,13 +8523,13 @@ -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8727,25 +8538,25 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8754,11 +8565,11 @@ } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ @@ -8766,13 +8577,13 @@ -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8781,25 +8592,25 @@ } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8808,25 +8619,25 @@ } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8835,25 +8646,25 @@ } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8862,25 +8673,25 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8889,25 +8700,25 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8916,25 +8727,25 @@ } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8943,25 +8754,25 @@ } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8970,7 +8781,7 @@ } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -8978,17 +8789,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -8997,25 +8808,25 @@ } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9024,25 +8835,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9051,25 +8862,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9078,25 +8889,25 @@ } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9105,25 +8916,25 @@ } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9132,25 +8943,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9159,25 +8970,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9186,25 +8997,25 @@ } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9213,25 +9024,25 @@ } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9240,25 +9051,25 @@ } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9267,25 +9078,25 @@ } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9294,7 +9105,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -9302,17 +9113,17 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9321,25 +9132,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9348,25 +9159,25 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9375,25 +9186,25 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9402,25 +9213,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9429,25 +9240,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9456,7 +9267,7 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.3, @@ -9468,13 +9279,13 @@ -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9483,25 +9294,25 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9510,11 +9321,11 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ @@ -9522,13 +9333,13 @@ -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9537,25 +9348,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9564,25 +9375,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9591,25 +9402,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9618,25 +9429,25 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9645,25 +9456,25 @@ } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9672,25 +9483,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9699,25 +9510,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9726,7 +9537,7 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -9734,17 +9545,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9753,25 +9564,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9780,25 +9591,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9807,25 +9618,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9834,25 +9645,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9861,25 +9672,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9888,25 +9699,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9915,25 +9726,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 - ], + 0.3, + 1 + ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9942,25 +9753,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9969,25 +9780,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -9996,25 +9807,25 @@ } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -10023,25 +9834,25 @@ } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -10050,7 +9861,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -10058,17 +9869,17 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -10077,25 +9888,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -10104,25 +9915,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -10131,25 +9942,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ -1, @@ -10158,173 +9969,173 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - -0.2225 + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ @@ -10332,49 +10143,49 @@ -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.3, @@ -10382,53 +10193,53 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -10436,381 +10247,408 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ @@ -10818,31 +10656,31 @@ 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ -0.1, @@ -10850,21 +10688,21 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ @@ -10872,53 +10710,53 @@ -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], "depth": 0, "erosion": [ @@ -10926,274 +10764,274 @@ -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ 0.1, @@ -11201,26 +11039,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -11228,17 +11066,17 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -11246,8 +11084,8 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -11255,26 +11093,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -11282,26 +11120,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -11309,26 +11147,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ 0.1, @@ -11336,26 +11174,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -11363,26 +11201,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -11390,26 +11228,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -11417,26 +11255,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -11444,20 +11282,20 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, @@ -11471,23 +11309,23 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -11498,26 +11336,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ 0.1, @@ -11525,44 +11363,17 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -11570,57 +11381,30 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ @@ -11633,23 +11417,23 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 @@ -11660,21 +11444,21 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], "depth": 0, "erosion": [ @@ -11687,23 +11471,23 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 @@ -11714,26 +11498,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -11741,26 +11525,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -11768,26 +11552,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -11795,26 +11579,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -11822,26 +11606,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -11849,26 +11633,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -11876,26 +11660,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -11903,26 +11687,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ 0.3, @@ -11930,71 +11714,71 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -12002,218 +11786,218 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, @@ -12222,535 +12006,535 @@ 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 - ], + -1, + -0.7799 + ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -12758,165 +12542,165 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ @@ -12924,589 +12708,589 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 0.3 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -13514,215 +13298,215 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, @@ -13730,485 +13514,458 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -14216,57 +13973,57 @@ ], "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ @@ -14274,53 +14031,53 @@ 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ @@ -14328,103 +14085,103 @@ 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -14432,8 +14189,8 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ -0.1, @@ -14441,26 +14198,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -14468,26 +14225,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -14495,26 +14252,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ -0.1, @@ -14522,17 +14279,17 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -14540,35 +14297,35 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 - ], + -0.7799, + -0.375 + ], "humidity": [ -0.1, 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ -0.1, @@ -14576,26 +14333,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ -0.1, @@ -14603,26 +14360,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ -0.1, @@ -14630,160 +14387,160 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ @@ -14792,17 +14549,17 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, @@ -14810,8 +14567,8 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -14819,26 +14576,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -14846,26 +14603,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -14873,26 +14630,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -14900,26 +14657,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ -0.375, - -0.2225 + 0.05 ], "humidity": [ 0.1, @@ -14927,23 +14684,23 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 @@ -14954,21 +14711,21 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ @@ -14981,23 +14738,23 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 @@ -15008,26 +14765,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -15035,26 +14792,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -15062,26 +14819,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -15089,26 +14846,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ 0.1, @@ -15116,179 +14873,179 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -15296,116 +15053,143 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, 0.55 ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -15413,26 +15197,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ 0.3, @@ -15440,30 +15224,30 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -15471,26 +15255,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -15498,26 +15282,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -15525,26 +15309,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -15552,26 +15336,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -15579,26 +15363,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - -0.2225 + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -15606,17 +15390,17 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ @@ -15624,8 +15408,8 @@ -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -15633,26 +15417,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -15660,13 +15444,13 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.3, @@ -15674,12 +15458,12 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -15687,26 +15471,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -15714,13 +15498,13 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -15728,12 +15512,12 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -15741,26 +15525,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -15768,26 +15552,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -15795,26 +15579,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -15822,26 +15606,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -15849,26 +15633,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -15876,26 +15660,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -15903,26 +15687,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -15930,26 +15714,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -15957,26 +15741,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -15984,53 +15768,80 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "tfg:mars/martian_hills", + "parameters": { + "continentalness": [ 0.3, 1 ], + "depth": 0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], "offset": 0, "temperature": [ 0.2, 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -16038,17 +15849,17 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -16056,8 +15867,8 @@ 0.55 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -16065,26 +15876,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -16092,17 +15903,17 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ @@ -16110,8 +15921,8 @@ 1 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -16119,26 +15930,26 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -16146,17 +15957,17 @@ 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ @@ -16164,53 +15975,53 @@ -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], "depth": 0, "erosion": [ @@ -16218,319 +16029,319 @@ -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -16538,269 +16349,242 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, 1 ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -16812,53 +16596,26 @@ 0.55 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -1, - -0.9333 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, + 0.2, 0.55 ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ @@ -16866,53 +16623,53 @@ 1 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ @@ -16920,53 +16677,53 @@ -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], "depth": 0, "erosion": [ @@ -16974,278 +16731,278 @@ -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -17253,26 +17010,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -17280,13 +17037,13 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -17294,12 +17051,12 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -17307,26 +17064,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -17334,26 +17091,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -17361,26 +17118,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -17388,26 +17145,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -17415,26 +17172,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -17442,26 +17199,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -17469,26 +17226,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -17496,16 +17253,16 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, @@ -17514,8 +17271,8 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -17523,26 +17280,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -17550,26 +17307,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -17577,22 +17334,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ -0.35, @@ -17604,22 +17361,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ -0.35, @@ -17631,22 +17388,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ -0.35, @@ -17658,26 +17415,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -17685,26 +17442,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -17712,26 +17469,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -17739,26 +17496,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -17766,26 +17523,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -17793,26 +17550,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -17820,26 +17577,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -17847,26 +17604,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -17874,26 +17631,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -17901,26 +17658,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -17928,22 +17685,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.375 ], "humidity": [ -0.1, @@ -17955,22 +17712,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -17982,22 +17739,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -18009,22 +17766,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ -0.1, @@ -18036,13 +17793,13 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -18050,8 +17807,8 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ -0.1, @@ -18063,21 +17820,21 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ @@ -18090,22 +17847,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ -0.1, @@ -18117,22 +17874,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ -0.1, @@ -18144,22 +17901,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ -0.1, @@ -18171,19 +17928,19 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 @@ -18198,17 +17955,17 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ @@ -18225,19 +17982,19 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -18252,22 +18009,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ -0.1, @@ -18279,26 +18036,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -18306,26 +18063,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -18333,26 +18090,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -18360,26 +18117,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -18387,26 +18144,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -18414,22 +18171,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ 0.1, @@ -18441,22 +18198,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -18468,22 +18225,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.03, 0.3 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -18495,22 +18252,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -18522,22 +18279,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -18549,22 +18306,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -18576,22 +18333,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -18603,22 +18360,22 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ 0.1, @@ -18630,26 +18387,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -18657,26 +18414,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -18684,26 +18441,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -18711,26 +18468,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -18738,26 +18495,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -18765,26 +18522,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -18792,13 +18549,13 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -18806,12 +18563,12 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -18819,26 +18576,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -18846,26 +18603,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -18873,26 +18630,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -18900,26 +18657,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -18927,26 +18684,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -18954,26 +18711,26 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -18981,422 +18738,422 @@ 1 ], "weirdness": [ - -1, - -0.9333 + -0.9333, + -0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - -0.2225 + 0.05 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ @@ -19404,49 +19161,49 @@ -0.2225 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.3, @@ -19454,53 +19211,53 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, @@ -19508,323 +19265,323 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -19836,116 +19593,116 @@ 0.55 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -1, - -0.9333 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -19953,26 +19710,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -19980,26 +19737,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -20007,26 +19764,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -20034,26 +19791,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -20061,26 +19818,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -20088,26 +19845,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -20115,26 +19872,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -20142,26 +19899,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -20169,26 +19926,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -20196,13 +19953,13 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, @@ -20210,12 +19967,12 @@ ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -20223,26 +19980,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -20250,26 +20007,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ -0.375, - -0.2225 + 0.05 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -20277,26 +20034,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -20304,13 +20061,13 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -20322,8 +20079,8 @@ 0.05 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -20331,26 +20088,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -20358,26 +20115,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -20385,26 +20142,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -20412,26 +20169,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -20439,26 +20196,26 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -20466,22 +20223,22 @@ -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ -1, @@ -20489,26 +20246,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ -1, @@ -20516,17 +20273,17 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -20534,8 +20291,8 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ -1, @@ -20543,26 +20300,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ -1, @@ -20570,26 +20327,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -20597,26 +20354,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ -1, @@ -20624,147 +20381,147 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, @@ -20772,10 +20529,10 @@ "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 @@ -20786,20 +20543,20 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, @@ -20813,23 +20570,23 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 @@ -20840,26 +20597,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ -0.35, @@ -20867,26 +20624,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ -0.35, @@ -20894,25 +20651,25 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ @@ -20921,25 +20678,25 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ @@ -20948,26 +20705,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ -0.35, @@ -20975,26 +20732,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ -0.35, @@ -21002,26 +20759,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ -0.35, @@ -21029,26 +20786,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ -0.35, @@ -21056,296 +20813,296 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.55, + 1 ], "humidity": [ -0.1, @@ -21353,530 +21110,530 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, @@ -21888,287 +21645,287 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, @@ -22176,193 +21933,193 @@ "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -22374,53 +22131,53 @@ -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -22428,103 +22185,103 @@ 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -22532,53 +22289,53 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -22586,264 +22343,264 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, @@ -22851,7 +22608,7 @@ "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, @@ -22860,53 +22617,53 @@ -0.7799 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -22914,49 +22671,49 @@ -0.375 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -22964,197 +22721,197 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ 0.3, @@ -23162,26 +22919,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -23189,26 +22946,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -23216,26 +22973,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -23243,26 +23000,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -23270,26 +23027,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -23297,26 +23054,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -23324,26 +23081,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -23351,23 +23108,23 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -23378,26 +23135,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -23405,23 +23162,23 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.55, 1 @@ -23432,26 +23189,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ -1, @@ -23459,25 +23216,25 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ @@ -23486,26 +23243,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ -1, @@ -23513,26 +23270,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ -1, @@ -23540,17 +23297,17 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -23558,8 +23315,8 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -23567,26 +23324,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ -1, @@ -23594,26 +23351,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ -1, @@ -23621,26 +23378,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ -1, @@ -23648,26 +23405,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ -1, @@ -23675,26 +23432,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ -1, @@ -23702,26 +23459,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ -1, @@ -23729,156 +23486,156 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ @@ -23886,49 +23643,49 @@ 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -23940,53 +23697,53 @@ 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -23994,377 +23751,377 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -24372,49 +24129,49 @@ -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -24426,211 +24183,211 @@ 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, @@ -24638,107 +24395,107 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -24746,431 +24503,431 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -25178,273 +24935,273 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -25452,49 +25209,49 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -25506,31 +25263,31 @@ 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -25538,233 +25295,233 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -25772,62 +25529,62 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -25835,26 +25592,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -25862,17 +25619,17 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -25880,8 +25637,8 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -25889,26 +25646,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - -0.2225 + 0.05 ], "humidity": [ 0.1, @@ -25916,26 +25673,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -25943,23 +25700,23 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 @@ -25970,17 +25727,17 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.3, @@ -25997,26 +25754,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -26024,26 +25781,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -26051,26 +25808,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -26078,26 +25835,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ 0.1, @@ -26105,161 +25862,161 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -26267,26 +26024,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -26294,26 +26051,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -26321,26 +26078,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -26348,17 +26105,17 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -26366,8 +26123,8 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -26375,26 +26132,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ 0.3, @@ -26402,71 +26159,71 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.7666, + -0.5666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -26474,107 +26231,107 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -26586,53 +26343,53 @@ -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -26640,103 +26397,103 @@ 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -26744,318 +26501,318 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, @@ -27068,107 +26825,107 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -27176,107 +26933,107 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -27288,53 +27045,53 @@ -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -27342,103 +27099,103 @@ 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -27446,318 +27203,318 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, @@ -27770,107 +27527,107 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -27878,107 +27635,107 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -27990,53 +27747,53 @@ -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -28044,103 +27801,103 @@ 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -28148,318 +27905,318 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, @@ -28472,107 +28229,107 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -28580,107 +28337,107 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -28692,53 +28449,53 @@ -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -28746,103 +28503,103 @@ 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -28850,35 +28607,35 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ -0.1, @@ -28886,26 +28643,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -28913,26 +28670,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -28940,26 +28697,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ -0.1, @@ -28967,26 +28724,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ -0.1, @@ -28994,26 +28751,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ -0.1, @@ -29021,26 +28778,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ -0.1, @@ -29048,120 +28805,120 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, @@ -29174,61 +28931,61 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ @@ -29237,26 +28994,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -29264,17 +29021,17 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -29282,8 +29039,8 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -29291,23 +29048,23 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 @@ -29318,26 +29075,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -29345,23 +29102,23 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 @@ -29372,17 +29129,17 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -29399,26 +29156,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -29426,21 +29183,21 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -29453,26 +29210,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -29480,26 +29237,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -29507,26 +29264,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -29534,17 +29291,17 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -29552,8 +29309,8 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ 0.1, @@ -29561,215 +29318,215 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -29777,26 +29534,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -29804,26 +29561,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -29831,26 +29588,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -29858,12 +29615,12 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, @@ -29876,8 +29633,8 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -29885,26 +29642,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ 0.3, @@ -29912,30 +29669,30 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -29943,26 +29700,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -29970,13 +29727,13 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -29984,12 +29741,12 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -29997,26 +29754,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -30024,26 +29781,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 - ] + -0.5666, + -0.4 + ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -30051,26 +29808,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -30078,13 +29835,13 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -30096,8 +29853,8 @@ -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -30105,26 +29862,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -30132,17 +29889,17 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -30150,8 +29907,8 @@ 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -30159,26 +29916,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -30186,26 +29943,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -30213,26 +29970,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -30240,13 +29997,13 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -30254,12 +30011,12 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -30267,26 +30024,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -30294,26 +30051,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -30321,26 +30078,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -30348,26 +30105,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -30375,26 +30132,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -30402,26 +30159,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -30429,26 +30186,26 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -30456,116 +30213,116 @@ 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, @@ -30578,107 +30335,107 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -30686,107 +30443,107 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -30798,53 +30555,53 @@ -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -30852,103 +30609,103 @@ 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -30956,318 +30713,318 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, @@ -31280,107 +31037,107 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -31388,107 +31145,107 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -31500,53 +31257,53 @@ -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -31554,103 +31311,103 @@ 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -31658,39 +31415,39 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -31698,26 +31455,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -31725,26 +31482,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -31752,26 +31509,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -31779,26 +31536,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -31806,26 +31563,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -31833,26 +31590,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -31860,26 +31617,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -31887,26 +31644,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -31914,26 +31671,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -31941,26 +31698,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -31968,13 +31725,13 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -31982,12 +31739,12 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -31995,26 +31752,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -32022,26 +31779,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -32049,26 +31806,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -32076,13 +31833,13 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -32090,12 +31847,12 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -32103,26 +31860,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -32130,26 +31887,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -32157,26 +31914,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -32184,13 +31941,13 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -32202,8 +31959,8 @@ -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -32211,26 +31968,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -32238,17 +31995,17 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -32256,8 +32013,8 @@ 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -32265,26 +32022,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -32292,26 +32049,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -32319,26 +32076,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -32346,13 +32103,13 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -32360,12 +32117,12 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -32373,22 +32130,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ -0.1, @@ -32400,22 +32157,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -32427,22 +32184,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -32454,22 +32211,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ -0.1, @@ -32481,22 +32238,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ -0.1, @@ -32508,22 +32265,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ -0.1, @@ -32535,22 +32292,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ -0.1, @@ -32562,26 +32319,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -32589,26 +32346,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -32616,26 +32373,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -32643,26 +32400,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -32670,13 +32427,13 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -32684,12 +32441,12 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -32697,26 +32454,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -32724,21 +32481,21 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ @@ -32751,22 +32508,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -32778,13 +32535,13 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -32792,8 +32549,8 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -32805,19 +32562,19 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 @@ -32832,22 +32589,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -32859,19 +32616,19 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 @@ -32886,13 +32643,13 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -32913,22 +32670,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -32940,17 +32697,17 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -32967,22 +32724,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -32994,22 +32751,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -33021,22 +32778,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -33048,13 +32805,13 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -33062,8 +32819,8 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ 0.1, @@ -33075,26 +32832,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -33102,26 +32859,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -33129,26 +32886,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -33156,26 +32913,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -33183,26 +32940,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -33210,26 +32967,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -33237,26 +32994,26 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -33264,22 +33021,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -33291,22 +33048,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -33318,22 +33075,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -33345,22 +33102,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -33372,13 +33129,13 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -33386,8 +33143,8 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -33399,22 +33156,22 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ 0.3, @@ -33426,67 +33183,67 @@ 0.55 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -33494,107 +33251,107 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -33606,53 +33363,53 @@ -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -33660,103 +33417,103 @@ 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -33764,228 +33521,228 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + 0.55, + 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -33993,26 +33750,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -34020,26 +33777,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -34047,26 +33804,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -34074,13 +33831,13 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -34088,12 +33845,12 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -34101,26 +33858,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -34128,26 +33885,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -34155,26 +33912,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -34182,13 +33939,13 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -34196,12 +33953,12 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -34209,26 +33966,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -34236,26 +33993,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -34263,26 +34020,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -34290,13 +34047,13 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -34308,8 +34065,8 @@ -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -34317,26 +34074,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -34344,17 +34101,17 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -34362,8 +34119,8 @@ 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -34371,26 +34128,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -34398,26 +34155,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -34425,26 +34182,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -34452,13 +34209,13 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -34466,12 +34223,12 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -34479,26 +34236,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -34506,26 +34263,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -34533,26 +34290,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -34560,26 +34317,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -34587,26 +34344,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -34614,26 +34371,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -34641,26 +34398,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -34668,26 +34425,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -34695,26 +34452,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -34722,26 +34479,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -34749,26 +34506,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -34776,13 +34533,13 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -34790,12 +34547,12 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -34803,26 +34560,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -34830,26 +34587,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -34857,26 +34614,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -34884,13 +34641,13 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -34898,12 +34655,12 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -34911,26 +34668,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -34938,26 +34695,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -34965,26 +34722,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -34992,13 +34749,13 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -35010,8 +34767,8 @@ -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -35019,26 +34776,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -35046,17 +34803,17 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -35064,8 +34821,8 @@ 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -35073,26 +34830,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -35100,26 +34857,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -35127,26 +34884,26 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -35154,13 +34911,13 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -35168,12 +34925,12 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -35181,418 +34938,418 @@ 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.5666, + -0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -1, + 1 ], "offset": 0, "temperature": [ - 0.55, + -1, 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -1, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.45, + 0.2 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -1, + 1 ], "offset": 0, "temperature": [ - 0.55, + 0.2, 1 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -35600,215 +35357,215 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.3, @@ -35816,165 +35573,165 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -35982,53 +35739,53 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], "depth": 0, "erosion": [ @@ -36036,373 +35793,373 @@ 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.55, 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -36410,89 +36167,89 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -36500,26 +36257,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -36527,26 +36284,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -36554,26 +36311,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -36581,26 +36338,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -36608,26 +36365,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -36635,26 +36392,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -36662,17 +36419,17 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -36680,8 +36437,8 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -36689,26 +36446,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -36716,26 +36473,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -36743,26 +36500,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -36770,128 +36527,128 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, @@ -36905,26 +36662,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -36932,21 +36689,21 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -36959,26 +36716,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -36986,26 +36743,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -37013,26 +36770,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -37040,17 +36797,17 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -37058,7 +36815,7 @@ ], "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ @@ -37067,25 +36824,25 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ @@ -37094,26 +36851,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -37121,26 +36878,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -37148,26 +36905,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -37175,26 +36932,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -37202,26 +36959,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -37229,26 +36986,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ 0.3, @@ -37256,26 +37013,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ 0.3, @@ -37283,215 +37040,215 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + -1, + -0.45 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.45, + -0.15 ], "weirdness": [ - -0.9333, - -0.7666 + -0.4, + -0.2666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ -1, @@ -37499,26 +37256,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ -1, @@ -37526,26 +37283,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ -1, @@ -37553,26 +37310,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ -1, @@ -37580,26 +37337,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ -1, @@ -37607,12 +37364,12 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, @@ -37623,10 +37380,10 @@ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ -1, @@ -37634,26 +37391,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ -1, @@ -37661,152 +37418,152 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.3, @@ -37814,165 +37571,165 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -37980,53 +37737,53 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], "depth": 0, "erosion": [ @@ -38034,746 +37791,719 @@ 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, @@ -38786,161 +38516,161 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -38948,57 +38678,57 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -39006,53 +38736,53 @@ 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], "depth": 0, "erosion": [ @@ -39060,53 +38790,53 @@ 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ @@ -39114,49 +38844,49 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -39168,50971 +38898,238 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.7666, - -0.5666 + -0.4, + -0.2666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.7666, - -0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.5666, - -0.4 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_spruce_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:flower_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.4, - -0.2666 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -90140,53 +39137,26 @@ ], "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -90194,53 +39164,26 @@ ], "depth": 0, "erosion": [ - -0.2225, + 0.05, 0.45 ], "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -90252,49 +39195,22 @@ 0.45 ], "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -90306,49 +39222,22 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -90360,49 +39249,22 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -90414,431 +39276,269 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ -0.2225, - 0.45 + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, - 0.45 + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ @@ -90846,49 +39546,49 @@ 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -90900,53 +39600,53 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -90954,58 +39654,58 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -91013,26 +39713,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ -0.1, @@ -91040,26 +39740,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ -0.1, @@ -91067,26 +39767,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ -0.1, @@ -91094,26 +39794,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ -0.1, @@ -91121,26 +39821,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ -0.1, @@ -91148,179 +39848,179 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -91328,62 +40028,62 @@ ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -91391,26 +40091,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -91418,26 +40118,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -91445,26 +40145,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -91472,26 +40172,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -91499,26 +40199,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -91526,26 +40226,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -91553,26 +40253,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -91580,26 +40280,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -91607,26 +40307,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -91634,17 +40334,17 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -91652,8 +40352,8 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -91661,26 +40361,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -91688,26 +40388,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -91715,23 +40415,23 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.55, 1 @@ -91742,26 +40442,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ 0.3, @@ -91769,25 +40469,25 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ @@ -91796,25 +40496,25 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ @@ -91823,26 +40523,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -91850,26 +40550,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ 0.3, @@ -91877,26 +40577,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ 0.3, @@ -91904,25 +40604,25 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ @@ -91931,25 +40631,25 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ @@ -91958,17 +40658,17 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -91976,7 +40676,7 @@ ], "depth": 0, "erosion": [ - -0.2225, + 0.05, 0.45 ], "humidity": [ @@ -91985,25 +40685,25 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + 0.05, 0.45 ], "humidity": [ @@ -92012,26 +40712,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -92039,26 +40739,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -92066,21 +40766,21 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -92093,26 +40793,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ 0.3, @@ -92120,242 +40820,242 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.05, + 0.45 ], "humidity": [ -1, @@ -92363,26 +41063,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.05, + 0.45 ], "humidity": [ -1, @@ -92390,26 +41090,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ -1, @@ -92417,26 +41117,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ -1, @@ -92444,26 +41144,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ -1, @@ -92471,26 +41171,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ -1, @@ -92498,291 +41198,291 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ @@ -92790,319 +41490,319 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.55, 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -93110,111 +41810,111 @@ ], "depth": 0, "erosion": [ - -0.2225, + 0.05, 0.45 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + 0.05, 0.45 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -93222,373 +41922,373 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -93596,323 +42296,323 @@ ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, - "temperature": [ - -0.45, - -0.15 + "temperature": [ + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -93920,327 +42620,327 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ -0.2225, - 0.45 + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, - 0.45 + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ @@ -94248,49 +42948,49 @@ 0.45 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -94302,53 +43002,53 @@ 0.55 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -94356,427 +43056,427 @@ 0.55 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, - "temperature": [ - -0.45, - -0.15 + "temperature": [ + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -94784,215 +43484,215 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:old_growth_spruce_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -95000,107 +43700,107 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -95108,269 +43808,269 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.03 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -95378,57 +44078,57 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ @@ -95436,49 +44136,49 @@ 0.55 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -95490,319 +44190,319 @@ 0.55 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:flower_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -95810,107 +44510,107 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - -0.2666, - -0.05 + -0.4, + -0.2666 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -95918,17 +44618,17 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -1, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + 1 ], "weirdness": [ -0.2666, @@ -95937,24 +44637,24 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -1, + 1 ], "offset": 0, "temperature": [ - -0.15, + -0.45, 0.2 ], "weirdness": [ @@ -95964,25 +44664,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -1, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 1 ], "weirdness": [ -0.2666, @@ -95991,25 +44691,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96018,7 +44718,7 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -96026,17 +44726,17 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96045,25 +44745,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96072,25 +44772,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96099,25 +44799,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96126,25 +44826,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96153,25 +44853,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96180,25 +44880,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96207,25 +44907,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96234,25 +44934,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96261,25 +44961,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96288,25 +44988,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96315,25 +45015,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96342,25 +45042,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96369,25 +45069,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96396,25 +45096,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.05, + -0.2225, 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96423,25 +45123,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96450,7 +45150,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -96462,13 +45162,13 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96477,25 +45177,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96504,11 +45204,11 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -96516,13 +45216,13 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96531,25 +45231,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96558,25 +45258,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96585,16 +45285,16 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ -0.1, @@ -96602,8 +45302,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96612,16 +45312,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ -0.1, @@ -96629,8 +45329,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96639,16 +45339,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ -0.1, @@ -96656,8 +45356,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96666,25 +45366,25 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96693,25 +45393,25 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96720,25 +45420,25 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96747,25 +45447,25 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96774,7 +45474,7 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -96782,17 +45482,17 @@ ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96801,25 +45501,25 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96828,25 +45528,25 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96855,25 +45555,25 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96882,16 +45582,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ 0.1, @@ -96899,8 +45599,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96909,16 +45609,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ 0.1, @@ -96926,8 +45626,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96936,16 +45636,16 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ 0.1, @@ -96953,8 +45653,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96963,16 +45663,16 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ 0.1, @@ -96980,8 +45680,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -96990,7 +45690,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -96998,8 +45698,8 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ 0.1, @@ -97007,8 +45707,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97017,16 +45717,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -97034,8 +45734,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97044,11 +45744,11 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ @@ -97061,8 +45761,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97071,13 +45771,13 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -97088,8 +45788,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97098,7 +45798,7 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -97115,8 +45815,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97125,16 +45825,16 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ 0.1, @@ -97142,8 +45842,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97152,11 +45852,11 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ @@ -97169,8 +45869,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97179,25 +45879,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97206,11 +45906,11 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -97223,8 +45923,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97233,16 +45933,16 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -97250,8 +45950,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97260,7 +45960,7 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -97268,8 +45968,8 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -97277,8 +45977,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97287,16 +45987,16 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ 0.3, @@ -97304,8 +46004,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97314,16 +46014,16 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -97331,8 +46031,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97341,16 +46041,16 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -97358,8 +46058,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97368,16 +46068,16 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -97385,8 +46085,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97395,16 +46095,16 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -97412,8 +46112,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97422,7 +46122,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -97430,8 +46130,8 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ 0.3, @@ -97439,8 +46139,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97449,16 +46149,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ 0.3, @@ -97466,8 +46166,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ -0.2666, @@ -97476,25 +46176,25 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97503,25 +46203,25 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97530,25 +46230,52 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - 0.3, + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + 0.03, 1 ], + "depth": 0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97557,25 +46284,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97584,25 +46311,25 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97611,25 +46338,25 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97638,11 +46365,11 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -97650,13 +46377,13 @@ 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97665,25 +46392,25 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97692,7 +46419,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -97704,13 +46431,13 @@ 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97719,25 +46446,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97746,11 +46473,11 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -97758,13 +46485,13 @@ -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97773,25 +46500,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97800,7 +46527,7 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -97808,17 +46535,17 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97827,25 +46554,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97854,25 +46581,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97881,25 +46608,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97908,25 +46635,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97935,25 +46662,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97962,7 +46689,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -97970,17 +46697,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -97989,25 +46716,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98016,25 +46743,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98043,25 +46770,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98070,25 +46797,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98097,25 +46824,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98124,25 +46851,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98151,25 +46878,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98178,11 +46905,11 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -98190,13 +46917,13 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98205,25 +46932,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98232,7 +46959,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -98244,13 +46971,13 @@ 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98259,25 +46986,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98286,11 +47013,11 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -98298,13 +47025,13 @@ -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98313,25 +47040,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98340,7 +47067,7 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -98348,17 +47075,17 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98367,25 +47094,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98394,25 +47121,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98421,25 +47148,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98448,25 +47175,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98475,25 +47202,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98502,7 +47229,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -98510,17 +47237,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98529,25 +47256,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98556,25 +47283,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98583,25 +47310,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98610,25 +47337,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98637,25 +47364,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98664,25 +47391,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98691,25 +47418,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98718,11 +47445,11 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -98730,13 +47457,13 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98745,25 +47472,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98772,7 +47499,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -98784,13 +47511,13 @@ 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ -0.2666, @@ -98799,25 +47526,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -98826,11 +47553,11 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -98838,13 +47565,13 @@ -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -98853,25 +47580,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -98880,7 +47607,7 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -98888,17 +47615,17 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -98907,25 +47634,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -98934,25 +47661,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -98961,25 +47688,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -98988,25 +47715,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99015,25 +47742,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99042,7 +47769,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -99050,17 +47777,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99069,25 +47796,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99096,25 +47823,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99123,25 +47850,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99150,25 +47877,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99177,25 +47904,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99204,25 +47931,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99231,25 +47958,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99258,11 +47985,11 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -99270,13 +47997,13 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99285,25 +48012,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99312,7 +48039,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -99324,13 +48051,13 @@ 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99339,16 +48066,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ -0.1, @@ -99356,8 +48083,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99366,11 +48093,11 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -99378,13 +48105,13 @@ -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99393,25 +48120,25 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99420,7 +48147,7 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -99428,17 +48155,17 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99447,25 +48174,25 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99474,25 +48201,25 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99501,25 +48228,25 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99528,25 +48255,25 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99555,25 +48282,25 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99582,7 +48309,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -99590,17 +48317,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99609,16 +48336,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ 0.1, @@ -99626,8 +48353,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99636,16 +48363,16 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ 0.1, @@ -99653,8 +48380,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99663,16 +48390,16 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ 0.1, @@ -99680,8 +48407,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99690,16 +48417,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ 0.1, @@ -99707,8 +48434,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99717,16 +48444,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ 0.1, @@ -99734,8 +48461,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99744,16 +48471,16 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -99761,8 +48488,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99771,13 +48498,13 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -99788,8 +48515,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99798,11 +48525,11 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -99815,8 +48542,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99825,13 +48552,13 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -99842,8 +48569,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99852,7 +48579,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -99869,35 +48596,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99906,7 +48606,7 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -99923,8 +48623,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99933,13 +48633,13 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.375 @@ -99950,8 +48650,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99960,16 +48660,16 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -99977,8 +48677,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -99987,16 +48687,16 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -100004,8 +48704,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -100014,16 +48714,16 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.2225, + 0.45 ], "humidity": [ 0.3, @@ -100031,8 +48731,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -100041,16 +48741,16 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -100058,8 +48758,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -100068,16 +48768,16 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -100085,9 +48785,36 @@ ], "offset": 0, "temperature": [ - 0.2, + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0, + "erosion": [ + 0.45, 0.55 ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.15, + 0.2 + ], "weirdness": [ -0.2666, -0.05 @@ -100095,16 +48822,16 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -100112,8 +48839,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -100122,7 +48849,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -100130,8 +48857,8 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ 0.3, @@ -100139,8 +48866,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ -0.2666, @@ -100149,20 +48876,20 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -100176,20 +48903,20 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -100203,20 +48930,20 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -100230,20 +48957,20 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -100257,20 +48984,20 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -100284,20 +49011,20 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -100311,20 +49038,20 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -100338,11 +49065,11 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -100350,8 +49077,8 @@ 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -100365,20 +49092,20 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -100392,7 +49119,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -100404,8 +49131,8 @@ 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -100419,20 +49146,20 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -100446,11 +49173,11 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -100458,13 +49185,13 @@ -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100473,25 +49200,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100500,7 +49227,7 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -100508,17 +49235,17 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100527,25 +49254,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100554,25 +49281,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100581,25 +49308,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { - "continentalness": [ - -0.11, - 0.03 + "continentalness": [ + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100608,25 +49335,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100635,25 +49362,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100662,7 +49389,7 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -100670,17 +49397,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100689,25 +49416,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100716,25 +49443,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100743,25 +49470,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100770,25 +49497,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100797,25 +49524,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100824,25 +49551,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100851,25 +49578,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100878,11 +49605,11 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -100890,13 +49617,13 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100905,25 +49632,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100932,7 +49659,7 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -100944,13 +49671,13 @@ 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100959,25 +49686,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -100986,11 +49713,11 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -100998,13 +49725,13 @@ -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101013,25 +49740,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101040,7 +49767,7 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -101048,17 +49775,17 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101067,25 +49794,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101094,25 +49821,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101121,25 +49848,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101148,25 +49875,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101175,25 +49902,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101202,7 +49929,7 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -101210,17 +49937,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101229,25 +49956,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101256,25 +49983,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101283,25 +50010,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101310,25 +50037,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101337,25 +50064,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101364,25 +50091,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101391,25 +50118,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101418,11 +50145,11 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -101430,13 +50157,13 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101445,25 +50172,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101472,7 +50199,7 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -101484,40 +50211,13 @@ 1 ], "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, + 0.3, 1 ], - "humidity": [ - -0.35, - -0.1 - ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ -0.2666, @@ -101526,7 +50226,7 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -101538,35 +50238,8 @@ -0.375 ], "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 + -0.35 ], "offset": 0, "temperature": [ @@ -101580,7 +50253,7 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -101592,35 +50265,8 @@ -0.375 ], "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 + -0.35 ], "offset": 0, "temperature": [ @@ -101634,7 +50280,7 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -101646,35 +50292,8 @@ 0.05 ], "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -101688,7 +50307,7 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -101700,35 +50319,8 @@ 0.05 ], "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -101742,7 +50334,7 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -101754,8 +50346,8 @@ 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -101769,20 +50361,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + 0.05, 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -101796,20 +50388,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -101823,20 +50415,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -101850,11 +50442,11 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -101862,8 +50454,8 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -101877,20 +50469,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -101904,7 +50496,7 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -101912,12 +50504,12 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -101931,20 +50523,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -101958,20 +50550,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -101985,20 +50577,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -102012,7 +50604,7 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -102020,12 +50612,12 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -102039,20 +50631,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -102066,20 +50658,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -102093,20 +50685,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -102120,7 +50712,7 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -102128,12 +50720,12 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -102147,20 +50739,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -102174,7 +50766,7 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -102182,12 +50774,12 @@ ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -102201,20 +50793,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -102228,11 +50820,11 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -102240,8 +50832,8 @@ 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -102255,20 +50847,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -102282,7 +50874,7 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -102294,35 +50886,8 @@ 0.45 ], "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -102336,7 +50901,7 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -102348,8 +50913,8 @@ 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -102363,20 +50928,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -102390,11 +50955,11 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -102402,8 +50967,8 @@ 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -102417,20 +50982,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -102444,20 +51009,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -102471,16 +51036,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ 0.1, @@ -102498,7 +51063,7 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -102506,8 +51071,8 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ 0.1, @@ -102525,16 +51090,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ 0.1, @@ -102552,16 +51117,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ 0.1, @@ -102579,16 +51144,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.45 ], "humidity": [ 0.1, @@ -102606,20 +51171,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -102633,20 +51198,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -102660,20 +51225,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -102687,20 +51252,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -102714,20 +51279,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -102741,16 +51306,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ 0.3, @@ -102768,7 +51333,7 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -102776,8 +51341,8 @@ ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ 0.3, @@ -102795,13 +51360,13 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 @@ -102822,16 +51387,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -102849,13 +51414,13 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.45 @@ -102876,7 +51441,7 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -102903,34 +51468,7 @@ } }, { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -102957,34 +51495,7 @@ } }, { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -103011,34 +51522,7 @@ } }, { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -103065,34 +51549,7 @@ } }, { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, - { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -103118,33 +51575,6 @@ ] } }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.2666, - -0.05 - ] - } - }, { "biome": "tfg:mars/martian_riverbed", "parameters": { @@ -103172,33 +51602,6 @@ ] } }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, { "biome": "tfg:mars/martian_riverbed", "parameters": { @@ -103226,33 +51629,6 @@ ] } }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, { "biome": "tfg:mars/martian_riverbed", "parameters": { @@ -103280,33 +51656,6 @@ ] } }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, { "biome": "tfg:mars/martian_riverbed", "parameters": { @@ -103334,33 +51683,6 @@ ] } }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, { "biome": "tfg:mars/martian_riverbed", "parameters": { @@ -103388,33 +51710,6 @@ ] } }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.55 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, { "biome": "tfg:mars/martian_riverbed", "parameters": { @@ -103442,33 +51737,6 @@ ] } }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.55 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, { "biome": "tfg:mars/martian_riverbed", "parameters": { @@ -103496,33 +51764,6 @@ ] } }, - { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, { "biome": "tfg:mars/martian_riverbed", "parameters": { @@ -103551,34 +51792,7 @@ } }, { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:swamp", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.11, @@ -103605,34 +51819,7 @@ } }, { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.11, @@ -103658,33 +51845,6 @@ ] } }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, { "biome": "tfg:mars/martian_riverbed", "parameters": { @@ -103713,34 +51873,7 @@ } }, { - "biome": "tfg:mars/martian_riverbed", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -103767,34 +51900,7 @@ } }, { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -103821,34 +51927,7 @@ } }, { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -103875,34 +51954,7 @@ } }, { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -103929,34 +51981,7 @@ } }, { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -103983,34 +52008,7 @@ } }, { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -104037,34 +52035,7 @@ } }, { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -104091,34 +52062,7 @@ } }, { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -104145,34 +52089,7 @@ } }, { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -104199,34 +52116,7 @@ } }, { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -104253,34 +52143,7 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -104307,34 +52170,7 @@ } }, { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -104361,34 +52197,7 @@ } }, { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -104415,34 +52224,7 @@ } }, { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -104469,34 +52251,7 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -104523,34 +52278,7 @@ } }, { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -104577,34 +52305,7 @@ } }, { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -104631,34 +52332,7 @@ } }, { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -104685,34 +52359,7 @@ } }, { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -104739,34 +52386,7 @@ } }, { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -104793,34 +52413,7 @@ } }, { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -104847,34 +52440,7 @@ } }, { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -104901,34 +52467,7 @@ } }, { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -104955,34 +52494,7 @@ } }, { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -105009,34 +52521,7 @@ } }, { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - -0.05, - 0.05 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -105063,43 +52548,43 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ -1, - -0.375 + -0.2225 ], "humidity": [ - 0.3, + -1, 1 ], "offset": 0, "temperature": [ - 0.55, + -1, 1 ], "weirdness": [ - -0.05, - 0.05 + 0.05, + 0.2666 ] } }, { - "biome": "minecraft:stony_shore", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ - -1, - -0.2225 + 0.55, + 1 ], "humidity": [ -1, @@ -105107,9 +52592,36 @@ ], "offset": 0, "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_dune_edge", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": 0, + "erosion": [ + 0.55, + 1 + ], + "humidity": [ -1, 1 ], + "offset": 0, + "temperature": [ + 0.2, + 1 + ], "weirdness": [ 0.05, 0.2666 @@ -105117,25 +52629,25 @@ } }, { - "biome": "minecraft:stony_shore", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -1, - -0.2225 + -0.375 ], "humidity": [ -1, - 1 + -0.35 ], "offset": 0, "temperature": [ -1, - 1 + -0.45 ], "weirdness": [ 0.05, @@ -105144,25 +52656,25 @@ } }, { - "biome": "minecraft:swamp", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ -1, - 1 + -0.35 ], "offset": 0, "temperature": [ - -0.45, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.05, @@ -105171,25 +52683,25 @@ } }, { - "biome": "minecraft:swamp", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ -1, - 1 + -0.35 ], "offset": 0, "temperature": [ - -0.45, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.05, @@ -105198,25 +52710,25 @@ } }, { - "biome": "minecraft:mangrove_swamp", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ -1, - 1 + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 1 + -1, + -0.45 ], "weirdness": [ 0.05, @@ -105225,25 +52737,25 @@ } }, { - "biome": "minecraft:mangrove_swamp", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.45 ], "humidity": [ -1, - 1 + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 1 + -1, + -0.45 ], "weirdness": [ 0.05, @@ -105252,16 +52764,43 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ -1, - -0.375 + -0.35 + ], + "offset": 0, + "temperature": [ + -1, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_forests", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 ], "humidity": [ -1, @@ -105279,16 +52818,16 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ -1, @@ -105306,7 +52845,7 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -105314,8 +52853,8 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ -1, @@ -105333,16 +52872,16 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.55, + 1 ], "humidity": [ -1, @@ -105360,16 +52899,16 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ -1, @@ -105387,20 +52926,20 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -105414,7 +52953,7 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -105422,12 +52961,12 @@ ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -105441,20 +52980,20 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -105468,20 +53007,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -105495,20 +53034,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -105522,7 +53061,7 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -105534,8 +53073,35 @@ 0.45 ], "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ -1, - -0.35 + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "tfg:mars/martian_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -105549,20 +53115,20 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -105576,11 +53142,11 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -105588,8 +53154,8 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -105603,20 +53169,20 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -105630,20 +53196,20 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -105657,20 +53223,20 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -105684,7 +53250,7 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -105692,12 +53258,12 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -105711,20 +53277,20 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -105738,20 +53304,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -105765,20 +53331,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -105792,7 +53358,7 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -105800,12 +53366,12 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -105819,20 +53385,20 @@ } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -105846,7 +53412,7 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -105854,12 +53420,12 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -105873,20 +53439,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -105900,20 +53466,20 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -105927,20 +53493,20 @@ } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -105954,7 +53520,7 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -105962,12 +53528,12 @@ ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -105981,20 +53547,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -106008,11 +53574,11 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -106020,8 +53586,8 @@ 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -106035,20 +53601,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -106062,7 +53628,7 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -106074,8 +53640,8 @@ 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -106089,20 +53655,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + 0.05, 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -106116,20 +53682,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -106143,20 +53709,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -106170,11 +53736,11 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -106182,8 +53748,8 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -106197,20 +53763,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -106224,20 +53790,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -106251,20 +53817,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -106278,7 +53844,7 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -106286,12 +53852,12 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -106305,20 +53871,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -106332,20 +53898,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -106359,20 +53925,20 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -106386,7 +53952,7 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -106394,12 +53960,12 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -106413,20 +53979,20 @@ } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -106440,7 +54006,7 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -106448,12 +54014,12 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -106467,20 +54033,20 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -106494,20 +54060,20 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -106521,20 +54087,20 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -106548,7 +54114,7 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -106556,17 +54122,17 @@ ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106575,25 +54141,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106602,11 +54168,11 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -106614,13 +54180,13 @@ 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106629,25 +54195,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106656,7 +54222,7 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -106668,13 +54234,13 @@ 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106683,25 +54249,25 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + 0.05, 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106710,25 +54276,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106737,25 +54303,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106764,11 +54330,11 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -106776,13 +54342,13 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106791,25 +54357,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106818,7 +54384,7 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -106826,17 +54392,17 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106845,25 +54411,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106872,25 +54438,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106899,25 +54465,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106926,7 +54492,7 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -106934,17 +54500,17 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 - ], + -0.2225, + 0.45 + ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106953,25 +54519,25 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -106980,25 +54546,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107007,25 +54573,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107034,25 +54600,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107061,25 +54627,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107088,11 +54654,11 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -107100,13 +54666,13 @@ -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107115,25 +54681,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107142,7 +54708,7 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -107154,13 +54720,13 @@ 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107169,25 +54735,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107196,25 +54762,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.2225, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107223,25 +54789,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107250,7 +54816,7 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -107258,17 +54824,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107277,25 +54843,25 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107304,25 +54870,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107331,25 +54897,25 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107358,16 +54924,16 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ 0.1, @@ -107375,8 +54941,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107385,16 +54951,16 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ 0.1, @@ -107402,8 +54968,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107412,7 +54978,7 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -107420,8 +54986,8 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ 0.1, @@ -107429,8 +54995,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107439,16 +55005,16 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ 0.1, @@ -107456,8 +55022,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107466,16 +55032,16 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ 0.1, @@ -107483,8 +55049,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107493,16 +55059,16 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -107510,8 +55076,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107520,7 +55086,7 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -107528,8 +55094,8 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -107537,8 +55103,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107547,16 +55113,16 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -107564,8 +55130,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107574,16 +55140,16 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -107591,8 +55157,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107601,13 +55167,13 @@ } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.55, 1 @@ -107618,8 +55184,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107628,7 +55194,7 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -107645,8 +55211,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107655,13 +55221,13 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.375 @@ -107672,8 +55238,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107682,16 +55248,16 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -107699,8 +55265,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107709,16 +55275,16 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -107726,8 +55292,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107736,16 +55302,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.2225, + 0.45 ], "humidity": [ 0.3, @@ -107753,8 +55319,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107763,16 +55329,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -107780,8 +55346,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107790,16 +55356,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -107807,8 +55373,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107817,16 +55383,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -107834,8 +55400,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107844,16 +55410,16 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -107861,8 +55427,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107871,16 +55437,16 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ 0.3, @@ -107888,8 +55454,8 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ 0.05, @@ -107898,25 +55464,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -107925,25 +55491,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -107952,25 +55518,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -107979,25 +55545,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108006,25 +55572,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108033,25 +55599,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108060,11 +55626,11 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ @@ -108072,13 +55638,13 @@ 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108087,25 +55653,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108114,25 +55680,25 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108141,25 +55707,25 @@ } }, { - "biome": "minecraft:snowy_beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.55, 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108168,25 +55734,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108195,25 +55761,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108222,7 +55788,7 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -108230,17 +55796,17 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108249,25 +55815,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108276,25 +55842,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108303,25 +55869,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108330,25 +55896,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108357,25 +55923,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108384,7 +55950,7 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -108392,17 +55958,17 @@ ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108411,25 +55977,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108438,25 +56004,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108465,25 +56031,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108492,25 +56058,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108519,25 +56085,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108546,7 +56112,7 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -108554,17 +56120,17 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108573,25 +56139,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108600,11 +56166,11 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ @@ -108612,13 +56178,13 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108627,25 +56193,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108654,7 +56220,7 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -108666,40 +56232,13 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108708,7 +56247,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -108720,13 +56259,13 @@ 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108735,25 +56274,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108762,11 +56301,11 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -108774,13 +56313,13 @@ -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108789,25 +56328,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108816,7 +56355,7 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -108824,17 +56363,17 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108843,25 +56382,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108870,25 +56409,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108897,25 +56436,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108924,25 +56463,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108951,25 +56490,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -108978,7 +56517,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -108986,17 +56525,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -109005,25 +56544,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -109032,25 +56571,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -109059,25 +56598,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -109086,25 +56625,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -109113,25 +56652,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -109140,25 +56679,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -109167,25 +56706,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -109194,11 +56733,11 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -109206,13 +56745,13 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -109221,25 +56760,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -109248,7 +56787,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -109260,13 +56799,13 @@ 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ 0.05, @@ -109275,25 +56814,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109302,11 +56841,11 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -109314,13 +56853,13 @@ -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109329,25 +56868,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109356,7 +56895,7 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -109364,17 +56903,17 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109383,25 +56922,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109410,25 +56949,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109437,25 +56976,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109464,25 +57003,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109491,25 +57030,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109518,7 +57057,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -109526,17 +57065,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109545,25 +57084,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109572,25 +57111,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109599,25 +57138,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109626,26 +57165,26 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 - ], + 0.2, + 0.55 + ], "weirdness": [ 0.05, 0.2666 @@ -109653,25 +57192,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109680,25 +57219,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109707,25 +57246,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109734,11 +57273,11 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -109746,13 +57285,13 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109761,25 +57300,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109788,7 +57327,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -109800,13 +57339,13 @@ 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109815,16 +57354,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ -0.1, @@ -109832,8 +57371,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109842,11 +57381,11 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -109854,13 +57393,13 @@ -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109869,25 +57408,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109896,7 +57435,7 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -109904,17 +57443,17 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109923,25 +57462,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109950,25 +57489,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -109977,25 +57516,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110004,25 +57543,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110031,25 +57570,25 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110058,7 +57597,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -110066,17 +57605,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110085,16 +57624,16 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ 0.1, @@ -110102,8 +57641,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110112,16 +57651,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ 0.1, @@ -110129,8 +57668,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110139,16 +57678,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ 0.1, @@ -110156,8 +57695,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110166,16 +57705,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ 0.1, @@ -110183,8 +57722,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110193,16 +57732,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ 0.1, @@ -110210,8 +57749,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110220,16 +57759,16 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -110237,8 +57776,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110247,13 +57786,13 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -110264,8 +57803,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110274,11 +57813,11 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -110291,8 +57830,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110301,13 +57840,13 @@ } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -110318,8 +57857,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110328,7 +57867,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -110345,8 +57884,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110355,25 +57894,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110382,11 +57921,11 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -110399,8 +57938,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110409,16 +57948,16 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -110426,8 +57965,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110436,7 +57975,7 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -110444,8 +57983,8 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -110453,8 +57992,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110463,16 +58002,16 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ 0.3, @@ -110480,8 +58019,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110490,16 +58029,16 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -110507,8 +58046,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110517,16 +58056,16 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -110534,8 +58073,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110544,16 +58083,16 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -110561,8 +58100,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110571,16 +58110,16 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -110588,8 +58127,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110598,7 +58137,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, @@ -110606,8 +58145,8 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ 0.3, @@ -110615,8 +58154,8 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ 0.05, @@ -110625,25 +58164,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -110652,25 +58191,25 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -110679,25 +58218,25 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -110706,25 +58245,25 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -110733,25 +58272,25 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -110760,25 +58299,25 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -110787,25 +58326,25 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -110814,11 +58353,11 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -110826,13 +58365,13 @@ 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -110841,25 +58380,25 @@ } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -110868,7 +58407,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -110880,13 +58419,13 @@ 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -110895,25 +58434,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -110922,11 +58461,11 @@ } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -110934,13 +58473,13 @@ -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -110949,25 +58488,25 @@ } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -110976,7 +58515,7 @@ } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -110984,17 +58523,17 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111003,25 +58542,25 @@ } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111030,25 +58569,25 @@ } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111057,25 +58596,25 @@ } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111084,25 +58623,25 @@ } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111111,25 +58650,25 @@ } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111138,7 +58677,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -111146,17 +58685,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111165,25 +58704,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111192,25 +58731,25 @@ } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111219,25 +58758,25 @@ } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111246,25 +58785,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111273,25 +58812,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111300,25 +58839,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111327,25 +58866,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111354,11 +58893,11 @@ } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -111366,13 +58905,13 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111381,25 +58920,25 @@ } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111408,7 +58947,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -111420,13 +58959,13 @@ 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111435,25 +58974,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111462,11 +59001,11 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -111474,13 +59013,13 @@ -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111489,25 +59028,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111516,7 +59055,7 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -111524,17 +59063,17 @@ ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111543,25 +59082,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111570,25 +59109,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111597,25 +59136,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111624,25 +59163,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111651,25 +59190,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111678,7 +59217,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -111686,17 +59225,17 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111705,25 +59244,25 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111732,25 +59271,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111759,25 +59298,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111786,25 +59325,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111813,25 +59352,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111840,25 +59379,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111867,25 +59406,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111894,11 +59433,11 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -111906,13 +59445,13 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111921,25 +59460,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111948,7 +59487,7 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -111960,13 +59499,13 @@ 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ 0.05, @@ -111975,307 +59514,307 @@ } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -1, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + 1 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + 1 ], "offset": 0, "temperature": [ - -0.15, + -0.45, 0.2 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 1 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ -0.2225, - 0.45 + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, - 0.45 + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 1 ], "depth": 0, @@ -112284,103 +59823,49 @@ 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -112392,49 +59877,22 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -112446,49 +59904,22 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -112500,427 +59931,130 @@ 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:beach", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.55, 1 ], "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, 0.3 ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], "depth": 0, "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.05, - 0.2666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -112928,49485 +60062,210 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:beach", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.05, - 0.2666 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:stony_shore", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.2225 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -1, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:mangrove_swamp", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.2666, - 0.4 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:birch_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:old_growth_birch_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna_plateau", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:savanna", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:sparse_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:jungle", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:bamboo_jungle", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.2, - 0.55 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:eroded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 0, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - -1, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:wooded_badlands", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.4, - 0.5666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:ice_spikes", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_slopes", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_plains", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:snowy_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_gravelly_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:meadow", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:old_growth_pine_taiga", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.45, - -0.15 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:sunflower_plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:cherry_grove", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:plains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - -0.35, - -0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - -1, - -0.7799 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.03, - 0.3 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 0, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], - "depth": 1, - "erosion": [ - -0.2225, - 0.05 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 0, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 0, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:windswept_hills", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 + "weirdness": [ + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, @@ -162417,356 +60276,356 @@ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -162774,53 +60633,53 @@ 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], "depth": 0, "erosion": [ @@ -162828,52 +60687,52 @@ 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.55, 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], "depth": 0, @@ -162882,53 +60741,26 @@ -0.7799 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ -1, - -0.7799 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 0.3 ], "depth": 0, "erosion": [ @@ -162936,157 +60768,157 @@ -0.375 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -163094,197 +60926,197 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ 0.3, @@ -163292,26 +61124,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -163319,26 +61151,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -163346,26 +61178,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -163373,26 +61205,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -163400,26 +61232,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -163427,26 +61259,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -163454,120 +61286,120 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, @@ -163580,116 +61412,89 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - 0.2, + 0.45, 0.55 ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "tfg:mars/martian_mountains", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ -1, @@ -163697,26 +61502,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ -1, @@ -163724,53 +61529,53 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ -1, -0.35 ], "offset": 0, - "temperature": [ - 0.2, - 0.55 + "temperature": [ + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -163778,26 +61583,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -163805,26 +61610,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -163832,26 +61637,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ -1, @@ -163859,26 +61664,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ -1, @@ -163886,26 +61691,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ -1, @@ -163913,23 +61718,23 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -163940,21 +61745,21 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -163967,23 +61772,23 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -163994,21 +61799,21 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], "depth": 0, "erosion": [ @@ -164021,53 +61826,53 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ -0.35, @@ -164075,26 +61880,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ -0.35, @@ -164102,26 +61907,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ -0.35, @@ -164129,26 +61934,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ -0.35, @@ -164156,26 +61961,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ -0.35, @@ -164183,26 +61988,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ -0.35, @@ -164210,25 +62015,25 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ @@ -164237,26 +62042,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ -0.35, @@ -164264,26 +62069,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ -0.35, @@ -164291,26 +62096,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ -0.35, @@ -164318,26 +62123,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ -0.35, @@ -164345,26 +62150,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ -0.35, @@ -164372,233 +62177,233 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -164606,62 +62411,62 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], - "humidity": [ - -0.35, - -0.1 + "humidity": [ + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ -0.1, @@ -164669,12 +62474,12 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, @@ -164682,13 +62487,13 @@ "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ -0.1, @@ -164696,26 +62501,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ -0.1, @@ -164723,48 +62528,48 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], "depth": 0, "erosion": [ @@ -164772,106 +62577,106 @@ -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, @@ -164880,53 +62685,53 @@ -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ @@ -164934,449 +62739,449 @@ 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, @@ -165387,190 +63192,190 @@ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.3, @@ -165578,111 +63383,111 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ @@ -165690,49 +63495,49 @@ 0.55 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -165744,589 +63549,589 @@ 0.55 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -166334,218 +64139,218 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, @@ -166554,589 +64359,589 @@ -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], - "weirdness": [ - 0.5666, - 0.7666 + "weirdness": [ + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -167144,161 +64949,161 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -167306,57 +65111,57 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -167364,49 +65169,49 @@ 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -167418,52 +65223,52 @@ 0.45 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, @@ -167472,85 +65277,85 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ -0.35, @@ -167558,26 +65363,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ -0.35, @@ -167585,26 +65390,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, - "erosion": [ - 0.55, - 1 + "depth": 0, + "erosion": [ + -0.7799, + -0.375 ], "humidity": [ -0.35, @@ -167612,125 +65417,125 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -167738,107 +65543,107 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -167846,62 +65651,62 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -167909,26 +65714,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.11, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ -0.1, @@ -167936,17 +65741,17 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.3, @@ -167954,8 +65759,8 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ -0.1, @@ -167963,26 +65768,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ -0.1, @@ -167990,26 +65795,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ -0.1, @@ -168017,26 +65822,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ -0.1, @@ -168044,17 +65849,17 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -168062,8 +65867,8 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ -0.1, @@ -168071,26 +65876,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ -0.1, @@ -168098,26 +65903,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ -0.1, @@ -168125,23 +65930,23 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -168152,26 +65957,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ -0.1, @@ -168179,26 +65984,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ -0.1, @@ -168206,50 +66011,50 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 @@ -168260,21 +66065,21 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 0.3 ], "depth": 0, "erosion": [ @@ -168287,23 +66092,23 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 @@ -168314,26 +66119,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -168341,53 +66146,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 - ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.1, 0.3 ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.5666, - 0.7666 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ 0.1, @@ -168395,26 +66173,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ 0.1, @@ -168422,26 +66200,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -168449,26 +66227,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -168476,26 +66254,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -168503,26 +66281,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -168530,26 +66308,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -168557,26 +66335,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -168584,26 +66362,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ 0.1, @@ -168611,215 +66389,215 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -168827,26 +66605,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -168854,26 +66632,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -168881,26 +66659,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -168908,17 +66686,17 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -168926,8 +66704,8 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -168935,26 +66713,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ 0.3, @@ -168962,30 +66740,30 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -168993,26 +66771,26 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -169020,26 +66798,26 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -169047,26 +66825,26 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -169074,13 +66852,13 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -169088,12 +66866,12 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -169101,26 +66879,26 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -169128,17 +66906,17 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -169146,8 +66924,8 @@ 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -169155,26 +66933,26 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -169182,13 +66960,13 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -169200,8 +66978,8 @@ 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -169209,26 +66987,26 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -169236,16 +67014,16 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, @@ -169254,8 +67032,8 @@ 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -169263,26 +67041,26 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -169290,26 +67068,26 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -169317,26 +67095,26 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -169344,26 +67122,26 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -169371,26 +67149,26 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -169398,116 +67176,116 @@ 1 ], "weirdness": [ - 0.5666, - 0.7666 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, @@ -169520,107 +67298,107 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -169628,161 +67406,161 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -169790,57 +67568,57 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -169848,49 +67626,49 @@ 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -169902,52 +67680,52 @@ 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, @@ -169956,265 +67734,265 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, - "erosion": [ - -1, - -0.375 + "erosion": [ + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -170222,107 +68000,107 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -170330,161 +68108,161 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -170492,57 +68270,57 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -170550,49 +68328,49 @@ 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -170604,52 +68382,52 @@ 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], "depth": 0, @@ -170658,89 +68436,89 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -1, - -0.45 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.2666, + 0.4 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -170748,26 +68526,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -170775,26 +68553,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -170802,26 +68580,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -170829,26 +68607,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -170856,26 +68634,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -170883,26 +68661,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -170910,26 +68688,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -170937,26 +68715,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -170964,26 +68742,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -170991,26 +68769,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -171018,13 +68796,13 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -171032,12 +68810,12 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -171045,26 +68823,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -171072,26 +68850,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -171099,26 +68877,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -171126,13 +68904,13 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -171140,12 +68918,12 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -171153,26 +68931,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -171180,26 +68958,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -171207,26 +68985,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -171234,26 +69012,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -171261,26 +69039,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -171288,26 +69066,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -171315,26 +69093,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -171342,13 +69120,13 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -171360,8 +69138,8 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -171369,26 +69147,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -171396,26 +69174,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -171423,22 +69201,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ -0.1, @@ -171450,22 +69228,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -171477,22 +69255,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -171504,26 +69282,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -171531,26 +69309,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -171558,26 +69336,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -171585,26 +69363,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -171612,26 +69390,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -171639,26 +69417,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -171666,26 +69444,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -171693,26 +69471,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -171720,13 +69498,13 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -171734,12 +69512,12 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -171747,26 +69525,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -171774,22 +69552,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ 0.1, @@ -171801,22 +69579,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -171828,13 +69606,13 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -171842,8 +69620,8 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -171855,22 +69633,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -171882,22 +69660,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -171908,22 +69686,22 @@ -1, -0.45 ], - "weirdness": [ - 0.7666, - 0.9333 + "weirdness": [ + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ @@ -171936,22 +69714,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -171963,19 +69741,19 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 @@ -171990,22 +69768,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -172017,19 +69795,19 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 @@ -172044,13 +69822,13 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -172071,19 +69849,19 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -172098,22 +69876,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ 0.1, @@ -172125,26 +69903,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -172152,26 +69930,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -172179,26 +69957,26 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -172206,21 +69984,21 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ @@ -172233,21 +70011,21 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ @@ -172260,22 +70038,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -172287,22 +70065,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -172314,22 +70092,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -172341,22 +70119,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -172368,22 +70146,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -172395,22 +70173,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -172422,13 +70200,13 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -172436,8 +70214,8 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -172449,22 +70227,22 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ 0.3, @@ -172476,67 +70254,67 @@ -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -172544,215 +70322,215 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -172764,170 +70542,170 @@ 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -172935,26 +70713,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -172962,26 +70740,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -172989,26 +70767,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -173016,26 +70794,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -173043,26 +70821,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -173070,26 +70848,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -173097,26 +70875,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -173124,13 +70902,13 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -173138,12 +70916,12 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -173151,26 +70929,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -173178,26 +70956,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -173205,26 +70983,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -173232,13 +71010,13 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -173246,12 +71024,12 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -173259,26 +71037,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -173286,26 +71064,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -173313,26 +71091,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -173340,26 +71118,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -173367,26 +71145,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -173394,26 +71172,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -173421,26 +71199,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -173448,13 +71226,13 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -173466,8 +71244,8 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -173475,26 +71253,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -173502,26 +71280,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -173529,26 +71307,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -173556,26 +71334,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -173583,26 +71361,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -173610,26 +71388,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -173637,26 +71415,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -173664,26 +71442,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -173691,26 +71469,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -173718,26 +71496,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -173745,26 +71523,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -173772,26 +71550,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -173799,26 +71577,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -173826,13 +71604,13 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -173840,12 +71618,12 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -173853,26 +71631,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -173880,26 +71658,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -173907,26 +71685,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -173934,13 +71712,13 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -173948,12 +71726,12 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -173961,26 +71739,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -173988,26 +71766,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -174015,26 +71793,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -174042,26 +71820,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -174069,26 +71847,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -174096,26 +71874,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -174123,26 +71901,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -174150,13 +71928,13 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -174168,8 +71946,8 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -174177,26 +71955,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -174204,26 +71982,26 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -174231,310 +72009,310 @@ -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -174542,107 +72320,107 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -174650,215 +72428,215 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, @@ -174870,85 +72648,85 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ -0.1, @@ -174956,26 +72734,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -174983,26 +72761,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -175010,233 +72788,233 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -175244,62 +73022,62 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ 0.1, @@ -175307,26 +73085,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -175334,17 +73112,17 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -175352,8 +73130,8 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -175361,26 +73139,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -175388,26 +73166,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -175415,25 +73193,25 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ @@ -175442,26 +73220,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -175469,23 +73247,23 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 @@ -175496,26 +73274,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -175523,23 +73301,23 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 @@ -175550,17 +73328,17 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, @@ -175577,23 +73355,23 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -175604,26 +73382,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ 0.1, @@ -175631,106 +73409,106 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ @@ -175739,25 +73517,25 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ @@ -175766,26 +73544,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -175793,26 +73571,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -175820,26 +73598,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -175847,26 +73625,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -175874,26 +73652,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -175901,26 +73679,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -175928,17 +73706,17 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -175946,8 +73724,8 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -175955,26 +73733,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ 0.3, @@ -175982,71 +73760,71 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -176054,215 +73832,215 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, @@ -176274,373 +74052,373 @@ 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -176648,107 +74426,107 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -176756,215 +74534,215 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, @@ -176976,49 +74754,22 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_savanna", - "parameters": { - "continentalness": [ - -0.19, - 0.03 - ], - "depth": 1, - "erosion": [ - 0.45, + 0.2, 0.55 ], - "humidity": [ - -1, - -0.35 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -177030,211 +74781,211 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -177242,485 +74993,485 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -177732,206 +75483,206 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, @@ -177944,21 +75695,21 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, @@ -177967,462 +75718,462 @@ "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -178434,58 +76185,58 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ -0.1, @@ -178493,26 +76244,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -178520,125 +76271,125 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -178646,197 +76397,197 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.375 ], "humidity": [ 0.1, @@ -178844,26 +76595,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -178871,26 +76622,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -178898,26 +76649,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -178925,26 +76676,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -178952,25 +76703,25 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ @@ -178979,26 +76730,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -179006,26 +76757,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -179033,26 +76784,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -179060,26 +76811,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -179087,23 +76838,23 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -179114,17 +76865,17 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -179141,44 +76892,17 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.7666, - 0.9333 - ] - } - }, - { - "biome": "minecraft:windswept_forest", - "parameters": { - "continentalness": [ - 0.03, + 0.55, 1 ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.1, - 0.3 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -179195,53 +76919,53 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ 0.3, @@ -179249,26 +76973,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ 0.3, @@ -179276,17 +77000,17 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, @@ -179294,8 +77018,8 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -179303,26 +77027,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -179330,26 +77054,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -179357,26 +77081,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -179384,26 +77108,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -179411,26 +77135,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -179438,26 +77162,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -179465,26 +77189,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -179492,26 +77216,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -179519,26 +77243,26 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ 0.3, @@ -179546,233 +77270,233 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.4, + 0.5666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, @@ -179784,287 +77508,287 @@ 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, @@ -180072,193 +77796,193 @@ "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -180270,53 +77994,53 @@ -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -180324,103 +78048,103 @@ 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -180428,53 +78152,53 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, @@ -180482,264 +78206,264 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, @@ -180747,7 +78471,7 @@ "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, @@ -180756,53 +78480,53 @@ -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -180810,49 +78534,49 @@ -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -180860,593 +78584,593 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -1, + -0.45 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.55, 1 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ -1, - -0.375 + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -181454,197 +79178,197 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ -0.1, @@ -181652,26 +79376,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ -0.1, @@ -181679,26 +79403,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ -0.1, @@ -181706,25 +79430,25 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ @@ -181733,26 +79457,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ -0.1, @@ -181760,21 +79484,21 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ @@ -181787,23 +79511,23 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 @@ -181814,17 +79538,17 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -181841,26 +79565,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ -0.1, @@ -181868,21 +79592,21 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -181895,26 +79619,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ -0.1, @@ -181922,134 +79646,134 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -182057,26 +79781,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -182084,26 +79808,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -182111,26 +79835,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -182138,12 +79862,12 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, @@ -182151,13 +79875,13 @@ "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -182165,12 +79889,12 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, @@ -182181,10 +79905,10 @@ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -182192,26 +79916,26 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ 0.1, @@ -182219,48 +79943,48 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -182268,49 +79992,49 @@ -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -182322,211 +80046,211 @@ 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, @@ -182534,107 +80258,107 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -182642,237 +80366,237 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "tfg:mars/martian_mountains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, @@ -182883,190 +80607,190 @@ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -183074,273 +80798,273 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -183348,49 +81072,49 @@ 0.55 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -183402,265 +81126,265 @@ 1 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -183668,107 +81392,107 @@ ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -183776,107 +81500,107 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - -0.2225 + 0.05 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.3, @@ -183888,139 +81612,139 @@ 0.05 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + -0.15, + 0.2 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ -1, @@ -184028,26 +81752,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ -1, @@ -184055,26 +81779,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ -1, @@ -184082,26 +81806,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, - "erosion": [ - 0.55, - 1 + "erosion": [ + -0.375, + 0.05 ], "humidity": [ -1, @@ -184109,26 +81833,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -184136,125 +81860,125 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -184262,62 +81986,62 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ -0.35, @@ -184325,23 +82049,23 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 @@ -184352,17 +82076,17 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -184379,26 +82103,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ -0.35, @@ -184406,26 +82130,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ -0.375, - 0.05 + -0.2225 ], "humidity": [ -0.35, @@ -184433,25 +82157,25 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ @@ -184460,26 +82184,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ -0.35, @@ -184487,26 +82211,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ -0.35, @@ -184514,26 +82238,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ -0.35, @@ -184541,26 +82265,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ -0.35, @@ -184568,26 +82292,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ -0.35, @@ -184595,98 +82319,98 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -184694,107 +82418,107 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -184802,62 +82526,62 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + 0.45, + 0.55 ], "humidity": [ -0.1, @@ -184865,26 +82589,26 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.55, + 1 ], "humidity": [ -0.1, @@ -184892,21 +82616,21 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ @@ -184914,49 +82638,49 @@ -0.7799 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -184964,161 +82688,161 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, @@ -185126,323 +82850,323 @@ ], "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -185454,49 +83178,49 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, @@ -185504,12 +83228,12 @@ ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -185517,26 +83241,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -185544,26 +83268,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, + -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -185571,26 +83295,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -185598,26 +83322,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -185625,26 +83349,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -185652,26 +83376,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -185679,53 +83403,53 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ 0.55, 1 ], - "weirdness": [ - 0.7666, - 0.9333 + "weirdness": [ + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -185733,26 +83457,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -185760,26 +83484,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -185787,26 +83511,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -185814,13 +83538,13 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.19, @@ -185828,12 +83552,12 @@ ], "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -185841,26 +83565,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -185868,26 +83592,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ -0.375, - -0.2225 + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -185895,26 +83619,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -185922,13 +83646,13 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -185940,8 +83664,8 @@ 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -185949,26 +83673,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -185976,26 +83700,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -186003,26 +83727,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -186030,26 +83754,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -186057,26 +83781,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -186084,26 +83808,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -186111,26 +83835,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -186138,13 +83862,13 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -186152,12 +83876,12 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -186165,26 +83889,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -186192,26 +83916,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -186219,26 +83943,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -186246,26 +83970,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], "depth": 0, "erosion": [ - -1, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -186273,26 +83997,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -186300,26 +84024,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -186327,26 +84051,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -186354,26 +84078,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -186381,26 +84105,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -186408,16 +84132,16 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, @@ -186426,8 +84150,8 @@ -0.375 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -186435,26 +84159,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -186462,26 +84186,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -186489,26 +84213,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -186516,26 +84240,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -186543,26 +84267,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, + -0.2225, 0.05 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -186570,26 +84294,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -186597,26 +84321,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -186624,26 +84348,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -186651,26 +84375,26 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -186678,22 +84402,22 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ 0.3, @@ -186705,22 +84429,22 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -186732,22 +84456,22 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -186759,22 +84483,22 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -186786,22 +84510,22 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -186813,22 +84537,22 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -186840,22 +84564,22 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -186867,22 +84591,22 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -186894,22 +84618,22 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -186921,22 +84645,22 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -186948,184 +84672,184 @@ 1 ], "weirdness": [ - 0.7666, - 0.9333 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:stony_shore", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - -1, - -0.2225 + 0.55, + 1 ], "humidity": [ - -1, + 0.3, 1 ], "offset": 0, "temperature": [ - -1, + 0.55, 1 ], "weirdness": [ - 0.9333, - 1 + 0.5666, + 0.7666 ] } }, { - "biome": "minecraft:stony_shore", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ -1, - -0.2225 + -0.375 ], "humidity": [ -1, - 1 + -0.35 ], "offset": 0, "temperature": [ -1, - 1 + -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:swamp", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ -1, - 1 + -0.35 ], "offset": 0, "temperature": [ - -0.45, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:swamp", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.7799 ], "humidity": [ -1, - 1 + -0.35 ], "offset": 0, "temperature": [ - -0.45, - 0.2 + -1, + -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:mangrove_swamp", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ -1, - 1 + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 1 + -1, + -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:mangrove_swamp", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ -1, - 1 + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 1 + -1, + -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + 0.05 ], "humidity": [ -1, @@ -187137,22 +84861,22 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -187164,22 +84888,22 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 0.3 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ -1, @@ -187191,22 +84915,22 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ -1, @@ -187218,22 +84942,22 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ -1, @@ -187245,22 +84969,22 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ -1, @@ -187272,22 +84996,22 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ -1, @@ -187299,22 +85023,22 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ -1, @@ -187326,26 +85050,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -187353,26 +85077,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -187380,26 +85104,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -187407,26 +85131,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -187434,26 +85158,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -187461,26 +85185,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, + -0.375, 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -187488,13 +85212,13 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -187502,12 +85226,12 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -187515,26 +85239,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -187542,26 +85266,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -187569,26 +85293,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.05, 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -187596,17 +85320,17 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ @@ -187614,8 +85338,8 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -187623,26 +85347,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -187650,26 +85374,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -187677,26 +85401,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -187704,26 +85428,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -187731,26 +85455,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -187758,26 +85482,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -187785,26 +85509,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -187812,26 +85536,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -187839,26 +85563,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:ice_spikes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -187866,26 +85590,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -187893,26 +85617,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -187920,26 +85644,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -187947,26 +85671,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -187974,26 +85698,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -188001,26 +85725,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -188028,26 +85752,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -188055,26 +85779,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -188082,26 +85806,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -188109,26 +85833,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -188136,26 +85860,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -188163,26 +85887,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - -0.2225 + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -188190,26 +85914,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -188217,26 +85941,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -188244,16 +85968,16 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, @@ -188262,8 +85986,8 @@ 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -188271,26 +85995,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -188298,26 +86022,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -188325,26 +86049,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -188352,26 +86076,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -188379,26 +86103,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -188406,13 +86130,13 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, @@ -188420,12 +86144,12 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -188433,26 +86157,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -188460,26 +86184,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -188487,26 +86211,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -188514,26 +86238,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -188541,26 +86265,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -188568,26 +86292,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -188595,26 +86319,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -188622,26 +86346,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -188649,26 +86373,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -188676,26 +86400,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -188703,26 +86427,26 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ @@ -188730,178 +86454,178 @@ -0.45 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - -0.2225 + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, @@ -188910,53 +86634,53 @@ -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ @@ -188964,103 +86688,103 @@ 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -189068,107 +86792,107 @@ ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -189176,435 +86900,435 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, + -1, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, - -0.2225 + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ @@ -189612,49 +87336,49 @@ -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.3, @@ -189662,53 +87386,53 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -189716,89 +87440,89 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ 0.1, @@ -189806,26 +87530,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -189833,26 +87557,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -189860,26 +87584,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -189887,26 +87611,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -189914,26 +87638,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ 0.1, @@ -189941,26 +87665,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -189968,26 +87692,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -189995,26 +87719,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -190022,26 +87746,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -190049,26 +87773,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -190076,26 +87800,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ 0.1, @@ -190103,23 +87827,23 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.55, 1 @@ -190130,26 +87854,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ -1, - -0.7799 + -0.375 ], "humidity": [ 0.3, @@ -190157,23 +87881,23 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 @@ -190184,53 +87908,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:grove", - "parameters": { - "continentalness": [ - -0.11, - 0.3 - ], - "depth": 0, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { - "continentalness": [ - -0.11, - 0.3 + "continentalness": [ + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ 0.3, @@ -190238,21 +87935,21 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ @@ -190265,23 +87962,23 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 @@ -190292,26 +87989,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + -0.19, 0.03 ], "depth": 0, "erosion": [ -0.375, - -0.2225 + 0.05 ], "humidity": [ 0.3, @@ -190319,23 +88016,23 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 @@ -190346,17 +88043,17 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -190364,8 +88061,8 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -190373,26 +88070,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -190400,26 +88097,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -190427,26 +88124,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -190454,26 +88151,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -190481,26 +88178,26 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.55, + 1 ], "humidity": [ 0.3, @@ -190508,344 +88205,344 @@ ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.45, + -0.15 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 1 ], "depth": 0, @@ -190854,53 +88551,53 @@ 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -1, - -0.45 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ @@ -190908,53 +88605,53 @@ -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], "depth": 0, "erosion": [ @@ -190962,319 +88659,319 @@ -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -191282,219 +88979,219 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -191502,53 +89199,53 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ @@ -191556,53 +89253,53 @@ 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ @@ -191610,53 +89307,53 @@ -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], "depth": 0, "erosion": [ @@ -191664,319 +89361,319 @@ -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -191984,219 +89681,219 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -192204,53 +89901,53 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_gravelly_hills", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ @@ -192258,53 +89955,53 @@ 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + -0.15, + 0.2 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ @@ -192312,53 +90009,53 @@ -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], "depth": 0, "erosion": [ @@ -192366,319 +90063,319 @@ -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -192686,219 +90383,219 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -192906,53 +90603,53 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ @@ -192960,31 +90657,31 @@ 1 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ -0.1, @@ -192992,21 +90689,21 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ @@ -193014,53 +90711,53 @@ -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], "depth": 0, "erosion": [ @@ -193068,274 +90765,274 @@ -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:meadow", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ 0.1, @@ -193343,26 +91040,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -193370,17 +91067,17 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -193388,8 +91085,8 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -193397,26 +91094,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -193424,26 +91121,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -193451,26 +91148,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ 0.1, @@ -193478,26 +91175,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -193505,26 +91202,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -193532,26 +91229,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ 0.1, @@ -193559,26 +91256,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.1, @@ -193586,21 +91283,21 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -193613,23 +91310,23 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -193640,21 +91337,21 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ @@ -193667,48 +91364,48 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - 0.1, - 0.3 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ @@ -193721,23 +91418,23 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 @@ -193748,21 +91445,21 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], "depth": 0, "erosion": [ @@ -193775,23 +91472,23 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 @@ -193802,26 +91499,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ 0.3, @@ -193829,26 +91526,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -193856,26 +91553,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -193883,26 +91580,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -193910,26 +91607,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -193937,26 +91634,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -193964,26 +91661,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ 0.3, @@ -193991,26 +91688,26 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ 0.3, @@ -194018,71 +91715,71 @@ ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.2, + 0.55 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, @@ -194090,219 +91787,219 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -194310,53 +92007,53 @@ 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ @@ -194364,53 +92061,53 @@ 1 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:old_growth_pine_taiga", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - 0.3, - 1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.45, - -0.15 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ @@ -194418,53 +92115,53 @@ -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], "depth": 0, "erosion": [ @@ -194472,319 +92169,319 @@ -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, @@ -194792,219 +92489,219 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -195012,53 +92709,53 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ @@ -195066,53 +92763,53 @@ 1 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:sunflower_plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.375 ], "humidity": [ - -1, - -0.35 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ @@ -195120,53 +92817,53 @@ -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:snowy_slopes", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -1, -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], "depth": 0, "erosion": [ @@ -195174,319 +92871,319 @@ -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:cherry_grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, @@ -195494,219 +93191,219 @@ ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.375, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -195714,53 +93411,53 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ @@ -195768,40 +93465,40 @@ 1 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.55, + 1 ], "weirdness": [ - 0.9333, - 1 + 0.7666, + 0.9333 ] } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -1, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -1, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + 1 ], "weirdness": [ 0.9333, @@ -195810,7 +93507,7 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.11, @@ -195818,16 +93515,16 @@ ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + 1 ], "offset": 0, "temperature": [ - -0.15, + -0.45, 0.2 ], "weirdness": [ @@ -195837,25 +93534,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_dune_edge", "parameters": { "continentalness": [ -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + 1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + 0.2, + 1 ], "weirdness": [ 0.9333, @@ -195864,25 +93561,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -195891,52 +93588,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.3 ], - "depth": 1, - "erosion": [ - -0.7799, - -0.375 - ], - "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - 0.3, - 1 - ], "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -195945,25 +93615,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.7799, -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -195972,7 +93642,7 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -195984,40 +93654,13 @@ -0.2225 ], "humidity": [ - -0.1, - 0.1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:forest", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], - "depth": 1, - "erosion": [ - -0.375, - -0.2225 - ], - "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196026,7 +93669,7 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, @@ -196038,13 +93681,13 @@ -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196053,25 +93696,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196080,25 +93723,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196107,25 +93750,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196134,25 +93777,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196161,25 +93804,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 0.03 + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196188,25 +93831,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196215,25 +93858,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196242,25 +93885,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + -0.11 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196269,25 +93912,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196296,25 +93939,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196323,25 +93966,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196350,25 +93993,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196377,25 +94020,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196404,25 +94047,25 @@ } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196431,25 +94074,25 @@ } }, { - "biome": "minecraft:windswept_hills", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196458,25 +94101,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 0.03 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196485,25 +94128,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196512,25 +94155,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, + -0.19, 1 ], "depth": 0, "erosion": [ - -1, - -0.7799 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196539,25 +94182,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196566,25 +94209,25 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 0.3 + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196593,25 +94236,25 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196620,25 +94263,25 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196647,25 +94290,25 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196674,25 +94317,25 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196701,25 +94344,25 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.03 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196728,25 +94371,25 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196755,25 +94398,25 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196782,11 +94425,11 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + 0.03, + 0.3 ], "depth": 0, "erosion": [ @@ -196794,13 +94437,13 @@ -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196809,25 +94452,25 @@ } }, { - "biome": "minecraft:birch_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196836,7 +94479,7 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -196848,13 +94491,13 @@ 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196863,25 +94506,25 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196890,25 +94533,25 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.19, 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196917,25 +94560,25 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196944,25 +94587,25 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196971,25 +94614,25 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -196998,7 +94641,7 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -197006,17 +94649,17 @@ ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197025,25 +94668,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197052,16 +94695,16 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -197069,8 +94712,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197079,16 +94722,16 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, - 0.03 + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -197096,8 +94739,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197106,16 +94749,16 @@ } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -197123,8 +94766,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197133,16 +94776,16 @@ } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -197150,8 +94793,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197160,16 +94803,16 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -197177,8 +94820,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197187,16 +94830,16 @@ } }, { - "biome": "minecraft:old_growth_birch_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.375, + -0.2225 ], "humidity": [ 0.1, @@ -197204,8 +94847,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197214,25 +94857,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197241,25 +94884,25 @@ } }, { - "biome": "minecraft:grove", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197268,25 +94911,25 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197295,25 +94938,25 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197322,25 +94965,25 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197349,25 +94992,25 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197376,25 +95019,25 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197403,25 +95046,25 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 0.03 + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197430,16 +95073,16 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.11, + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ 0.3, @@ -197447,8 +95090,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197457,16 +95100,16 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -197474,8 +95117,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197484,7 +95127,7 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.3, @@ -197492,8 +95135,8 @@ ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -197501,8 +95144,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197511,13 +95154,13 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ -0.375, -0.2225 @@ -197528,8 +95171,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197538,16 +95181,16 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.03, + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -197555,8 +95198,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197565,16 +95208,16 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -197582,8 +95225,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197592,11 +95235,11 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + 0.03 ], "depth": 0, "erosion": [ @@ -197609,8 +95252,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197619,13 +95262,13 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ -0.2225, 0.05 @@ -197636,8 +95279,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197646,7 +95289,7 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -197663,35 +95306,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:dark_forest", - "parameters": { - "continentalness": [ - -0.19, - 1 - ], - "depth": 1, - "erosion": [ - 0.05, - 0.45 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197700,7 +95316,7 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, @@ -197717,8 +95333,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197727,13 +95343,13 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -197744,8 +95360,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197754,11 +95370,11 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], "depth": 0, "erosion": [ @@ -197771,8 +95387,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197781,16 +95397,16 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ 0.3, @@ -197798,8 +95414,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197808,16 +95424,16 @@ } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ 0.3, @@ -197825,8 +95441,8 @@ ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -1, + -0.45 ], "weirdness": [ 0.9333, @@ -197835,25 +95451,25 @@ } }, { - "biome": "minecraft:windswept_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -197862,25 +95478,25 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -197889,25 +95505,25 @@ } }, { - "biome": "minecraft:dark_forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ - -0.15, - 0.2 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -197916,16 +95532,16 @@ } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -197933,8 +95549,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -197943,16 +95559,16 @@ } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -197960,8 +95576,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -197970,16 +95586,16 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -197987,8 +95603,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -197997,16 +95613,16 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ -1, @@ -198014,8 +95630,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198024,16 +95640,16 @@ } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ -1, @@ -198041,8 +95657,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198051,16 +95667,16 @@ } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ -1, @@ -198068,8 +95684,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198078,16 +95694,16 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ -1, @@ -198095,8 +95711,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198105,16 +95721,16 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ -1, @@ -198122,8 +95738,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198132,16 +95748,16 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ -1, @@ -198149,8 +95765,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198159,16 +95775,16 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ -1, @@ -198176,8 +95792,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198186,25 +95802,25 @@ } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198213,25 +95829,25 @@ } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198240,25 +95856,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198267,25 +95883,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198294,25 +95910,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198321,25 +95937,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198348,25 +95964,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198375,25 +95991,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], - "humidity": [ - -1, - -0.35 + "humidity": [ + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198402,25 +96018,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198429,25 +96045,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198456,7 +96072,7 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, @@ -198468,13 +96084,13 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198483,25 +96099,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198510,25 +96126,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198537,25 +96153,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198564,25 +96180,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198591,25 +96207,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198618,25 +96234,25 @@ } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198645,25 +96261,25 @@ } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198672,25 +96288,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198699,25 +96315,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198726,25 +96342,25 @@ } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198753,25 +96369,25 @@ } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198780,25 +96396,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198807,25 +96423,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198834,25 +96450,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198861,25 +96477,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198888,25 +96504,25 @@ } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198915,25 +96531,25 @@ } }, { - "biome": "minecraft:savanna_plateau", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198942,25 +96558,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198969,25 +96585,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -198996,25 +96612,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199023,25 +96639,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199050,25 +96666,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199077,25 +96693,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199104,25 +96720,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199131,25 +96747,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199158,7 +96774,7 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -199170,13 +96786,13 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199185,25 +96801,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199212,25 +96828,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199239,25 +96855,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199266,25 +96882,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199293,25 +96909,25 @@ } }, { - "biome": "minecraft:savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199320,25 +96936,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, - "temperature": [ - 0.2, - 0.55 + "temperature": [ + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199347,25 +96963,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199374,25 +96990,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199401,25 +97017,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199428,25 +97044,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199455,25 +97071,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199482,25 +97098,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199509,25 +97125,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199536,25 +97152,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199563,25 +97179,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.45, + -0.15 ], "weirdness": [ 0.9333, @@ -199590,25 +97206,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199617,25 +97233,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199644,25 +97260,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199671,25 +97287,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199698,25 +97314,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199725,25 +97341,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199752,25 +97368,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199779,25 +97395,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199806,25 +97422,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199833,25 +97449,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199860,7 +97476,7 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, @@ -199872,13 +97488,13 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199887,25 +97503,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199914,25 +97530,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199941,25 +97557,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199968,25 +97584,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -199995,25 +97611,25 @@ } }, { - "biome": "minecraft:plains", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200022,25 +97638,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200049,25 +97665,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200076,25 +97692,25 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200103,25 +97719,25 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200130,25 +97746,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200157,25 +97773,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200184,25 +97800,25 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200211,25 +97827,25 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200238,25 +97854,25 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200265,25 +97881,25 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_plains", "parameters": { - "continentalness": [ - 0.03, - 0.3 + "continentalness": [ + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200292,25 +97908,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200319,25 +97935,25 @@ } }, { - "biome": "minecraft:forest", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200346,25 +97962,25 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200373,25 +97989,25 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200400,25 +98016,25 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200427,25 +98043,25 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200454,25 +98070,25 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200481,25 +98097,25 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200508,25 +98124,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200535,25 +98151,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200562,7 +98178,7 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, @@ -200574,13 +98190,13 @@ 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200589,25 +98205,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200616,25 +98232,25 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200643,16 +98259,16 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -200660,8 +98276,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200670,16 +98286,16 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -200687,8 +98303,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200697,16 +98313,16 @@ } }, { - "biome": "minecraft:sparse_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -200714,8 +98330,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200724,25 +98340,25 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200751,25 +98367,25 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200778,25 +98394,25 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200805,25 +98421,25 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200832,25 +98448,25 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200859,25 +98475,25 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200886,25 +98502,25 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200913,25 +98529,25 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200940,25 +98556,25 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200967,25 +98583,25 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -200994,16 +98610,16 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ 0.3, @@ -201011,8 +98627,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -201021,16 +98637,16 @@ } }, { - "biome": "minecraft:jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -201038,8 +98654,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -201048,16 +98664,16 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -201065,8 +98681,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -201075,16 +98691,16 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -201092,8 +98708,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -201102,16 +98718,16 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -201119,8 +98735,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -201129,16 +98745,16 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -201146,8 +98762,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -201156,16 +98772,16 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -201173,8 +98789,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -201183,16 +98799,16 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -201200,8 +98816,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -201210,16 +98826,16 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -201227,8 +98843,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -201237,13 +98853,13 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -201254,8 +98870,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -201264,7 +98880,7 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, @@ -201281,8 +98897,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -201291,13 +98907,13 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -201308,8 +98924,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -201318,16 +98934,16 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ 0.3, @@ -201335,8 +98951,8 @@ ], "offset": 0, "temperature": [ - 0.2, - 0.55 + -0.15, + 0.2 ], "weirdness": [ 0.9333, @@ -201345,20 +98961,20 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -201372,20 +98988,20 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -201399,20 +99015,20 @@ } }, { - "biome": "minecraft:bamboo_jungle", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - 0.3, - 1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -201426,16 +99042,16 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -201443,8 +99059,8 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201453,16 +99069,16 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -201470,8 +99086,8 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201480,16 +99096,16 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ -1, @@ -201497,8 +99113,8 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201507,16 +99123,16 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ -1, @@ -201524,8 +99140,8 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201534,16 +99150,16 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ -1, @@ -201551,8 +99167,8 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201561,16 +99177,16 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ -1, @@ -201578,8 +99194,8 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201588,16 +99204,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ -1, @@ -201605,8 +99221,8 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201615,16 +99231,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ -1, @@ -201632,8 +99248,8 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201642,16 +99258,16 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ -1, @@ -201659,8 +99275,8 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201669,16 +99285,16 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ -1, @@ -201686,8 +99302,8 @@ ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201696,25 +99312,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201723,25 +99339,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201750,25 +99366,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201777,25 +99393,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201804,25 +99420,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201831,25 +99447,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201858,25 +99474,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201885,25 +99501,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201912,25 +99528,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201939,25 +99555,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201966,7 +99582,7 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, @@ -201978,13 +99594,13 @@ 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -201993,25 +99609,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202020,25 +99636,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -1, - -0.35 + -0.35, + -0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202047,25 +99663,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202074,25 +99690,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202101,25 +99717,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -1, - -0.35 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202128,25 +99744,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202155,25 +99771,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202182,25 +99798,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202209,25 +99825,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202236,25 +99852,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202263,25 +99879,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202290,25 +99906,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202317,25 +99933,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202344,25 +99960,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202371,25 +99987,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + -0.1, + 0.1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202398,25 +100014,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202425,25 +100041,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202452,25 +100068,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202479,25 +100095,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202506,25 +100122,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202533,25 +100149,25 @@ } }, { - "biome": "minecraft:eroded_badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202560,25 +100176,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202587,25 +100203,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202614,25 +100230,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202641,25 +100257,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202668,7 +100284,7 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, @@ -202680,13 +100296,13 @@ 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202695,25 +100311,25 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202722,25 +100338,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.35, - -0.1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202749,25 +100365,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202776,25 +100392,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202803,25 +100419,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.35, - -0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202830,25 +100446,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202857,25 +100473,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202884,25 +100500,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202911,25 +100527,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202938,25 +100554,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202965,25 +100581,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -202992,25 +100608,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -203019,25 +100635,25 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -203046,25 +100662,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -203073,25 +100689,25 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_forests", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + 0.3, + 1 ], "offset": 0, "temperature": [ - 0.55, - 1 + 0.2, + 0.55 ], "weirdness": [ 0.9333, @@ -203100,20 +100716,20 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -203127,20 +100743,20 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -203154,20 +100770,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -203181,20 +100797,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -203208,20 +100824,20 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -203235,20 +100851,20 @@ } }, { - "biome": "minecraft:badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -203262,20 +100878,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -203289,20 +100905,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -203316,20 +100932,20 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -203343,20 +100959,20 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -203370,7 +100986,7 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, @@ -203382,8 +100998,8 @@ 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -203397,20 +101013,20 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -203424,20 +101040,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - -0.1, - 0.1 + -1, + -0.35 ], "offset": 0, "temperature": [ @@ -203451,20 +101067,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -203478,20 +101094,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -203505,20 +101121,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ - -0.1, - 0.1 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -203532,20 +101148,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -203559,20 +101175,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -203586,20 +101202,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -203613,20 +101229,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -203640,20 +101256,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_mountains", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -203667,20 +101283,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -203694,20 +101310,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -203721,20 +101337,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -203748,20 +101364,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -203775,20 +101391,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.35, + -0.1 ], "offset": 0, "temperature": [ @@ -203802,20 +101418,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -203829,20 +101445,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -203856,20 +101472,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -203883,20 +101499,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -203910,20 +101526,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -203937,20 +101553,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -203964,20 +101580,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -203991,20 +101607,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -204018,20 +101634,20 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -204045,20 +101661,20 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -204072,7 +101688,7 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, @@ -204084,8 +101700,8 @@ 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -204099,20 +101715,20 @@ } }, { - "biome": "minecraft:windswept_savanna", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.03 + 0.03, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -204126,20 +101742,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 1 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.55, + 1 ], "humidity": [ - 0.1, - 0.3 + -0.1, + 0.1 ], "offset": 0, "temperature": [ @@ -204153,16 +101769,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + -0.11, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.45, - 0.55 + -1, + -0.7799 ], "humidity": [ 0.1, @@ -204180,16 +101796,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + -0.11, + 0.3 ], "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -204207,16 +101823,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - -0.11 + 0.3, + 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.55, - 1 + -0.7799, + -0.375 ], "humidity": [ 0.1, @@ -204234,20 +101850,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, - 1 + 0.03 ], "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -204261,20 +101877,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 1 + 0.03, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -1, - -0.7799 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -204288,20 +101904,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.3 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.375, + -0.2225 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -204315,20 +101931,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.11, - 0.3 + -0.19, + 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -204342,20 +101958,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + 0.03, 1 ], "depth": 0, "erosion": [ - -0.7799, - -0.375 + -0.2225, + 0.05 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -204369,20 +101985,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.3, + -0.19, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.7799, - -0.375 + 0.05, + 0.45 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -204396,20 +102012,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.11, - 0.03 + -0.19, + -0.11 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -204423,20 +102039,20 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -204450,20 +102066,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, - 0.3 + 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.45, + 0.55 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -204477,20 +102093,20 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - 0.03, - 0.3 + -0.19, + -0.11 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + 0.55, + 1 ], "humidity": [ - 0.3, - 1 + 0.1, + 0.3 ], "offset": 0, "temperature": [ @@ -204504,16 +102120,16 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, + -0.11, 1 ], "depth": 0, "erosion": [ - -0.375, - -0.2225 + -1, + -0.7799 ], "humidity": [ 0.3, @@ -204531,16 +102147,16 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.3, - 1 + -0.11, + 0.3 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.375, - -0.2225 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -204558,16 +102174,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, - 0.03 + 0.3, + 1 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.7799, + -0.375 ], "humidity": [ 0.3, @@ -204585,16 +102201,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ - -0.19, + -0.11, 0.03 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -204612,16 +102228,16 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ 0.03, - 1 + 0.3 ], "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -204639,16 +102255,16 @@ } }, { - "biome": "minecraft:wooded_badlands", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - 0.03, + 0.3, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - -0.2225, - 0.05 + -0.375, + -0.2225 ], "humidity": [ 0.3, @@ -204666,16 +102282,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - 1 + 0.03 ], "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -204693,16 +102309,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_hills", "parameters": { "continentalness": [ - -0.19, + 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ - 0.05, - 0.45 + -0.2225, + 0.05 ], "humidity": [ 0.3, @@ -204720,16 +102336,16 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, - -0.11 + 1 ], "depth": 0, "erosion": [ - 0.45, - 0.55 + 0.05, + 0.45 ], "humidity": [ 0.3, @@ -204747,39 +102363,12 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, -0.11 ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.11, - 0.03 - ], "depth": 0, "erosion": [ 0.45, @@ -204801,39 +102390,12 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.11, 0.03 ], - "depth": 1, - "erosion": [ - 0.45, - 0.55 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - 0.03, - 1 - ], "depth": 0, "erosion": [ 0.45, @@ -204855,13 +102417,13 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ 0.03, 1 ], - "depth": 1, + "depth": 0, "erosion": [ 0.45, 0.55 @@ -204882,7 +102444,7 @@ } }, { - "biome": "minecraft:desert", + "biome": "tfg:mars/martian_plains", "parameters": { "continentalness": [ -0.19, @@ -204907,33 +102469,6 @@ 1 ] } - }, - { - "biome": "minecraft:desert", - "parameters": { - "continentalness": [ - -0.19, - -0.11 - ], - "depth": 1, - "erosion": [ - 0.55, - 1 - ], - "humidity": [ - 0.3, - 1 - ], - "offset": 0, - "temperature": [ - 0.55, - 1 - ], - "weirdness": [ - 0.9333, - 1 - ] - } } ] }, diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_dune_edge.json b/kubejs/data/tfg/worldgen/biome/mars/martian_dune_edge.json new file mode 100644 index 000000000..555239dc9 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_dune_edge.json @@ -0,0 +1,75 @@ +{ + "carvers": { + "air": [ + "tfg:mars_cave", + "tfg:mars_canyon" + ] + }, + "downfall": 0.0, + "effects": { + "fog_color": 15117444, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:crimson_spore" + }, + "probability": 0.014 + }, + "sky_color": 15117444, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [], + "#tfg:mars_craters", + [ + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" + ], + [ + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" + ], + [], + [], + "#tfg:mars_veins", + [], + "#tfg:mars_small_rock_features", + [ + + ], + [ + "tfg:mars/hardening" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "ad_astra:martian_raptor": { + "charge": 0.2, + "energy_budget": 0.015 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json b/kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json new file mode 100644 index 000000000..555239dc9 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json @@ -0,0 +1,75 @@ +{ + "carvers": { + "air": [ + "tfg:mars_cave", + "tfg:mars_canyon" + ] + }, + "downfall": 0.0, + "effects": { + "fog_color": 15117444, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:crimson_spore" + }, + "probability": 0.014 + }, + "sky_color": 15117444, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [], + "#tfg:mars_craters", + [ + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" + ], + [ + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" + ], + [], + [], + "#tfg:mars_veins", + [], + "#tfg:mars_small_rock_features", + [ + + ], + [ + "tfg:mars/hardening" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "ad_astra:martian_raptor": { + "charge": 0.2, + "energy_budget": 0.015 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_forests.json b/kubejs/data/tfg/worldgen/biome/mars/martian_forests.json new file mode 100644 index 000000000..555239dc9 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_forests.json @@ -0,0 +1,75 @@ +{ + "carvers": { + "air": [ + "tfg:mars_cave", + "tfg:mars_canyon" + ] + }, + "downfall": 0.0, + "effects": { + "fog_color": 15117444, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:crimson_spore" + }, + "probability": 0.014 + }, + "sky_color": 15117444, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [], + "#tfg:mars_craters", + [ + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" + ], + [ + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" + ], + [], + [], + "#tfg:mars_veins", + [], + "#tfg:mars_small_rock_features", + [ + + ], + [ + "tfg:mars/hardening" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "ad_astra:martian_raptor": { + "charge": 0.2, + "energy_budget": 0.015 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_hills.json b/kubejs/data/tfg/worldgen/biome/mars/martian_hills.json new file mode 100644 index 000000000..555239dc9 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_hills.json @@ -0,0 +1,75 @@ +{ + "carvers": { + "air": [ + "tfg:mars_cave", + "tfg:mars_canyon" + ] + }, + "downfall": 0.0, + "effects": { + "fog_color": 15117444, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:crimson_spore" + }, + "probability": 0.014 + }, + "sky_color": 15117444, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [], + "#tfg:mars_craters", + [ + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" + ], + [ + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" + ], + [], + [], + "#tfg:mars_veins", + [], + "#tfg:mars_small_rock_features", + [ + + ], + [ + "tfg:mars/hardening" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "ad_astra:martian_raptor": { + "charge": 0.2, + "energy_budget": 0.015 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json b/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json index 44a07a9b6..555239dc9 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json @@ -1,9 +1,8 @@ { "carvers": { "air": [ - "minecraft:cave", - "minecraft:cave_extra_underground", - "minecraft:canyon" + "tfg:mars_cave", + "tfg:mars_canyon" ] }, "downfall": 0.0, @@ -27,17 +26,31 @@ }, "features": [ [], - [], - [], + "#tfg:mars_craters", [ - + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" ], [ - + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" ], [], + [], "#tfg:mars_veins", - [] + [], + "#tfg:mars_small_rock_features", + [ + + ], + [ + "tfg:mars/hardening" + ] ], "has_precipitation": false, "spawn_costs": { @@ -52,12 +65,7 @@ "creature": [], "misc": [], "monster": [ - { - "type": "ad_astra:martian_raptor", - "maxCount": 3, - "minCount": 1, - "weight": 100 - } + ], "underground_water_creature": [], "water_ambient": [], diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_oasis.json b/kubejs/data/tfg/worldgen/biome/mars/martian_oasis.json new file mode 100644 index 000000000..555239dc9 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_oasis.json @@ -0,0 +1,75 @@ +{ + "carvers": { + "air": [ + "tfg:mars_cave", + "tfg:mars_canyon" + ] + }, + "downfall": 0.0, + "effects": { + "fog_color": 15117444, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:crimson_spore" + }, + "probability": 0.014 + }, + "sky_color": 15117444, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [], + "#tfg:mars_craters", + [ + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" + ], + [ + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" + ], + [], + [], + "#tfg:mars_veins", + [], + "#tfg:mars_small_rock_features", + [ + + ], + [ + "tfg:mars/hardening" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "ad_astra:martian_raptor": { + "charge": 0.2, + "energy_budget": 0.015 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_plains.json b/kubejs/data/tfg/worldgen/biome/mars/martian_plains.json index 44a07a9b6..555239dc9 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_plains.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_plains.json @@ -1,9 +1,8 @@ { "carvers": { "air": [ - "minecraft:cave", - "minecraft:cave_extra_underground", - "minecraft:canyon" + "tfg:mars_cave", + "tfg:mars_canyon" ] }, "downfall": 0.0, @@ -27,17 +26,31 @@ }, "features": [ [], - [], - [], + "#tfg:mars_craters", [ - + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" ], [ - + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" ], [], + [], "#tfg:mars_veins", - [] + [], + "#tfg:mars_small_rock_features", + [ + + ], + [ + "tfg:mars/hardening" + ] ], "has_precipitation": false, "spawn_costs": { @@ -52,12 +65,7 @@ "creature": [], "misc": [], "monster": [ - { - "type": "ad_astra:martian_raptor", - "maxCount": 3, - "minCount": 1, - "weight": 100 - } + ], "underground_water_creature": [], "water_ambient": [], diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_riverbed.json b/kubejs/data/tfg/worldgen/biome/mars/martian_riverbed.json index dbdb2d9e8..555239dc9 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_riverbed.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_riverbed.json @@ -1,9 +1,8 @@ { "carvers": { "air": [ - "minecraft:cave", - "minecraft:cave_extra_underground", - "minecraft:canyon" + "tfg:mars_cave", + "tfg:mars_canyon" ] }, "downfall": 0.0, @@ -27,17 +26,31 @@ }, "features": [ [], + "#tfg:mars_craters", + [ + "tfg:earth/geode/amethyst", + "tfg:earth/geode/barite", + "tfg:earth/geode/calcite", + "tfg:earth/geode/gypsum", + "tfg:earth/geode/opal", + "tfg:earth/geode/pyrite", + "tfg:earth/geode/quartzite" + ], + [ + "tfc:vein/gabbro_dike", + "tfc:vein/diorite_dike" + ], [], [], + "#tfg:mars_veins", + [], + "#tfg:mars_small_rock_features", [ ], [ - - ], - [], - "#tfg:mars_veins", - [] + "tfg:mars/hardening" + ] ], "has_precipitation": false, "spawn_costs": { @@ -52,12 +65,7 @@ "creature": [], "misc": [], "monster": [ - { - "type": "ad_astra:martian_raptor", - "maxCount": 3, - "minCount": 1, - "weight": 100 - } + ], "underground_water_creature": [], "water_ambient": [], diff --git a/kubejs/data/tfg/worldgen/configured_carver/mars_canyon.json b/kubejs/data/tfg/worldgen/configured_carver/mars_canyon.json new file mode 100644 index 000000000..a8ca49d65 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_carver/mars_canyon.json @@ -0,0 +1,55 @@ +{ + "type": "minecraft:canyon", + "config": { + "probability": 0.015, + "y": { + "type": "uniform", + "min_inclusive": { + "absolute": -10 + }, + "max_inclusive": { + "absolute": 126 + } + }, + "yScale": 1, + "lava_level": { + "above_bottom": -2032 + }, + "aquifers_enabled": false, + "vertical_rotation": { + "type": "uniform", + "value": { + "min_inclusive": -0.25, + "max_exclusive": 0.25 + } + }, + "shape": { + "distance_factor": { + "type": "uniform", + "value": { + "min_inclusive": 2.0, + "max_exclusive": 10.0 + } + }, + "thickness": { + "type": "trapezoid", + "value": { + "min": 0.0, + "max": 6.0, + "plateau": 2.0 + } + }, + "width_smoothness": 10, + "horizontal_radius_factor": { + "type": "uniform", + "value": { + "min_inclusive": 0.5, + "max_exclusive": 1.25 + } + }, + "vertical_radius_default_factor": 1.0, + "vertical_radius_center_factor": 0.0 + }, + "replaceable": "#tfc:can_carve" + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_carver/mars_cave.json b/kubejs/data/tfg/worldgen/configured_carver/mars_cave.json new file mode 100644 index 000000000..f325a2473 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_carver/mars_cave.json @@ -0,0 +1,48 @@ +{ + "type": "minecraft:cave", + "config": { + "probability": 0.025, + "y": { + "type": "uniform", + "min_inclusive": { + "absolute": -10 + }, + "max_inclusive": { + "absolute": 126 + } + }, + "yScale": { + "type": "uniform", + "value": { + "min_inclusive": 0.1, + "max_exclusive": 0.9 + } + }, + "lava_level": { + "above_bottom": -2032 + }, + "aquifers_enabled": false, + "horizontal_radius_multiplier": { + "type": "uniform", + "value": { + "min_inclusive": 1.2, + "max_exclusive": 2.0 + } + }, + "vertical_radius_multiplier": { + "type": "uniform", + "value": { + "min_inclusive": 1.3, + "max_exclusive": 2.0 + } + }, + "floor_level": { + "type": "uniform", + "value": { + "min_inclusive": -1, + "max_exclusive": -0.4 + } + }, + "replaceable": "#tfc:can_carve" + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/base_3d_noise.json b/kubejs/data/tfg/worldgen/density_function/mars/base_3d_noise.json new file mode 100644 index 000000000..ed5a2d9c6 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/base_3d_noise.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:old_blended_noise", + "smear_scale_multiplier": 8.0, + "xz_factor": 80.0, + "xz_scale": 0.25, + "y_factor": 160.0, + "y_scale": 0.125 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/caves/entrances.json b/kubejs/data/tfg/worldgen/density_function/mars/caves/entrances.json new file mode 100644 index 000000000..c5f5337a3 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/caves/entrances.json @@ -0,0 +1,83 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0.37, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_entrance", + "xz_scale": 0.75, + "y_scale": 0.5 + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.3, + "from_y": -10, + "to_value": 0.0, + "to_y": 30 + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": "tfg:mars/caves/spaghetti_roughness_function", + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_rarity", + "xz_scale": 2.0, + "y_scale": 1.0 + } + }, + "noise": "minecraft:spaghetti_3d_1", + "rarity_value_mapper": "type_1" + }, + "argument2": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_rarity", + "xz_scale": 2.0, + "y_scale": 1.0 + } + }, + "noise": "minecraft:spaghetti_3d_2", + "rarity_value_mapper": "type_1" + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0765, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.011499999999999996, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + }, + "max": 1.0, + "min": -1.0 + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/caves/noodle.json b/kubejs/data/tfg/worldgen/density_function/mars/caves/noodle.json new file mode 100644 index 000000000..211c50c65 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/caves/noodle.json @@ -0,0 +1,94 @@ +{ + "type": "minecraft:range_choice", + "input": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -30.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "when_out_of_range": -1.0 + } + }, + "max_exclusive": 0.0, + "min_inclusive": -1000000.0, + "when_in_range": 64.0, + "when_out_of_range": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:add", + "argument1": -0.07500000000000001, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.025, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + }, + "when_out_of_range": 0.0 + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 1.5, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_ridge_a", + "xz_scale": 2.6666666666666665, + "y_scale": 2.6666666666666665 + }, + "when_out_of_range": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_ridge_b", + "xz_scale": 2.6666666666666665, + "y_scale": 2.6666666666666665 + }, + "when_out_of_range": 0.0 + } + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/caves/pillars.json b/kubejs/data/tfg/worldgen/density_function/mars/caves/pillars.json new file mode 100644 index 000000000..ef84930ec --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/caves/pillars.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 2.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar", + "xz_scale": 25.0, + "y_scale": 0.3 + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar_rareness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": 0.55, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.55, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_2d.json b/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_2d.json new file mode 100644 index 000000000..6501b227e --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_2d.json @@ -0,0 +1,61 @@ +{ + "type": "minecraft:clamp", + "input": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_modulator", + "xz_scale": 2.0, + "y_scale": 1.0 + }, + "noise": "minecraft:spaghetti_2d", + "rarity_value_mapper": "type_2" + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.083, + "argument2": "tfg:mars/caves/spaghetti_2d_thickness_modulator" + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": 8.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_elevation", + "xz_scale": 1.0, + "y_scale": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_value": 8.0, + "from_y": -32, + "to_value": -20.0, + "to_y": 320 + } + } + }, + "argument2": "tfg:mars/caves/spaghetti_2d_thickness_modulator" + } + } + }, + "max": 1.0, + "min": -1.0 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_2d_thickness_modulator.json b/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_2d_thickness_modulator.json new file mode 100644 index 000000000..be1366551 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_2d_thickness_modulator.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:add", + "argument1": -0.95, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.35000000000000003, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_thickness", + "xz_scale": 2.0, + "y_scale": 1.0 + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_roughness_function.json b/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_roughness_function.json new file mode 100644 index 000000000..549344e25 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/caves/spaghetti_roughness_function.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.05, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.05, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_roughness_modulator", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.4, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_roughness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/continents.json b/kubejs/data/tfg/worldgen/density_function/mars/continents.json new file mode 100644 index 000000000..d3a51fb7d --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/continents.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:spline", + "spline": { + "coordinate": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:continentalness", + "shift_x": "minecraft:shift_x", + "shift_y": 0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0 + }, + "points": [ + { + "location": -1, + "derivative": 1, + "value": -1 + }, + { + "location": 0.19, + "derivative": 1, + "value": -0.19 + }, + { + "location": 1, + "derivative": 1, + "value": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/depth.json b/kubejs/data/tfg/worldgen/density_function/mars/depth.json new file mode 100644 index 000000000..375e33586 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/depth.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -32, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": "tfg:mars/offset" +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/erosion.json b/kubejs/data/tfg/worldgen/density_function/mars/erosion.json new file mode 100644 index 000000000..fff06598e --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/erosion.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:erosion", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/factor.json b/kubejs/data/tfg/worldgen/density_function/mars/factor.json new file mode 100644 index 000000000..710611209 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/factor.json @@ -0,0 +1,890 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 10.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -10.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "tfg:mars/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.19, + "value": 3.95 + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.06, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.05, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 1.56 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 1.56 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 1.37 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 1.37 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": 4.69 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/jaggedness.json b/kubejs/data/tfg/worldgen/density_function/mars/jaggedness.json new file mode 100644 index 000000000..d11ffd3e4 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/jaggedness.json @@ -0,0 +1,303 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "tfg:mars/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.11, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.315 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.15 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.315 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.15 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.65, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:mars/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/offset.json b/kubejs/data/tfg/worldgen/density_function/mars/offset.json new file mode 100644 index 000000000..c056b64c6 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/offset.json @@ -0,0 +1,1523 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_offset" + }, + "argument2": { + "type": "minecraft:add", + "argument1": 1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.5037500262260437, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "tfg:mars/continents", + "points": [ + { + "derivative": 0.0, + "location": -1.1, + "value": 0.044 + }, + { + "derivative": 0.0, + "location": -1.02, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.51, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.44, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.18, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.16, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.01, + "location": -0.4, + "value": 0.001 + }, + { + "derivative": 0.01, + "location": 0.0, + "value": 0.003 + }, + { + "derivative": 0.094000004, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.25, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.20235021 + }, + { + "derivative": 0.5138249, + "location": 0.0, + "value": 0.7161751 + }, + { + "derivative": 0.5138249, + "location": 1.0, + "value": 1.23 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.43317974, + "location": 0.0, + "value": 0.44682026 + }, + { + "derivative": 0.43317974, + "location": 1.0, + "value": 0.88 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.3917051, + "location": 0.0, + "value": 0.30829495 + }, + { + "derivative": 0.3917051, + "location": 1.0, + "value": 0.70000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.07, + "location": -0.4, + "value": 0.0069999998 + }, + { + "derivative": 0.07, + "location": 0.0, + "value": 0.021 + }, + { + "derivative": 0.658, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:mars/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.34792626 + }, + { + "derivative": 0.5760369, + "location": 0.0, + "value": 0.9239631 + }, + { + "derivative": 0.5760369, + "location": 1.0, + "value": 1.5 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 0.5391705 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 1.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 0.5391705 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 1.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.2 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.5 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 0.6 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.099999994, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.099999994, + "location": 0.0, + "value": 0.03 + }, + { + "derivative": 0.94, + "location": 0.4, + "value": 0.5 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 0.6 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "tfg:mars/ridges_folded", + "points": [ + { + "derivative": 0.015, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + } + ] + } + } + }, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/ridges.json b/kubejs/data/tfg/worldgen/density_function/mars/ridges.json new file mode 100644 index 000000000..f4d6b4a5d --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/ridges.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:ridge", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/ridges_folded.json b/kubejs/data/tfg/worldgen/density_function/mars/ridges_folded.json new file mode 100644 index 000000000..c0d877d72 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/ridges_folded.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:mul", + "argument1": -3.0, + "argument2": { + "type": "minecraft:add", + "argument1": -0.3333333333333333, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:add", + "argument1": -0.6666666666666666, + "argument2": { + "type": "minecraft:abs", + "argument": "tfg:mars/ridges" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/mars/sloped_cheese.json b/kubejs/data/tfg/worldgen/density_function/mars/sloped_cheese.json new file mode 100644 index 000000000..f21f1e30b --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/mars/sloped_cheese.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": "tfg:mars/depth", + "argument2": { + "type": "minecraft:mul", + "argument1": "tfg:mars/jaggedness", + "argument2": { + "type": "minecraft:half_negative", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:jagged", + "xz_scale": 1500.0, + "y_scale": 0.0 + } + } + } + }, + "argument2": "tfg:mars/factor" + } + } + }, + "argument2": "tfg:mars/base_3d_noise" +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/mars_rock_layers.json b/kubejs/data/tfg/worldgen/mars_rock_layers.json deleted file mode 100644 index ff0cecc25..000000000 --- a/kubejs/data/tfg/worldgen/mars_rock_layers.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "rocks": { - "granite": "tfc:granite", - "diorite": "tfc:diorite", - "gabbro": "tfc:gabbro", - - "shale": "tfc:shale", - "claystone": "tfc:claystone", - "limestone": "tfc:limestone", - "conglomerate": "tfc:conglomerate", - "dolomite": "tfc:dolomite", - "chert": "tfc:chert", - "chalk": "tfc:chalk", - - "rhyolite": "tfc:rhyolite", - "basalt": "tfc:basalt", - "andesite": "tfc:andesite", - "dacite": "tfc:dacite", - - "mars_stone": { - "raw": "ad_astra:mars_stone", - "hardened": "tfg:rock/hardened_mars_stone", - "gravel": "ad_astra:mars_sand", - "cobble": "ad_astra:mars_cobblestone", - "sand": "ad_astra:mars_sand", - "sandstone": "ad_astra:mars_stone" - }, - - "red_granite": { - "raw": "TODO", - "hardened": "TODO", - "gravel": "TODO", - "cobble": "TODO", - "sand": "tfc:sand/red", - "sandstone": "tfc:raw_sandstone/red" - } - }, - "bottom": [ - "granite", - "gabbro", - "rhyolite", - "basalt", - "andesite", - "dacite", - "mars_stone", - "red_granite" - ], - "layers": [ - { - "id": "felsic", - "layers": { - "granite": "bottom", - "red_granite": "bottom" - } - }, - { - "id": "intermediate", - "layers": { - "mars_stone": "bottom" - } - }, - { - "id": "mafic", - "layers": { - "gabbro": "bottom" - } - }, - { - "id": "igneous_extrusive", - "layers": { - "rhyolite": "felsic", - "andesite": "intermediate", - "dacite": "intermediate", - "basalt": "mafic" - } - }, - { - "id": "igneous_extrusive_x2", - "layers": { - "rhyolite": "igneous_extrusive", - "andesite": "igneous_extrusive", - "dacite": "igneous_extrusive", - "basalt": "igneous_extrusive" - } - }, - { - "id": "land_sedimentary", - "layers": { - "claystone": "igneous_extrusive", - "conglomerate": "igneous_extrusive", - "dolomite": "igneous_extrusive", - "chert": "igneous_extrusive", - "chalk": "igneous_extrusive" - } - }, - { - "id": "water_sedimentary", - "layers": { - "shale": "bottom", - "claystone": "bottom", - "dolomite": "bottom", - "limestone": "bottom", - "chert": "bottom" - } - }, - { - "id": "uplift", - "layers": { - "red_granite": "land_sedimentary", - "granite": "land_sedimentary", - "gabbro": "land_sedimentary", - "mars_stone": "land_sedimentary" - } - } - ], - "ocean_floor": [ - "water_sedimentary" - ], - "volcanic": [ - "igneous_extrusive", - "igneous_extrusive_x2" - ], - "land": [ - "land_sedimentary", - "igneous_extrusive" - ], - "uplift": [ - "uplift" - ] -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/noise/stone_layer_mars_1.json b/kubejs/data/tfg/worldgen/noise/stone_layer_mars_1.json index a6747c363..6fb0a4293 100644 --- a/kubejs/data/tfg/worldgen/noise/stone_layer_mars_1.json +++ b/kubejs/data/tfg/worldgen/noise/stone_layer_mars_1.json @@ -10,5 +10,5 @@ 1, 1 ], - "firstOctave": -10 + "firstOctave": -11 } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/noise/stone_layer_mars_2.json b/kubejs/data/tfg/worldgen/noise/stone_layer_mars_2.json index a6747c363..6fb0a4293 100644 --- a/kubejs/data/tfg/worldgen/noise/stone_layer_mars_2.json +++ b/kubejs/data/tfg/worldgen/noise/stone_layer_mars_2.json @@ -10,5 +10,5 @@ 1, 1 ], - "firstOctave": -10 + "firstOctave": -11 } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/noise_settings/mars_noise.json b/kubejs/data/tfg/worldgen/noise_settings/mars_noise.json index cc19b5910..4a3263a45 100644 --- a/kubejs/data/tfg/worldgen/noise_settings/mars_noise.json +++ b/kubejs/data/tfg/worldgen/noise_settings/mars_noise.json @@ -1,5 +1,5 @@ { - "sea_level": 63, + "sea_level": 32, "disable_mob_generation": false, "aquifers_enabled": false, "ore_veins_enabled": false, @@ -8,10 +8,10 @@ "Name": "ad_astra:mars_stone" }, "default_fluid": { - "Name": "minecraft:air" + "Name": "tfg:semiheavy_ammoniacal_water" }, "noise": { - "min_y": -64, + "min_y": -32, "height": 384, "size_horizontal": 1, "size_vertical": 4 @@ -23,9 +23,9 @@ "xz_scale": 1, "y_scale": 0.5 }, - "continents": "minecraft:overworld/continents", - "depth": "minecraft:overworld/depth", - "erosion": "minecraft:overworld/erosion", + "continents": "tfg:mars/continents", + "depth": 0, + "erosion": "tfg:mars/erosion", "final_density": { "type": "minecraft:min", "argument1": { @@ -44,10 +44,10 @@ "type": "minecraft:mul", "argument1": { "type": "minecraft:y_clamped_gradient", - "from_value": 0, - "from_y": -64, - "to_value": 1, - "to_y": -40 + "from_value": 0.0, + "from_y": -32, + "to_value": 1.0, + "to_y": -20 }, "argument2": { "type": "minecraft:add", @@ -59,26 +59,26 @@ "type": "minecraft:mul", "argument1": { "type": "minecraft:y_clamped_gradient", - "from_value": 1, - "from_y": 364, - "to_value": 0, - "to_y": 384 + "from_value": 1.0, + "from_y": 240, + "to_value": 0.0, + "to_y": 256 }, "argument2": { "type": "minecraft:add", "argument1": 0.078125, "argument2": { "type": "minecraft:range_choice", - "input": "minecraft:overworld/sloped_cheese", + "input": "tfg:mars/sloped_cheese", "max_exclusive": 1.5625, - "min_inclusive": -1000000, + "min_inclusive": -1000000.0, "when_in_range": { "type": "minecraft:min", - "argument1": "minecraft:overworld/sloped_cheese", + "argument1": "tfg:mars/sloped_cheese", "argument2": { "type": "minecraft:mul", - "argument1": 5, - "argument2": "minecraft:overworld/caves/entrances" + "argument1": 5.0, + "argument2": "tfg:mars/caves/entrances" } }, "when_out_of_range": { @@ -91,14 +91,14 @@ "type": "minecraft:add", "argument1": { "type": "minecraft:mul", - "argument1": 4, + "argument1": 4.0, "argument2": { "type": "minecraft:square", "argument": { "type": "minecraft:noise", "noise": "minecraft:cave_layer", - "xz_scale": 1, - "y_scale": 8 + "xz_scale": 1.0, + "y_scale": 8.0 } } }, @@ -112,12 +112,12 @@ "argument2": { "type": "minecraft:noise", "noise": "minecraft:cave_cheese", - "xz_scale": 1, + "xz_scale": 1.0, "y_scale": 0.6666666666666666 } }, - "max": 1, - "min": -1 + "max": 1.0, + "min": -1.0 }, "argument2": { "type": "minecraft:clamp", @@ -127,29 +127,29 @@ "argument2": { "type": "minecraft:mul", "argument1": -0.64, - "argument2": "minecraft:overworld/sloped_cheese" + "argument2": "tfg:mars/sloped_cheese" } }, "max": 0.5, - "min": 0 + "min": 0.0 } } }, - "argument2": "minecraft:overworld/caves/entrances" + "argument2": "tfg:mars/caves/entrances" }, "argument2": { "type": "minecraft:add", - "argument1": "minecraft:overworld/caves/spaghetti_2d", - "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" + "argument1": "tfg:mars/caves/spaghetti_2d", + "argument2": "tfg:mars/caves/spaghetti_roughness_function" } }, "argument2": { "type": "minecraft:range_choice", - "input": "minecraft:overworld/caves/pillars", + "input": "tfg:mars/caves/pillars", "max_exclusive": 0.03, - "min_inclusive": -1000000, - "when_in_range": -1000000, - "when_out_of_range": "minecraft:overworld/caves/pillars" + "min_inclusive": -1000000.0, + "when_in_range": -1000000.0, + "when_out_of_range": "tfg:mars/caves/pillars" } } } @@ -163,7 +163,7 @@ } } }, - "argument2": "minecraft:overworld/caves/noodle" + "argument2": "tfg:mars/caves/noodle" }, "fluid_level_floodedness": { "type": "minecraft:noise", @@ -184,10 +184,10 @@ "type": "minecraft:mul", "argument1": { "type": "minecraft:y_clamped_gradient", - "from_value": 0, - "from_y": -64, - "to_value": 1, - "to_y": -40 + "from_value": 0.0, + "from_y": -32, + "to_value": 1.0, + "to_y": -20 }, "argument2": { "type": "minecraft:add", @@ -199,10 +199,10 @@ "type": "minecraft:mul", "argument1": { "type": "minecraft:y_clamped_gradient", - "from_value": 1, - "from_y": 364, - "to_value": 0, - "to_y": 384 + "from_value": 1.0, + "from_y": 240, + "to_value": 0.0, + "to_y": 256 }, "argument2": { "type": "minecraft:add", @@ -214,22 +214,22 @@ "argument1": -0.703125, "argument2": { "type": "minecraft:mul", - "argument1": 4, + "argument1": 4.0, "argument2": { "type": "minecraft:quarter_negative", "argument": { "type": "minecraft:mul", - "argument1": "minecraft:overworld/depth", + "argument1": "tfg:mars/depth", "argument2": { "type": "minecraft:cache_2d", - "argument": "minecraft:overworld/factor" + "argument": "tfg:mars/factor" } } } } }, - "max": 64, - "min": -64 + "max": 64.0, + "min": -32.0 } } } @@ -237,13 +237,8 @@ } } }, - "lava": { - "type": "minecraft:noise", - "noise": "minecraft:aquifer_lava", - "xz_scale": 1, - "y_scale": 1 - }, - "ridges": "minecraft:overworld/ridges", + "lava": 0, + "ridges": "tfg:mars/ridges", "temperature": { "type": "minecraft:shifted_noise", "noise": "minecraft:temperature", @@ -274,11 +269,11 @@ "if_true": { "type": "minecraft:vertical_gradient", "random_name": "minecraft:bedrock_floor", - "true_at_and_below": { - "above_bottom": 0 - }, "false_at_and_above": { "above_bottom": 5 + }, + "true_at_and_below": { + "above_bottom": 0 } }, "then_run": { @@ -288,6 +283,85 @@ } } }, + + + + + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/martian_mountains" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_concrete" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/martian_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_concrete" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/martian_forests" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:yellow_concrete" + } + } + } + }, { "type": "minecraft:condition", "if_true": { @@ -297,52 +371,20 @@ ] }, "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 2, - "surface_type": "ceiling", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfg:rock/hardened_mars_stone" - } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:y_above", - "anchor": { - "absolute": 87 - }, - "surface_depth_multiplier": 2, - "add_stone_depth": false - }, - "then_run": { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 3, - "surface_type": "floor", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "ad_astra:mars_sand" - } - } - } + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:lime_concrete" } - ] + } } }, { @@ -353,20 +395,123 @@ "tfg:mars/martian_riverbed" ] }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:light_blue_glazed_terracotta" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/martian_dune_edge" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:light_blue_concrete" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/martian_dunes" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:blue_concrete" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "tfg:mars/martian_oasis" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:purple_concrete" + } + } + } + }, + + + + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "tfg:mars_bottom_rock_layer", + "false_at_and_above": { + "absolute": 4 + }, + "true_at_and_below": { + "absolute": -4 + } + }, "then_run": { "type": "minecraft:sequence", "sequence": [ { "type": "minecraft:condition", "if_true": { - "type": "minecraft:vertical_gradient", - "random_name": "minecraft:deepslate", - "true_at_and_below": { - "absolute": 0 - }, - "false_at_and_above": { - "absolute": 5 - } + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": -1.0, + "max_threshold": -0.2 }, "then_run": { "type": "minecraft:sequence", @@ -374,23 +519,109 @@ { "type": "minecraft:condition", "if_true": { - "type": "minecraft:stone_depth", - "offset": 2, - "surface_type": "ceiling", - "add_surface_depth": false, - "secondary_depth_range": 0 + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.2 }, "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/hardened/gabbro" - } + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_red_granite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "gtceu:red_granite" + } + } + ] } }, { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/raw/gabbro" + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/gabbro" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/gabbro" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.2, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/rhyolite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/rhyolite" + } + } + ] } } ] @@ -399,269 +630,622 @@ { "type": "minecraft:condition", "if_true": { - "type": "minecraft:stone_depth", - "offset": 0, - "surface_type": "ceiling", - "add_surface_depth": false, - "secondary_depth_range": 0 + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": -0.2, + "max_threshold": 0.2 }, "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/hardened/basalt" - } + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/basalt" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/basalt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_mars_stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:mars_stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.2, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_red_granite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "gtceu:red_granite" + } + } + ] + } + } + ] } }, { "type": "minecraft:condition", "if_true": { - "type": "minecraft:above_preliminary_surface" + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": 0.2, + "max_threshold": 1.0 }, "then_run": { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 1, - "surface_type": "floor", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:sand/black" + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/andesite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/andesite" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/dacite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/dacite" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.2, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/diorite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/diorite" + } + } + ] + } } - } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:above_preliminary_surface" - }, - "then_run": { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 3, - "surface_type": "floor", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/gravel/basalt" - } - } - } - }, - { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/raw/basalt" + ] } } ] } }, + + { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:biome", - "biome_is": [ - "tfg:mars/martian_mountains" - ] - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 2, - "surface_type": "ceiling", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/hardened/gabbro" - } - } + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": -1.0, + "max_threshold": -0.2 }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:y_above", - "anchor": { - "absolute": 80 - }, - "surface_depth_multiplier": 0, - "add_stone_depth": false - }, - "then_run": { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 2, - "surface_type": "floor", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:noise_threshold", - "noise": "minecraft:powder_snow", - "min_threshold": 0.4, - "max_threshold": 1 + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_venus_stone" + } + } }, - "then_run": { + { "type": "minecraft:block", "result_state": { - "Name": "ad_astra:moon_sand" + "Name": "ad_astra:venus_stone" } } - }, - { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/gravel/gabbro" - } - } - ] - } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:not", - "invert": { - "type": "minecraft:vertical_gradient", - "random_name": "minecraft:deepslate", - "true_at_and_below": { - "absolute": 0 - }, - "false_at_and_above": { - "absolute": 8 + ] } - } - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/raw/gabbro" - } - } - } - ] - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:biome", - "biome_is": [ - "tfg:moon/lunar_diorite_delta" - ] - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 2, - "surface_type": "ceiling", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/hardened/diorite" - } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:y_above", - "anchor": { - "absolute": 87 }, - "surface_depth_multiplier": 0, - "add_stone_depth": false - }, - "then_run": { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 2, - "surface_type": "floor", - "add_surface_depth": false, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:noise_threshold", - "noise": "minecraft:powder_snow", - "min_threshold": 0.1, - "max_threshold": 0.4 + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/shale" + } + } }, - "then_run": { + { "type": "minecraft:block", "result_state": { - "Name": "tfc:sand/white" + "Name": "tfc:rock/raw/shale" } } - }, - { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/gravel/diorite" - } - } - ] - } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:not", - "invert": { - "type": "minecraft:vertical_gradient", - "random_name": "minecraft:deepslate", - "true_at_and_below": { - "absolute": 0 + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.2, + "max_threshold": 1.0 }, - "false_at_and_above": { - "absolute": 8 + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/dolomite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/dolomite" + } + } + ] } } - }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/raw/diorite" - } - } + ] } - ] - } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/limestone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/limestone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_mars_stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:mars_stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.2, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/claystone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/claystone" + } + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_1", + "min_threshold": 0.2, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -1.0, + "max_threshold": -0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/conglomerate" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/conglomerate" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": -0.2, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/hardened/chert" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/chert" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:stone_layer_mars_2", + "min_threshold": 0.2, + "max_threshold": 1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/hardened_dripstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dripstone_block" + } + } + ] + } + } + ] + } + } + ] } ] }, diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/hardening.json b/kubejs/data/tfg/worldgen/placed_feature/mars/hardening.json new file mode 100644 index 000000000..eef3d5728 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/hardening.json @@ -0,0 +1,186 @@ +{ + "feature": { + "type": "minecraft:replace_single_block", + "config": { + "targets": [ + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "ad_astra:mars_stone" + }, + "state": { + "Name": "tfg:rock/hardened_mars_stone" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "ad_astra:venus_stone" + }, + "state": { + "Name": "tfg:rock/hardened_venus_stone" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "gtceu:red_granite" + }, + "state": { + "Name": "tfg:rock/hardened_red_granite" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/gabbro" + }, + "state": { + "Name": "tfc:rock/hardened/gabbro" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/rhyolite" + }, + "state": { + "Name": "tfc:rock/hardened/rhyolite" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/basalt" + }, + "state": { + "Name": "tfc:rock/hardened/basalt" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/andesite" + }, + "state": { + "Name": "tfc:rock/hardened/andesite" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/dacite" + }, + "state": { + "Name": "tfc:rock/hardened/dacite" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/diorite" + }, + "state": { + "Name": "tfc:rock/hardened/diorite" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/shale" + }, + "state": { + "Name": "tfc:rock/hardened/shale" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/dolomite" + }, + "state": { + "Name": "tfc:rock/hardened/dolomite" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/limestone" + }, + "state": { + "Name": "tfc:rock/hardened/limestone" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/claystone" + }, + "state": { + "Name": "tfc:rock/hardened/claystone" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/conglomerate" + }, + "state": { + "Name": "tfc:rock/hardened/conglomerate" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/chert" + }, + "state": { + "Name": "tfc:rock/hardened/chert" + } + }, + { + "target": { + "predicate_type": "minecraft:block_match", + "block": "minecraft:dripstone_block" + }, + "state": { + "Name": "tfg:rock/hardened_dripstone" + } + }, + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "tfc:can_landslide" + }, + "state": { + "Name": "tfg:rock/hardened_mars_stone" + } + } + ] + } + }, + "placement": [ + { + "type": "minecraft:carving_mask", + "step": "air" + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "up", + "max_steps": 1, + "target_condition": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "ad_astra:mars_stone_replaceables" + }, + { + "type": "minecraft:matching_block_tag", + "tag": "tfc:can_landslide" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/kubejs/server_scripts/ad_astra/tags.js b/kubejs/server_scripts/ad_astra/tags.js index adc4493d0..1c19d877b 100644 --- a/kubejs/server_scripts/ad_astra/tags.js +++ b/kubejs/server_scripts/ad_astra/tags.js @@ -173,6 +173,41 @@ const registerAdAstraBlockTags = (event) => { event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/dacite') event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/dacite') + // Mars + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/dacite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/dacite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/basalt') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/basalt') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/gabbro') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/gabbro') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/diorite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/diorite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/rhyolite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/rhyolite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/andesite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/andesite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/chert') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/chert') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/conglomerate') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/conglomerate') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/claystone') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/claystone') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/limestone') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/limestone') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/dolomite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/dolomite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/shale') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/shale') + event.add('ad_astra:mars_stone_replaceables', 'ad_astra:mars_stone') + event.add('ad_astra:mars_stone_replaceables', 'tfg:rock/hardened_mars_stone') + event.add('ad_astra:mars_stone_replaceables', 'ad_astra:venus_stone') + event.add('ad_astra:mars_stone_replaceables', 'tfg:rock/hardened_venus_stone') + event.add('ad_astra:mars_stone_replaceables', 'gtceu:red_granite') + event.add('ad_astra:mars_stone_replaceables', 'tfg:rock/hardened_red_granite') + event.add('ad_astra:mars_stone_replaceables', 'minecraft:dripstone_block') + event.add('ad_astra:mars_stone_replaceables', 'tfg:rock/hardened_dripstone') + + event.add('minecraft:rabbits_spawnable_on', '#ad_astra:moon_stone_replaceables') event.add('species:limpet_spawnable_on', '#ad_astra:moon_stone_replaceables') diff --git a/kubejs/startup_scripts/tfg/blocks.space.js b/kubejs/startup_scripts/tfg/blocks.space.js index 2cb55f6a0..b1268e9f8 100644 --- a/kubejs/startup_scripts/tfg/blocks.space.js +++ b/kubejs/startup_scripts/tfg/blocks.space.js @@ -124,6 +124,20 @@ function registerTFGSpaceBlocks(event) { .fullBlock(true) .opaque(true) + event.create('tfg:rock/hardened_red_granite') + .stoneSoundType() + .requiresTool(true) + .item(item => { + item.modelJson({ parent: 'gtceu:item/red_granite' }) + }) + .tagBlock('tfc:can_carve') + .tagBoth('forge:stone') + .tagBoth('tfc:rock/hardened') + .tagBlock('minecraft:mineable/pickaxe') + .mapColor('terracotta_red') + .fullBlock(true) + .opaque(true) + // Loose stones event.create('tfg:loose/moon_stone', 'tfc:loose_rock') @@ -182,6 +196,14 @@ function registerTFGSpaceBlocks(event) { .tagItem('tfc:rock_knapping') .tagItem('tfc:metamorphic_rock') + event.create('tfg:loose/red_granite', 'tfc:loose_rock') + .stoneSoundType() + .itemTexture('tfg:item/loose/red_granite') + .tagBlock('tfc:loose_rocks') + .tagItem('tfc:any_knapping') + .tagItem('tfc:rock_knapping') + .tagItem('tfc:igneous_intrusive_rock') + // Spikes event.create('tfg:spike/moon_stone_spike', 'tfc:rock_spike') @@ -212,6 +234,10 @@ function registerTFGSpaceBlocks(event) { .stoneSoundType() .noItem() + event.create('tfg:spike/red_granite_spike', 'tfc:rock_spike') + .stoneSoundType() + .noItem() + // #region Plants /* diff --git a/kubejs/startup_scripts/tfg/constants.js b/kubejs/startup_scripts/tfg/constants.js index 3923f7728..782590041 100644 --- a/kubejs/startup_scripts/tfg/constants.js +++ b/kubejs/startup_scripts/tfg/constants.js @@ -25,7 +25,8 @@ global.EXTRATERRESTRIAL_RAW_ROCKS = [ 'ad_astra:mars_stone', 'ad_astra:venus_stone', 'ad_astra:mercury_stone', - 'ad_astra:glacio_stone' + 'ad_astra:glacio_stone', + 'gtceu:red_granite' ] global.EXTRATERRESTRIAL_HARDENED_ROCKS = [ @@ -35,6 +36,7 @@ global.EXTRATERRESTRIAL_HARDENED_ROCKS = [ 'tfg:rock/hardened_venus_stone', 'tfg:rock/hardened_mercury_stone', 'tfg:rock/hardened_glacio_stone', + 'tfg:rock/hardened_red_granite' ] global.MOON_STONE_TYPES = [ diff --git a/kubejs/startup_scripts/tfg/fluids.js b/kubejs/startup_scripts/tfg/fluids.js index c428efe2a..8867b2c96 100644 --- a/kubejs/startup_scripts/tfg/fluids.js +++ b/kubejs/startup_scripts/tfg/fluids.js @@ -30,6 +30,16 @@ const registerTFGFluids = (event) => { .luminosity(2) .noBlock() + //#region Mars + event.create('tfg:semiheavy_ammoniacal_water') + .thinTexture(0x704f786c) + .color(0x4f786c) + .viscosity(0) + .density(0) + .temperature(213) + .renderType('translucent') + //#endregion + //#region Venus event.create('tfg:sulfur_fumes') .stillTexture('tfg:block/planets/venus/sulfur_fumes_still')