{ "$id": "blockception.minecraft.behavior.entities.minecraft.equipment", "type": "object", "title": "Equipment", "description": "Sets the equipment table to use for the entity.", "additionalProperties": false, "properties": { "slot_drop_chance": { "type": "array", "description": "A list of slots with the chance to drop an equipped item from that slot", "title": "Slot Drop Chance", "items": { "additionalProperties": false, "title": "Slot Drop Chance", "description": "A slots with the chance to drop an equipped item from that slot.", "type": "object", "properties": { "drop_chance": { "type": "number", "title": "Drop Chance", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }, "slot": { "type": "string", "title": "Slot", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" } } } }, "table": { "title": "Table", "description": "The file path to the equipment table, relative to the behavior pack's root.", "$ref": "../../../../general/loot_table/identifier.json" } }, "examples": [ { "slot_drop_chance": [] } ] }