Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/item_controllable.json

28 lines
727 B
JSON
Raw 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.item_controllable",
2022-07-22 19:41:04 +02:00
"description": "Efines what items can be used to control this entity while ridden.",
2021-10-08 12:59:03 +02:00
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Item Controllable",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"required": [],
"properties": {
"control_items": {
2022-07-22 19:41:04 +02:00
"description": "List of items that can be used to control this entity.",
2021-10-08 12:59:03 +02:00
"oneOf": [
2021-10-11 18:10:42 +02:00
{
"type": "array",
"items": {
"type": "string",
2022-07-22 19:41:04 +02:00
"description": "An item that can be used to control this entity.",
2021-10-11 18:10:42 +02:00
"title": "Item"
}
},
{
"type": "string"
}
2021-10-08 12:59:03 +02:00
],
"title": "Control Items"
}
}
}