Files
minecraft-bedrock-json-schemas/source/behaviour/entities/1.8.0/behaviors/minecraft.behavior.send_event.json

28 lines
1.1 KiB
JSON
Raw Normal View History

2020-11-01 17:22:42 +01:00
{
"$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",
2021-03-21 15:18:38 +01:00
"title": "Send Event 1.8.0",
2020-11-01 17:22:42 +01:00
"additionalProperties": false,
"required": [],
"properties": {
2020-12-12 00:09:25 +01:00
"priority": { "$ref": "./types/base_priority.json" },
2021-03-21 15:18:38 +01:00
"cast_duration": { "type": "number", "description": "Time in seconds for the entire event sending process", "title": "TODO Title" },
2020-11-01 17:22:42 +01:00
"sequence": {
"type": "array",
"description": "List of events to send",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
2021-03-21 15:18:38 +01:00
"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" }
2020-11-01 17:22:42 +01:00
}
},
2021-03-21 15:18:38 +01:00
"title": "TODO Title"
2020-11-01 17:22:42 +01:00
}
}
}