2021-10-08 12:59:03 +02:00
|
|
|
{
|
2021-10-08 13:04:13 +02:00
|
|
|
"$id": "blockception.minecraft.behavior.entities.minecraft.item_controllable",
|
2024-06-29 00:06:53 +05:00
|
|
|
"description": "Defines 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"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|