PokéRogue
    Preparing search index...

    Interface BaseArenaTag

    Interface containing the serializable fields of ArenaTagData.

    interface BaseArenaTag {
        maxDuration: number;
        side: ArenaTagSide;
        sourceId: number | undefined;
        sourceMove?: MoveId;
        turnCount: number;
    }

    Implemented by

    Index

    Properties

    maxDuration: number

    The tag's max duration.

    The side of the field that this arena tag affects.

    ArenaTagSide.BOTH

    sourceId: number | undefined

    The PID of the Pokemon having created the 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. Setting to any number <=0 will make the tag's duration effectively infinite.