mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-07-14 18:31:57 -04:00
Changed biomes, added mesecons.
This commit is contained in:
parent
83db51930a
commit
000484c529
266 changed files with 7506 additions and 236 deletions
19
mods/mapgen/mapgen.lua
Normal file
19
mods/mapgen/mapgen.lua
Normal file
|
@ -0,0 +1,19 @@
|
|||
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,
|
||||
})
|
||||
minetest.register_biome({
|
||||
name = "plains",
|
||||
node_top = "default:obsidian",
|
||||
node_bottom = "mapgen:stone",
|
||||
depth_top = 8,
|
||||
node_dust = "air",
|
||||
height_min = -30,
|
||||
height_max = 20,
|
||||
})
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue