9
0
mirror of https://github.com/IrisDimensions/flat.git synced 2025-12-19 14:59:24 +00:00
This commit is contained in:
Daniel Mills
2020-09-04 22:09:59 -04:00
parent 19a1d0883c
commit 393caace6a
5 changed files with 74 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.DS_Store
*.code-workspace
*.txt

31
biomes/flat.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "Flat",
"derivative": "PLAINS",
"layers": [
{
"palette": [
"GRASS_BLOCK"
],
"style": {
"style": "FLAT"
}
},
{
"palette": [
"DIRT"
],
"minHeight": 2,
"maxHeight": 2,
"style": {
"style": "FLAT"
}
}
],
"generators": [
{
"generator": "flat",
"min": 3,
"max": 3
}
]
}

14
dimensions/flat.json Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "Flat",
"version": 1,
"environment": "NORMAL",
"fluidHeight": 0,
"carving": false,
"caves": false,
"postProcessing": false,
"decorate": false,
"placeObjects": false,
"regions": [
"flat"
]
}

14
generators/flat.json Normal file
View File

@@ -0,0 +1,14 @@
{
"interpolator": {
"function": "NONE"
},
"seed": 1,
"composite": [
{
"style": {
"style": "FLAT"
},
"seed": 2
}
]
}

12
regions/flat.json Normal file
View File

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