Files

21 lines
596 B
JSON
Raw Permalink Normal View History

2021-10-08 12:59:03 +02:00
{
2021-10-08 13:04:13 +02:00
"$id": "blockception.minecraft.behavior.entities.minecraft.sittable",
2021-10-08 12:59:03 +02:00
"description": "Defines the entity's `sit` state.",
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Sittable",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"required": [],
"properties": {
2021-10-11 18:10:42 +02:00
"sit_event": {
"$ref": "../types/event_object.json",
2022-07-22 19:41:04 +02:00
"description": "Event to run when the entity enters the `sit` state.",
2021-10-11 18:10:42 +02:00
"title": "Sit Event"
},
"stand_event": {
"$ref": "../types/event_object.json",
2022-07-22 19:41:04 +02:00
"description": "Event to run when the entity exits the `sit` state.",
2021-10-11 18:10:42 +02:00
"title": "Stand Event"
}
2021-10-08 12:59:03 +02:00
}
}