Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/equip_item.json
2023-10-24 21:58:11 +02:00

21 lines
611 B
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.equip_item",
"type": "object",
"title": "Equip Item",
"description": "The entity puts on the desired equipment.",
"additionalProperties": false,
"properties": {
"excluded_items": {
"title": "Excluded Items",
"type": "array",
"description": "List of items that the entity should not equip.",
"items": {
"type": "string",
"$ref": "../../../../../general/item/descriptor.json",
"description": "Item that the entity should not equip.",
"title": "Excluded Items"
}
}
}
}