The RpgLogs Scripting API
    Preparing search index...

    Interface ResourceData

    interface ResourceData {
        absorb: number | null;
        additionalResources: ClassResource | null;
        armor: number | null;
        attackPower: number;
        avoidance: number | null;
        facing: number | null;
        hitPoints: number;
        itemLevel: number;
        mapId: number | null;
        maxHitPoints: number;
        resolve: number | null;
        resourceAmount: number;
        resourceCap: number;
        resourceCost: number;
        resourceType: number;
        spellPower: number;
        versatility: number | null;
        x: number;
        y: number;
    }
    Index

    Properties

    absorb: number | null

    The current absorb shield on the actor. Does not exist in older logs.

    additionalResources: ClassResource | null
    armor: number | null

    The current armor of the actor. Does not exist in older logs.

    attackPower: number

    The current attack power of the actor.

    avoidance: number | null

    Percent of avoidance at the time of this event. E.g. 1962 = 19.62%

    facing: number | null

    The unit's facing. Null for games that do not support facing.

    hitPoints: number

    The unit's current hit points.

    itemLevel: number

    The current item level of the actor.

    mapId: number | null

    The map id that the logging unit is on (not the unit represented by the resources). Not present in older logs.

    maxHitPoints: number

    The unit's maximum hit points.

    resolve: number | null

    Only for Mists of Pandaria Logs, the resolve of a tank actor. Null for other expansions.

    resourceAmount: number
    resourceCap: number
    resourceCost: number
    resourceType: number
    spellPower: number

    The current spell power of the actor.

    versatility: number | null

    Percent of versatility at the time of this event. E.g. 1962 = 19.62%

    x: number

    The unit's x position.

    y: number

    The unit's y position.