Is Equippable
Checks if the item is equippable.
Type ID: origins:is_equippable
Fields
| Field | Type | Default | Description |
|---|---|---|---|
| equipment_slot | String | optional | If specified, checks if the item is equippable in the specified equipment slot. Accepts "head", "chest", "legs", "feet", or "offhand". |
Examples
"item_condition": {
"type": "origins:is_equippable"
}
This example will check if the item is generally equippable.
"item_condition": {
"type": "origins:is_equippable",
"equipment_slot": "chest"
}
This example will check if the item can be equipped in the chest equipment slot.