PokéRogue
    Preparing search index...

    Interface PendingHealEffect

    Interface containing data related to a queued healing effect from Healing Wish or Lunar Dance.

    interface PendingHealEffect {
        healMessage: string;
        moveId: MoveId;
        restorePP: boolean;
        sourceId: number;
    }
    Index

    Properties

    healMessage: string

    The message to display when the effect activates

    moveId: MoveId

    The MoveId of the move that created the effect.

    restorePP: boolean

    If true, also restores the target's PP when the effect activates.

    sourceId: number

    The PID of the Pokemon that created the effect.