The capacity readout banding a Gear-tab section. A container reports what it holds against what it can hold; a being's "On Body" section reports its total carried weight and the resulting encumbrance instead — see the actor sheet's _gearOnBodyCapacity hook, which a concrete sheet overrides to choose.

interface GearCapacity {
    encumbrance?: number;
    isEncumbrance?: boolean;
    max?: number;
    used: number;
}

Properties

encumbrance?: number

The encumbrance level, for an encumbrance readout.

isEncumbrance?: boolean

Whether the readout is an encumbrance summary rather than used/max.

max?: number

The section's capacity, when it has one.

used: number

Total weight of the section's contents.