Removed minecraft.

This commit is contained in:
DaanV2
2021-10-08 13:18:16 +02:00
parent c8c0a5bd7f
commit ec608d9fb7
176 changed files with 173 additions and 173 deletions

View File

@@ -0,0 +1,25 @@
{
"$id": "blockception.minecraft.behavior.entities.minecraft.scheduler",
"description": "fires off scheduled mob events at time of day events.",
"type": "object",
"title": "Scheduler",
"additionalProperties": false,
"properties": {
"min_delay_secs": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Minimum Delay Secs", "minimum": 0 },
"max_delay_secs": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Maximum Delay Secs", "minimum": 0 },
"scheduled_events": {
"type": "array",
"description": "The list of triggers that fire when the conditions match the given filter criteria. If any filter criteria overlap the first defined event will be picked.",
"title": "Scheduled Events",
"items": {
"additionalProperties": false,
"type": "object",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "Scheduled Events",
"properties": { "filters": { "$ref": "../../filters/filters.json" }, "event": { "$ref": "../types/event.json" } }
}
}
}
}