Is Equippable (Item Condition Type)

Checks if the item is equippable.

Checks if the item is equippable.

Type ID: apoli:is_equippable

Fields

FieldTypeDefaultDescription
equipment_slotEquipment Slot (Data Type)optionalIf specified, checks if the item is equippable in the specified equipment slot. Accepts "head", "chest", "legs", "feet", or "offhand".

Examples

"item_condition": {
    "type": "apoli:is_equippable"
}

This example will check if the item is generally equippable.

"item_condition": {
    "type": "apoli:is_equippable",
    "equipment_slot": "chest"
}

This example will check if the item can be equipped in the chest equipment slot.