The RpgLogs Scripting API
    Preparing search index...

    Interface ResourceData

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

    Properties

    absorb: null | number

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

    additionalResources: null | ClassResource
    armor: null | number

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

    attackPower: number

    The current attack power of the actor.

    avoidance: null | number

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

    facing: null | number

    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: null | number

    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: null | number

    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: null | number

    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.