Files
minecraft-bedrock-json-schemas/source/behaviour/entities/1.8.0/behaviors/minecraft.behavior.send_event.json
2021-03-21 15:18:38 +01:00

28 lines
1.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.behavior.send_event",
"description": "Allows the mob to send an event to another mob.",
"type": "object",
"title": "Send Event 1.8.0",
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"cast_duration": { "type": "number", "description": "Time in seconds for the entire event sending process", "title": "TODO Title" },
"sequence": {
"type": "array",
"description": "List of events to send",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"base_delay": { "type": "number", "default": 0, "description": "Amount of time in seconds before starting this step" },
"event": { "type": "string", "default": "", "description": "The event to send to the entity" },
"sound_event": { "type": "string", "default": "", "description": "The sound event to play when this step happens" }
}
},
"title": "TODO Title"
}
}
}