2018-11-02 21:20:51 -04:00
|
|
|
-- LUALOCALS < ---------------------------------------------------------
|
|
|
|
local minetest
|
|
|
|
= minetest
|
|
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
|
2018-10-29 22:37:57 -04:00
|
|
|
local modname = minetest.get_current_modname()
|
|
|
|
|
|
|
|
minetest.register_biome({
|
|
|
|
name = "unknown",
|
|
|
|
node_top = modname .. ":dirt_with_grass",
|
|
|
|
depth_top = 1,
|
|
|
|
node_filler = modname .. ":dirt",
|
2021-03-02 21:36:01 -05:00
|
|
|
depth_filler = 2,
|
2018-10-29 22:37:57 -04:00
|
|
|
node_riverbed = modname .. ":sand",
|
|
|
|
depth_riverbed = 2,
|
2021-03-02 21:36:01 -05:00
|
|
|
y_min = 4,
|
2018-10-29 22:37:57 -04:00
|
|
|
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,
|
2021-03-02 21:36:01 -05:00
|
|
|
y_max = 3,
|
2018-10-30 10:18:38 -04:00
|
|
|
heat_point = 0,
|
|
|
|
humidity_point = 0,
|
2018-11-02 21:20:51 -04:00
|
|
|
})
|
2021-09-27 06:50:41 -04:00
|
|
|
|
|
|
|
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,
|
|
|
|
})
|