46 lines
986 B
Lua
Raw Normal View History

-- LUALOCALS < ---------------------------------------------------------
local minetest
= minetest
-- LUALOCALS > ---------------------------------------------------------
local modname = minetest.get_current_modname()
minetest.register_biome({
name = "unknown",
node_top = modname .. ":dirt_with_grass",
depth_top = 1,
node_filler = modname .. ":dirt",
depth_filler = 2,
node_riverbed = modname .. ":sand",
depth_riverbed = 2,
y_min = 4,
y_max = 31000,
2018-10-30 10:18:38 -04:00
heat_point = 0,
humidity_point = 0,
})
minetest.register_biome({
name = "seabed",
node_top = modname .. ":sand",
depth_top = 1,
node_filler = modname .. ":sand",
depth_filler = 1,
node_riverbed = modname .. ":sand",
depth_riverbed = 2,
2021-08-27 21:24:39 -04:00
y_min = -79,
y_max = 3,
2018-10-30 10:18:38 -04:00
heat_point = 0,
humidity_point = 0,
})
minetest.register_biome({
name = "deep",
depth_top = 0,
depth_filler = 0,
depth_riverbed = 0,
y_min = -31000,
y_max = -80,
heat_point = 0,
humidity_point = 0,
})