71 lines
2.1 KiB
Lua
71 lines
2.1 KiB
Lua
|
--[[
|
||
|
Everness. Never ending discovery in Everness mapgen.
|
||
|
Copyright (C) 2023 SaKeL <juraj.vajda@gmail.com>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Lesser General Public
|
||
|
License as published by the Free Software Foundation; either
|
||
|
version 2.1 of the License, or (at your option) any later version.
|
||
|
|
||
|
This library is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
Lesser General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Lesser General Public
|
||
|
License along with this library; if not, write to juraj.vajda@gmail.com
|
||
|
--]]
|
||
|
|
||
|
--
|
||
|
-- Register biomes
|
||
|
--
|
||
|
|
||
|
local y_max = Everness.settings.biomes.everness_crystal_forest_shore.y_max
|
||
|
local y_min = Everness.settings.biomes.everness_crystal_forest_shore.y_min
|
||
|
|
||
|
-- Crystal Forest Shore
|
||
|
|
||
|
minetest.register_biome({
|
||
|
name = 'everness_crystal_forest_shore',
|
||
|
node_top = 'everness:crystal_sand',
|
||
|
depth_top = 1,
|
||
|
node_filler = 'everness:crystal_sand',
|
||
|
depth_filler = 3,
|
||
|
node_riverbed = 'everness:crystal_sand',
|
||
|
depth_riverbed = 2,
|
||
|
node_cave_liquid = 'default:water_source',
|
||
|
node_dungeon = 'default:cobble',
|
||
|
node_dungeon_alt = 'default:mossycobble',
|
||
|
node_dungeon_stair = 'stairs:stair_cobble',
|
||
|
y_max = y_max,
|
||
|
y_min = y_min,
|
||
|
heat_point = 35,
|
||
|
humidity_point = 50,
|
||
|
})
|
||
|
|
||
|
--
|
||
|
-- Register decorations
|
||
|
--
|
||
|
|
||
|
minetest.register_decoration({
|
||
|
name = 'everness:crystal_forest_shore_crystal_waterlily',
|
||
|
deco_type = 'simple',
|
||
|
place_on = { 'everness:crystal_sand' },
|
||
|
sidelen = 16,
|
||
|
noise_params = {
|
||
|
offset = -0.12,
|
||
|
scale = 0.3,
|
||
|
spread = { x = 200, y = 200, z = 200 },
|
||
|
seed = 33,
|
||
|
octaves = 3,
|
||
|
persist = 0.7
|
||
|
},
|
||
|
biomes = { 'everness_crystal_forest_shore' },
|
||
|
y_max = y_max,
|
||
|
y_min = y_max,
|
||
|
decoration = 'everness:crystal_waterlily',
|
||
|
param2 = 0,
|
||
|
param2_max = 3,
|
||
|
place_offset_y = 1,
|
||
|
})
|