Refactor
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$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": "TODO", "title": "Min Size" },
|
||||
"max_size": { "type": "integer", "description": "TODO", "title": "Max Size" },
|
||||
"event": { "type": "string", "description": "TODO", "title": "Event" },
|
||||
"event_skip_count": { "type": "integer", "description": "TODO", "title": "Event Skip Count" }
|
||||
}
|
||||
}
|
||||
},
|
||||
"oneOf": [
|
||||
{ "type": "object", "$ref": "#/definitions/herd" },
|
||||
{ "type": "array", "items": { "$ref": "#/definitions/herd" } }
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user