forked from Mineclonia/Mineclonia
Tweak heat and humidity points of new mesa biomes
This commit is contained in:
parent
ae513f7b53
commit
a16886bf17
|
@ -804,7 +804,7 @@ local function register_biomes()
|
||||||
node_stone = "mcl_colorblocks:hardened_clay",
|
node_stone = "mcl_colorblocks:hardened_clay",
|
||||||
y_min = 0,
|
y_min = 0,
|
||||||
y_max = mcl_vars.mg_overworld_max,
|
y_max = mcl_vars.mg_overworld_max,
|
||||||
humidity_point = -4,
|
humidity_point = -5,
|
||||||
heat_point = 100,
|
heat_point = 100,
|
||||||
})
|
})
|
||||||
-- Helper biome for the red sand at the bottom of Mesas.
|
-- Helper biome for the red sand at the bottom of Mesas.
|
||||||
|
@ -819,7 +819,7 @@ local function register_biomes()
|
||||||
node_stone = "mcl_colorblocks:hardened_clay_orange",
|
node_stone = "mcl_colorblocks:hardened_clay_orange",
|
||||||
y_min = -4,
|
y_min = -4,
|
||||||
y_max = -1,
|
y_max = -1,
|
||||||
humidity_point = -4,
|
humidity_point = -5,
|
||||||
heat_point = 100,
|
heat_point = 100,
|
||||||
})
|
})
|
||||||
minetest.register_biome({
|
minetest.register_biome({
|
||||||
|
@ -833,7 +833,7 @@ local function register_biomes()
|
||||||
y_min = OCEAN_MIN,
|
y_min = OCEAN_MIN,
|
||||||
y_max = -5,
|
y_max = -5,
|
||||||
vertical_blend = 1,
|
vertical_blend = 1,
|
||||||
humidity_point = -4,
|
humidity_point = -5,
|
||||||
heat_point = 100,
|
heat_point = 100,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -915,8 +915,8 @@ local function register_biomes()
|
||||||
node_stone = "mcl_colorblocks:hardened_clay",
|
node_stone = "mcl_colorblocks:hardened_clay",
|
||||||
y_min = 12,
|
y_min = 12,
|
||||||
y_max = 29,
|
y_max = 29,
|
||||||
humidity_point = -4,
|
humidity_point = -5,
|
||||||
heat_point = 80,
|
heat_point = 60,
|
||||||
vertical_blend = 5,
|
vertical_blend = 5,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -932,8 +932,8 @@ local function register_biomes()
|
||||||
node_stone = "mcl_colorblocks:hardened_clay",
|
node_stone = "mcl_colorblocks:hardened_clay",
|
||||||
y_min = 30,
|
y_min = 30,
|
||||||
y_max = mcl_vars.mg_overworld_max,
|
y_max = mcl_vars.mg_overworld_max,
|
||||||
humidity_point = -4,
|
humidity_point = -5,
|
||||||
heat_point = 80,
|
heat_point = 60,
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Helper biome for the red sand at the bottom.
|
-- Helper biome for the red sand at the bottom.
|
||||||
|
@ -949,8 +949,8 @@ local function register_biomes()
|
||||||
-- red sand has wider reach than in other mesa biomes
|
-- red sand has wider reach than in other mesa biomes
|
||||||
y_min = -7,
|
y_min = -7,
|
||||||
y_max = 11,
|
y_max = 11,
|
||||||
humidity_point = -4,
|
humidity_point = -5,
|
||||||
heat_point = 80,
|
heat_point = 60,
|
||||||
vertical_blend = 4,
|
vertical_blend = 4,
|
||||||
})
|
})
|
||||||
minetest.register_biome({
|
minetest.register_biome({
|
||||||
|
@ -964,8 +964,8 @@ local function register_biomes()
|
||||||
y_min = OCEAN_MIN,
|
y_min = OCEAN_MIN,
|
||||||
y_max = -8,
|
y_max = -8,
|
||||||
vertical_blend = 2,
|
vertical_blend = 2,
|
||||||
humidity_point = -4,
|
humidity_point = -5,
|
||||||
heat_point = 80,
|
heat_point = 60,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue