The RpgLogs Scripting API
    Preparing search index...

    Interface ResourceData

    interface ResourceData {
        absorb: number;
        championPoints: number;
        facing: number | null;
        hitPoints: number;
        magicka: number;
        maxHitPoints: number;
        maxMagicka: number;
        maxStamina: number;
        maxUltimate: number;
        maxWerewolf: number;
        stamina: number;
        ultimate: number;
        werewolf: number;
        x: number;
        y: number;
    }
    Index

    Properties

    absorb: number

    The current absorb shield strength on an actor.

    championPoints: number

    The champion points of a player.

    facing: number | null

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

    hitPoints: number

    The unit's current hit points.

    magicka: number

    The current magicka of the actor.

    maxHitPoints: number

    The unit's maximum hit points.

    maxMagicka: number

    The max magicka of the actor.

    maxStamina: number

    The max stamina of the actor.

    maxUltimate: number

    The max ultimate of the actor.

    maxWerewolf: number

    The max werewolf resource of the actor.

    stamina: number

    The current stamina of the actor.

    ultimate: number

    The current progress towards ultimate of the actor.

    werewolf: number

    The current werewolf resource of the actor.

    x: number

    The unit's x position.

    y: number

    The unit's y position.