mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-21 14:53:16 -04:00
12 lines
220 B
Lua
12 lines
220 B
Lua
minetest.register_biome({
|
|
name = "plains",
|
|
node_top = "mapgen:dust",
|
|
node_bottom = "mapgen:stone",
|
|
depth_top = 2,
|
|
node_dust = "air",
|
|
height_min = -10,
|
|
height_max = 160,
|
|
heat_point = 45,
|
|
humidity_point = 45,
|
|
})
|
|
|