VoxeLibre/mods/MAPGEN/vl_biomes/plains.lua
2024-10-29 19:28:43 +01:00

36 lines
764 B
Lua

-- Plains
vl_biomes.register_biome({
name = "Plains",
node_top = "mcl_core:dirt_with_grass",
depth_top = 1,
node_filler = "mcl_core:dirt",
depth_filler = 2,
node_riverbed = "mcl_core:sand",
depth_riverbed = 2,
y_min = 3,
y_max = vl_biomes.overworld_max,
humidity_point = 39,
heat_point = 58,
_mcl_biome_type = "medium",
_mcl_water_temp = "ocean",
_mcl_grass_palette_index = 0,
_mcl_foliage_palette_index = 1,
_mcl_water_palette_index = 0,
_mcl_skycolor = "#78A7FF",
_beach = {
node_top = "mcl_core:sand",
depth_top = 2,
node_filler = "mcl_core:sandstone",
depth_filler = 2,
y_min = 0,
y_max = 2,
},
_ocean = {
node_top = "mcl_core:sand",
depth_top = 1,
node_filler = "mcl_core:sand",
depth_filler = 3,
y_max = -1,
},
})