Files
minecraft-bedrock-json-schemas/source/behavior/biomes/1.12.0/components/minecraft.climate.json
2021-06-06 10:07:19 +00:00

31 lines
1.2 KiB
JSON

{
"$id": "minecraft.behavior.biomes.1.12.0.components.minecraft.climate",
"title": "Climate",
"description": "Describes temperature, humidity, precipitation, etc. Biomes without this component will have default values.",
"type": "object",
"minProperties": 0,
"maxProperties": 7,
"additionalProperties": false,
"properties": {
"temperature": { "title": "Temperature", "description": "UNDOCUMENATED", "type": "number" },
"downfall": { "title": "Downfall", "description": "UNDOCUMENATED", "type": "number" },
"red_spores": { "title": "Red Spores", "description": "UNDOCUMENATED", "type": "number" },
"blue_spores": { "title": "Blue Spores", "description": "UNDOCUMENATED", "type": "number" },
"ash": { "title": "Ash", "description": "UNDOCUMENATED", "type": "number" },
"white_ash": { "title": "White Ash", "description": "UNDOCUMENATED", "type": "number" },
"snow_accumulation": {
"title": "Snow Accumulation",
"description": "UNDOCUMENATED",
"type": "array",
"items": [
{
"type": "number"
},
{
"type": "number"
}
]
}
}
}