PokéRogue
    Preparing search index...

    Interface BaseBattlerTag

    Interface containing the serializable fields of BattlerTag

    interface BaseBattlerTag {
        sourceId?: number;
        sourceMove?: MoveId;
        turnCount: number;
    }

    Implemented by

    Index

    Properties

    sourceId?: number

    The PID of the Pokemon that added this tag, or undefined if not set by a Pokemon.

    sourceMove?: MoveId

    The MoveId that created this tag, or undefined if not set by a move.

    turnCount: number

    The tag's remaining duration.