move biomes definition to a json file

This commit is contained in:
MihailRis
2024-09-29 22:03:37 +03:00
parent d62d66cf85
commit 3784b57eed
10 changed files with 183 additions and 184 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"flat": {
"parameters": [],
"layers": [
{"height": -1, "block": "core:obstacle"}
],
"sea_layers": [
{"height": -1, "block": "core:obstacle"}
]
}
}
-9
View File
@@ -1,9 +0,0 @@
biomes = {flat = {
parameters = {},
layers = {
{height=-1, block="core:obstacle"},
},
sea_layers = {
{height=-1, block="core:obstacle"}
}
}}