Files
minecraft-bedrock-json-schemas/source/behavior/spawn_rules/components/density_limit.json

20 lines
650 B
JSON
Raw Normal View History

2021-10-21 16:39:38 +02:00
{
2021-10-21 16:43:14 +02:00
"$id": "blockception.minecraft.behavior.spawn_rules.minecraft.density_limit",
2021-10-21 16:39:38 +02:00
"additionalProperties": false,
"type": "object",
2021-10-21 16:43:14 +02:00
"title": "Density Limit",
"description": "This component allows the players to specify the amount of mobs to spawn in certain locations.",
2021-10-21 16:39:38 +02:00
"properties": {
"surface": {
"type": "integer",
"description": "This is the maximum number of mobs of this type spawnable on the surface.",
"title": "Surface"
},
2021-10-21 16:39:38 +02:00
"underground": {
"type": "integer",
2022-07-22 19:41:04 +02:00
"description": "This is the maximum number of mobs of this type spawnable underground.",
2021-10-21 16:39:38 +02:00
"title": "Underground"
}
}
}