24 lines
603 B
Lua
24 lines
603 B
Lua
local modpath = core.get_modpath("pyutest_overworld")
|
|
|
|
if PyuTest.is_flat() then
|
|
PyuTest.register_overworld_biome("flat", PyuTest.BIOME_TYPES.NORMAL, {
|
|
node_top = "pyutest_grass:grass_block",
|
|
node_filler = "pyutest_blocks:dirt_block",
|
|
|
|
y_max = PyuTest.OVERWORLD_BIOME_TOPS.normal,
|
|
y_min = PyuTest.OVERWORLD_BOTTOM,
|
|
|
|
heat_point = 50,
|
|
humidity_point = 50,
|
|
})
|
|
|
|
return
|
|
end
|
|
|
|
dofile(modpath .. "/biomes.lua")
|
|
dofile(modpath .. "/caves.lua")
|
|
dofile(modpath .. "/features.lua")
|
|
dofile(modpath .. "/structures.lua")
|
|
dofile(modpath .. "/trees.lua")
|
|
dofile(modpath .. "/flowers.lua")
|