The RpgLogs Scripting API
    Preparing search index...

    Interface AbsorbedEvent

    interface AbsorbedEvent {
        ability: null | Ability;
        absorbedDamage: number;
        absorbedHealing: number;
        amount: number;
        attacker: null | ActorInstance;
        attackerAbility: null | Ability;
        attackerDisposition: ActorDisposition;
        attackerInstanceId: number;
        attackerRaidMarker: number;
        effectiveDamage: number;
        effectiveHealing: number;
        source: null | ActorInstance;
        sourceDisposition: ActorDisposition;
        sourceInstanceId: number;
        sourceRaidMarker: number;
        sourceResources: null | ResourceData;
        target: null | ActorInstance;
        targetDisposition: ActorDisposition;
        targetInstanceId: number;
        targetRaidMarker: number;
        targetResources: null | ResourceData;
        timestamp: number;
        type: "absorbed";
    }

    Hierarchy (View Summary)

    Index

    Properties

    ability: null | Ability

    The ability used by the source on the target. Null if no ability is set.

    absorbedDamage: number

    The amount of absorbed damage done for this event.

    absorbedHealing: number

    The amount of healing done via absorbs for this event.

    amount: number

    The amount of damage absorbed.

    attacker: null | ActorInstance

    The attacking actor. Null if no attacker is set.

    attackerAbility: null | Ability

    The attacking ability used. Null if the ability is not known.

    attackerDisposition: ActorDisposition

    The raw disposition of the attacker. Use the isFriendlyParticipant and isEnemyParticipant methods to obtain the overall single disposition for this actor. This field should be used with caution as it could flip if the logger or the unit get mind controlled.

    attackerInstanceId: number

    The instance id of the attacker.

    attackerRaidMarker: number

    The raid marker on the attacking unit. 0 if no raid marker is set.

    effectiveDamage: number

    The amount of effective damage done for this event.

    effectiveHealing: number

    The amount of effective healing done by the event.

    source: null | ActorInstance

    The source actor. Null if no source is set.

    sourceDisposition: ActorDisposition

    The raw disposition of the source. Use the isFriendlyParticipant and isEnemyParticipant methods to obtain the overall single disposition for this actor. This field should be used with caution as it could flip if the logger or the unit get mind controlled.

    sourceInstanceId: number

    The instance id of the source.

    sourceRaidMarker: number

    The raid marker on this source unit. 0 if no raid marker is set.

    sourceResources: null | ResourceData

    Resource data for the source. Null if no resource information is available.

    target: null | ActorInstance

    The target actor. Null if no target is set.

    targetDisposition: ActorDisposition

    The raw disposition of the target. Use the isFriendlyParticipant and isEnemyParticipant methods on Fight to obtain the overall single disposition for this actor. This field should be used with caution as it could flip if the logger or the unit get mind controlled.

    targetInstanceId: number

    The instance id of the target.

    targetRaidMarker: number

    The raid marker on this source unit. 0 if no raid marker is set.

    targetResources: null | ResourceData

    Resource data for the target. Null if no resource information is available.

    timestamp: number

    The time offset of the event in milliseconds from the start of the report.

    type: "absorbed"

    The type of the event.