44 lines
1.3 KiB
JSON
44 lines
1.3 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"
|
|
}
|
|
}
|
|
}
|