Files
minecraft-bedrock-json-schemas/source/behavior/biomes/1.12.0/components/minecraft.overworld_height.json

47 lines
1003 B
JSON
Raw Normal View History

2021-02-04 11:21:51 +01:00
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.overworld_height",
2021-03-21 15:18:38 +01:00
"title": "Overworld Height",
2021-02-04 11:21:51 +01:00
"description": "Noise parameters used to drive terrain height in the Overworld.",
"type": "object",
"minProperties": 0,
"maxProperties": 2,
"additionalProperties": false,
"properties": {
"noise_params": {
2021-03-21 15:18:38 +01:00
"title": "Noise Params",
2021-02-04 11:21:51 +01:00
"description": "UNDOCUMENATED",
"type": "array",
2021-03-21 15:18:38 +01:00
"items": [
{
"type": "number"
},
{
"type": "number"
}
]
2021-02-04 11:21:51 +01:00
},
"noise_type": {
2021-03-21 15:18:38 +01:00
"title": "Noise Type",
2021-02-04 11:21:51 +01:00
"description": "UNDOCUMENATED",
"type": "string",
"enum": [
"stone_beach",
"deep_ocean",
"default",
"default_mutated",
"lowlands",
"river",
"ocean",
"taiga",
"mountains",
"highlands",
"mushroom",
"less_extreme",
"extreme",
"beach",
"swamp"
]
}
}
}