1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-04-11 21:59:58 +00:00
Files
bedrock-samples/metadata/json_schemas/biome/v1.20.60/Climate Biome Component v1.20.60.json
Mike Ammerlaan 8cb28e3b1e v1.21.70.3
2025-03-25 09:13:19 -07:00

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"
}
}
}