mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-17 08:31:08 +01:00
27 lines
616 B
Lua
27 lines
616 B
Lua
|
-- Stone beach, aka Stony Shore
|
||
|
-- Just stone.
|
||
|
-- Not neccessarily a beach at all, only named so according to MC
|
||
|
vl_biomes.register_biome({
|
||
|
name = "StoneBeach",
|
||
|
node_riverbed = "mcl_core:sand",
|
||
|
depth_riverbed = 1,
|
||
|
y_min = -7,
|
||
|
y_max = vl_biomes.overworld_max,
|
||
|
humidity_point = 0,
|
||
|
heat_point = 8,
|
||
|
_mcl_biome_type = "cold",
|
||
|
_mcl_water_temp = "cold",
|
||
|
_mcl_grass_palette_index = 9,
|
||
|
_mcl_foliage_palette_index = 11,
|
||
|
_mcl_water_palette_index = 4,
|
||
|
_mcl_skycolor = "#7DA2FF",
|
||
|
_ocean = {
|
||
|
node_top = "mcl_core:gravel",
|
||
|
depth_top = 1,
|
||
|
y_min = vl_biomes.OCEAN_MIN,
|
||
|
y_max = -8,
|
||
|
vertical_blend = 2,
|
||
|
},
|
||
|
})
|
||
|
|