9
0
mirror of https://github.com/IrisDimensions/earthworld.git synced 2026-01-04 15:31:38 +00:00
This commit is contained in:
Daniel Mills
2020-07-22 15:30:04 -04:00
parent 3196b64f95
commit ad6763780a
6 changed files with 148 additions and 0 deletions

27
dev.test/biomes/a.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "Land",
"layers": [
{
"minHeight": 3,
"maxHeight": 6,
"palette": [
"GRASS_BLOCK"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT"
]
}
],
"generators":[
{
"generator": "plain",
"min": 12,
"max": 12
}
],
"derivative": "JUNGLE_EDGE"
}

27
dev.test/biomes/b.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "Land",
"layers": [
{
"minHeight": 3,
"maxHeight": 6,
"palette": [
"STONE"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT"
]
}
],
"generators":[
{
"generator": "plain",
"min": 12,
"max": 12
}
],
"derivative": "JUNGLE_EDGE"
}

View File

@@ -0,0 +1,27 @@
{
"name": "Beach",
"layers": [
{
"minHeight": 3,
"maxHeight": 6,
"palette": [
"SAND"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT"
]
}
],
"generators":[
{
"generator": "plain",
"min": -1,
"max": -1
}
],
"derivative": "JUNGLE_EDGE"
}

View File

@@ -0,0 +1,27 @@
{
"name": "Sea",
"layers": [
{
"minHeight": 3,
"maxHeight": 6,
"palette": [
"EMERALD_BLOCK"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT"
]
}
],
"generators":[
{
"generator": "plain",
"min": -8,
"max": -8
}
],
"derivative": "OCEAN"
}