Moved to source folder
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"$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"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user