33 lines
1005 B
JSON
33 lines
1005 B
JSON
|
|
{
|
||
|
|
"$id": "blockception.minecraft.behavior.biomes.minecraft.climate",
|
||
|
|
"title": "Climate",
|
||
|
|
"description": "Describes temperature, humidity, precipitation, etc. Biomes without this component will have default values.",
|
||
|
|
"type": "object",
|
||
|
|
"additionalProperties": false,
|
||
|
|
"properties": {
|
||
|
|
"downfall": {
|
||
|
|
"title": "Downfall",
|
||
|
|
"description": "Amount that precipitation affects colors and block changes.",
|
||
|
|
"type": "number"
|
||
|
|
},
|
||
|
|
"snow_accumulation": {
|
||
|
|
"title": "Snow Accumulation",
|
||
|
|
"description": "Minimum and maximum snow level, each multiple of 0.125 is another snow layer.",
|
||
|
|
"type": "array",
|
||
|
|
"items": [
|
||
|
|
{
|
||
|
|
"type": "number"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"type": "number"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"temperature": {
|
||
|
|
"title": "Temperature",
|
||
|
|
"description": "Temperature affects a variety of visual and behavioral things, including snow and ice placement, sponge drying, and sky color.",
|
||
|
|
"type": "number"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|