mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-21 06:43:17 -04:00
Added Ice cap biome!
This commit is contained in:
parent
fef4fa2d79
commit
a5f29b214b
1 changed files with 16 additions and 6 deletions
|
@ -14,11 +14,11 @@ end)
|
||||||
minetest.register_biome({
|
minetest.register_biome({
|
||||||
name = "plains",
|
name = "plains",
|
||||||
node_top = "moontest:dust",
|
node_top = "moontest:dust",
|
||||||
node_bottom = "moontest:stone",
|
|
||||||
depth_top = 2,
|
depth_top = 2,
|
||||||
|
node_bottom = "moontest:stone",
|
||||||
node_dust = "air",
|
node_dust = "air",
|
||||||
height_min = -10,
|
height_min = -10,
|
||||||
height_max = 160,
|
height_max = 30,
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Basalt Biome
|
-- Basalt Biome
|
||||||
|
@ -26,13 +26,23 @@ minetest.register_biome({
|
||||||
name = "basalt",
|
name = "basalt",
|
||||||
node_top = "moontest:basalt",
|
node_top = "moontest:basalt",
|
||||||
depth_top = 2,
|
depth_top = 2,
|
||||||
node_filler = "moontest:stone",
|
node_filler = "moontest:dust",
|
||||||
depth_filler = 3,
|
depth_filler = 1,
|
||||||
node_dust = "air",
|
node_dust = "air",
|
||||||
height_min = -50,
|
height_min = -50,
|
||||||
height_max = 2,
|
height_max = 2,
|
||||||
heat_point = 54,
|
})
|
||||||
humidity_point = 51,
|
|
||||||
|
-- Lunar Ice Cap Biome
|
||||||
|
minetest.register_biome({
|
||||||
|
name = "plains",
|
||||||
|
node_top = "moontest:waterice",
|
||||||
|
depth_top = 4,
|
||||||
|
node_filler = "moontest:dust",
|
||||||
|
depth_filler = 2
|
||||||
|
node_dust = "air",
|
||||||
|
height_min = 25,
|
||||||
|
height_max = 100,
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Aliases
|
-- Aliases
|
||||||
|
|
Loading…
Add table
Reference in a new issue