2024-12-10 15:23:36 -08:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
-- Voxelis - Voxel survival sandbox for Luanti
|
|
|
|
-- Copyright (C) 2024 Mad Star Studio LLC
|
|
|
|
--
|
|
|
|
-- You should have received a copy of the GNU General Public License along
|
|
|
|
-- with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
2024-12-11 14:47:15 -08:00
|
|
|
-- -------------------------------------------------------------- --
|
|
|
|
-- BIOMES
|
|
|
|
-- -------------------------------------------------------------- --
|
|
|
|
|
2024-12-12 12:35:15 -08:00
|
|
|
-- Grassland
|
|
|
|
core.register_biome({
|
2024-12-10 20:24:11 -08:00
|
|
|
name = "grassland",
|
2024-12-12 16:26:44 -08:00
|
|
|
node_top = "grass",
|
2024-12-11 14:47:15 -08:00
|
|
|
depth_top = 1,
|
2024-12-12 12:35:15 -08:00
|
|
|
node_filler = "vox_main:dirt",
|
|
|
|
node_stone = "vox_main:stone",
|
2024-12-12 16:26:44 -08:00
|
|
|
depth_filler = 3,
|
|
|
|
node_riverbed = "vox_main:sand",
|
|
|
|
node_river_water = "vox_main:water_source",
|
2024-12-12 12:35:15 -08:00
|
|
|
depth_riverbed = 2,
|
2024-12-12 16:26:44 -08:00
|
|
|
height_min = 1,
|
|
|
|
height_max = 256,
|
|
|
|
heat_point = 35,
|
|
|
|
humidity_point = 50
|
|
|
|
})
|