Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/equip_item.json
2024-02-17 12:32:54 +01:00

20 lines
582 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": {
"$ref": "../../../../general/item/descriptor.json",
"description": "Item that the entity should not equip.",
"title": "Excluded Items"
}
}
}
}