1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-10-15 22:55:45 +00:00
Files
bedrock-samples/metadata/json_schemas/server/biome/1.20.60/Climate Biome Component.json
2025-09-09 10:02:11 -07:00

27 lines
962 B
JSON

{
"$id": "800202529",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Describes temperature, humidity, precipitation, and similar. Biomes without this component will have default values.",
"properties": {
"downfall": {
"description": "Amount that precipitation affects colors and block changes. Setting to 0 will stop rain from falling in the biome.",
"type": "number"
},
"snow_accumulation": {
"description": "Minimum and maximum snow level, each multiple of 0.125 is another snow layer",
"items": {
"type": "number"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"temperature": {
"description": "Temperature affects a variety of visual and behavioral things, including snow and ice placement, sponge drying, and sky color",
"type": "number"
}
},
"title": "minecraft:climate",
"type": "object",
"x-format-version": "1.20.60"
}