PokéRogue
    Preparing search index...

    Interface for info about an ArenaTag's effects.

    interface ArenaTagInfo {
        duration: number;
        maxDuration: number;
        name: string;
        side: ArenaTagSide;
        tagType: ArenaTagType;
    }
    Index

    Properties

    duration: number

    The current duration left on the tag.

    maxDuration: number

    The maximum duration of the tag, or 0 if it should last indefinitely.

    name: string

    The localized name of the tag.

    The ArenaTagSide to which the tag applies.

    tagType: ArenaTagType

    The tag's ArenaTagType.