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/Creature Spawn Probability Biome Component.json
2025-09-09 10:02:11 -07:00

16 lines
517 B
JSON

{
"$id": "6061611",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Probability that creatures will spawn within the biome when a chunk is generated.",
"properties": {
"probability": {
"description": "Probabiltity between [0.0, 0.75] of creatures spawning within the biome on chunk generation.",
"maximum": 0.75,
"minimum": 0,
"type": "number"
}
},
"title": "minecraft:creature_spawn_probability",
"type": "object",
"x-format-version": "1.20.60"
}