mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2025-04-11 21:59:58 +00:00
42 lines
1.5 KiB
JSON
42 lines
1.5 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"$id": "800202529",
|
|
"title": "minecraft:climate",
|
|
"description": "Describes temperature, humidity, precipitation, and similar. Biomes without this component will have default values.",
|
|
"type": "object",
|
|
"properties": {
|
|
"blue_spores": {
|
|
"description": "Density of blue spore precipitation visuals",
|
|
"type": "number"
|
|
},
|
|
"downfall": {
|
|
"description": "Amount that precipitation affects colors and block changes",
|
|
"type": "number"
|
|
},
|
|
"snow_accumulation": {
|
|
"description": "Minimum and maximum snow level, each multiple of 0.125 is another snow layer",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "number"
|
|
},
|
|
"minItems": 2,
|
|
"maxItems": 2
|
|
},
|
|
"white_ash": {
|
|
"description": "Density of white ash precipitation visuals",
|
|
"type": "number"
|
|
},
|
|
"temperature": {
|
|
"description": "Temperature affects a variety of visual and behavioral things, including snow and ice placement, sponge drying, and sky color",
|
|
"type": "number"
|
|
},
|
|
"red_spores": {
|
|
"description": "Density of blue spore precipitation visuals",
|
|
"type": "number"
|
|
},
|
|
"ash": {
|
|
"description": "Density of ash precipitation visuals",
|
|
"type": "number"
|
|
}
|
|
}
|
|
} |