9
0
mirror of https://github.com/IrisDimensions/earthworld.git synced 2025-12-29 11:49:07 +00:00
This commit is contained in:
Daniel Mills
2020-08-17 00:26:12 -04:00
parent a0ff3f32d4
commit dc54364986
5 changed files with 34 additions and 9 deletions

View File

@@ -8,8 +8,7 @@
"style": "STATIC"
},
"palette": [
"REDSTONE_BLOCK",
"WHITE_CONCRETE"
"GRASS_BLOCK"
]
},
{
@@ -19,8 +18,8 @@
}
],
"generators": [{
"min": 3,
"max": 3,
"min": 10,
"max": 10,
"generator": "flat"
}]
}

25
flat/biomes/flat2.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "Flat 2",
"derivative": "PLAINS",
"layers": [
{
"style": {
"zoom": 0.1,
"style": "STATIC"
},
"palette": [
"GRASS_BLOCK"
]
},
{
"palette": ["DIRT"],
"minHeight": 2,
"maxHeight": 2
}
],
"generators": [{
"min": 20,
"max": 20,
"generator": "flat"
}]
}

View File

@@ -8,6 +8,7 @@
"postProcessing": false,
"caves": false,
"placeObjects": false,
"coordFractureDistance": 24,
"fluidHeight": 0,
"vanillaStructures": true
}

View File

@@ -1,7 +1,7 @@
{
"seed": 1,
"interpolationFunction": "NONE",
"interpolationScale": 1,
"interpolationFunction": "BILINEAR",
"interpolationScale": 5,
"composite": [
{
"style": {

View File

@@ -1,6 +1,6 @@
{
"shoreBiomes": ["flat"],
"landBiomes": ["flat"],
"seaBiomes": ["flat"],
"shoreBiomes": ["flat","flat2"],
"landBiomes": ["flat","flat2"],
"seaBiomes": ["flat","flat2"],
"name": "Flat"
}