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

33 lines
943 B
JSON
Raw Normal View History

2021-11-16 13:26:46 +01:00
{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.overworld_height",
"title": "Overworld Height",
"description": "Noise parameters used to drive terrain height in the Overworld.",
"type": "object",
"minProperties": 0,
"maxProperties": 2,
"additionalProperties": false,
"properties": {
"noise_params": {
"title": "Noise Params",
2022-07-22 19:41:04 +02:00
"description": "UNDOCUMENTED.",
2021-11-16 13:26:46 +01:00
"$comment": "UNDOCUMENTED",
"type": "array",
"items": [
{
"type": "number"
},
{
"type": "number"
}
]
},
"noise_type": {
"title": "Noise Type",
2022-07-22 19:41:04 +02:00
"description": "UNDOCUMENTED.",
2021-11-16 13:26:46 +01:00
"$comment": "UNDOCUMENTED",
"type": "string",
2022-07-22 19:41:04 +02:00
"enum": ["stone_beach", "deep_ocean", "default", "default_mutated", "lowlands", "river", "ocean", "taiga", "mountains", "highlands", "mushroom", "less_extreme", "extreme", "beach", "swamp"]
2021-11-16 13:26:46 +01:00
}
}
}