add biomes table

This commit is contained in:
MihailRis
2024-08-19 17:57:09 +03:00
parent c3831afd19
commit 4bd5f1b629
4 changed files with 49 additions and 28 deletions
+15 -13
View File
@@ -4,19 +4,21 @@ sea_level = 64
-- 2 - humidity
biome_parameters = 2
biome = {
parameters = {
{value=0.5, weight=1.0},
{value=0.5, weight=1.0},
},
sea_layers = {
{block="base:water", height=-1},
},
layers = {
{block="base:grass_block", height=1, below_sea_level=false},
{block="base:dirt", height=5, below_sea_level=false},
{block="base:stone", height=-1},
{block="base:bazalt", height=1},
biomes = {
plains = {
parameters = {
{value=0.5, weight=1.0},
{value=0.5, weight=1.0},
},
sea_layers = {
{block="base:water", height=-1},
},
layers = {
{block="base:grass_block", height=1, below_sea_level=false},
{block="base:dirt", height=5, below_sea_level=false},
{block="base:stone", height=-1},
{block="base:bazalt", height=1},
}
}
}