Updated comments

This commit is contained in:
DaanV2
2021-07-03 11:45:14 +02:00
parent 0755a30b1e
commit 56d96d8c64
15 changed files with 92 additions and 95 deletions

View File

@@ -1,16 +1,21 @@
{
"$id": "blockception.minecraft.behavior.entities.type.trigger.1.8.0",
"title": "Trigger1.8.0",
"type": "object",
"description": "Trigger to fire",
"minProperties": 1,
"additionalProperties": false,
"properties": {
"event": { "type": "string", "description": "Event", "title": "Event To Fire" },
"filters": {
"$ref": "../../filters/filters.json",
"description": "The filters to check to determine if the event should be fired"
},
"target": { "$ref": "../../filters/filters/types/subject.json", "description": "The entity to target", "title": "Target" }
}
"oneOf": [
{ "type": "string" },
{
"type": "object",
"minProperties": 1,
"additionalProperties": false,
"properties": {
"event": { "type": "string", "description": "Event", "title": "Event To Fire" },
"filters": {
"$ref": "../../filters/filters.json",
"description": "The filters to check to determine if the event should be fired"
},
"target": { "$ref": "../../filters/filters/types/subject.json", "description": "The entity to target", "title": "Target" }
}
}
]
}