forked from mad-star-studio/Voxelis
moving around things
This commit is contained in:
parent
940b7cf7ea
commit
797592a3b5
18 changed files with 81 additions and 56 deletions
|
@ -1,2 +0,0 @@
|
|||
name = vox_biomes
|
||||
description = Voxelis - biomes
|
|
@ -11,4 +11,8 @@
|
|||
-- with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
vox_biomes = { }
|
||||
vox_overworld = {}
|
||||
|
||||
dofile(core.get_modpath(core.get_current_modname()) .. "/registry.lua")
|
||||
|
||||
|
2
mods/MAPGEN/vox_overworld/mod.conf
Normal file
2
mods/MAPGEN/vox_overworld/mod.conf
Normal file
|
@ -0,0 +1,2 @@
|
|||
name = vox_overworld
|
||||
description = Voxelis - overworld
|
28
mods/MAPGEN/vox_overworld/registry.lua
Normal file
28
mods/MAPGEN/vox_overworld/registry.lua
Normal file
|
@ -0,0 +1,28 @@
|
|||
---------------------------------------------------------------------------
|
||||
-- Voxelis - Voxel survival sandbox for Luanti
|
||||
-- Copyright (C) 2024 Mad Star Studio LLC
|
||||
--
|
||||
-- This program is free software; you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
-- the Free Software Foundation; either version 3 of the License, or
|
||||
-- (at your option) any later version.
|
||||
--
|
||||
-- You should have received a copy of the GNU General Public License along
|
||||
-- with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
core.register_biome({
|
||||
name = "grassland",
|
||||
node_top = "grass",
|
||||
depth_top = 1,
|
||||
node_filler = "vox_main:dirt",
|
||||
node_stone = "vox_main:stone",
|
||||
depth_filler = 3,
|
||||
node_riverbed = "vox_main:sand",
|
||||
node_river_water = "vox_main:water_source",
|
||||
depth_riverbed = 2,
|
||||
height_min = 1,
|
||||
height_max = 256,
|
||||
heat_point = 35,
|
||||
humidity_point = 50
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue