Files
minecraft-bedrock-json-schemas/source/behaviour/biomes/1.12.0/components/minecraft.overworld_height.json
2021-02-04 11:21:51 +01:00

41 lines
998 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$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",
"description": "UNDOCUMENATED",
"type": "array",
"items": [{ "type": "number" }, { "type": "number" }]
},
"noise_type": {
"title": "Noise type",
"description": "UNDOCUMENATED",
"type": "string",
"enum": [
"stone_beach",
"deep_ocean",
"default",
"default_mutated",
"lowlands",
"river",
"ocean",
"taiga",
"mountains",
"highlands",
"mushroom",
"less_extreme",
"extreme",
"beach",
"swamp"
]
}
}
}