Files

26 lines
793 B
JSON
Raw Permalink 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"
}
},
"can_wear_armor": {
"title": "Can Wear Armor",
"description": "Specifies if equipped armor should be added to the armor slot or hand slot",
"type": "boolean",
"default": false
2023-10-24 21:58:11 +02:00
}
}
2021-10-08 12:59:03 +02:00
}