Files
minecraft-bedrock-json-schemas/source/behaviour/biomes/1.12.0/components/minecraft.overworld_generation_rules.json
2021-03-21 15:18:38 +01:00

79 lines
2.8 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.overworld_generation_rules",
"title": "Overworld Generation Rules",
"description": "Control how this biome is instantiated (and then potentially modified) during world generation of the overworld.",
"type": "object",
"additionalProperties": false,
"definitions": {
"transformation": {
"oneOf": [
{
"type": "string",
"title": "Block Reference",
"description": "UNDOCUMENTATED"
},
{
"type": "array",
"description": "UNDOCUMENTATED",
"minItems": 1,
"items": {
"oneOf": [
{
"type": "string",
"description": "UNDOCUMENTATED",
"title": "Block Reference"
},
{
"type": "array",
"description": "UNDOCUMENTATED",
"items": [
{
"title": "Biome Reference",
"description": "UNDOCUMENTATED",
"type": "string"
},
{
"title": "_",
"description": "UNDOCUMENTATED",
"type": "integer"
}
]
}
]
}
}
]
}
},
"properties": {
"hills_transformation": { "title": "Hills Transformation", "description": "UNDOCUMENTATED", "$ref": "#/definitions/transformation" },
"mutate_transformation": { "title": "Mutate Transformation", "description": "UNDOCUMENTATED", "$ref": "#/definitions/transformation" },
"river_transformation": { "title": "River Transformation", "description": "UNDOCUMENTATED", "$ref": "#/definitions/transformation" },
"shore_transformation": { "title": "Shore Transformation", "description": "UNDOCUMENTATED", "$ref": "#/definitions/transformation" },
"generate_for_climates": {
"title": "Generate For Climates",
"description": "Controls the world generation climate categories that this biome can spawn for. A single biome can be associated with multiple categories with different weightings.",
"type": "array",
"items": {
"title": "_",
"description": "UNDOCUMENTATED",
"type": "array",
"items": [
{
"title": "UNDOCUMENTATED",
"description": "Name of a climate category",
"type": "string",
"enum": ["medium", "warm", "lukewarm", "cold", "frozen"]
},
{
"title": "UNDOCUMENTATED",
"description": "Weight with which this biome should be selected, relative to other biomes in the same category",
"type": "integer"
}
]
}
}
}
}