Files
minecraft-bedrock-json-schemas/source/behavior/spawn_rules/1.8.0/components/minecraft.herd.json
2021-06-06 10:07:19 +00:00

28 lines
1.1 KiB
JSON

{
"$id": "blockception.minecraft.behavior.spawn_rules.1.8.0.minecraft.height_filter",
"title": "Height Filter 1.8.0",
"description": "TODO",
"definitions": {
"herd": {
"type": "object",
"title": "Herd",
"description": "Herd",
"additionalProperties": false,
"properties": {
"min_size": { "type": "integer", "description": "This is the minimum number of mobs that spawn in a herd", "title": "Min Size" },
"max_size": { "type": "integer", "description": "This is the maximum number of mobs that spawn in a herd", "title": "Max Size" },
"event": { "type": "string", "description": "This is an event that can be triggered from spawning", "title": "Event" },
"event_skip_count": {
"type": "integer",
"description": "This is the number of mobs spawned before the specified event is triggered",
"title": "Event Skip Count"
}
}
}
},
"oneOf": [
{ "type": "object", "$ref": "#/definitions/herd" },
{ "type": "array", "items": { "$ref": "#/definitions/herd" } }
]
}