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

20 lines
582 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.equip_item",
2021-10-08 12:59:03 +02:00
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Equip Item",
2021-10-08 12:59:03 +02:00
"description": "The entity puts on the desired equipment.",
"additionalProperties": false,
2023-10-24 21:58:11 +02:00
"properties": {
"excluded_items": {
"title": "Excluded Items",
"type": "array",
"description": "List of items that the entity should not equip.",
"items": {
2023-10-24 22:01:21 +02:00
"$ref": "../../../../general/item/descriptor.json",
2023-10-24 21:58:11 +02:00
"description": "Item that the entity should not equip.",
"title": "Excluded Items"
}
}
}
2021-10-08 12:59:03 +02:00
}