PokéRogue
    Preparing search index...

    Container for info about an Arena's effects

    interface ArenaEffectInfo {
        duration: number;
        effectType: ArenaEffectType;
        maxDuration: number;
        name: string;
        tagType?: ArenaTagType;
    }
    Index

    Properties

    duration: number

    The current duration left on the effect

    effectType: ArenaEffectType

    ArenaEffectType type of effect

    maxDuration: number

    The maximum duration set by the effect

    name: string

    The enum string representation of the effect

    tagType?: ArenaTagType

    The arena tag type being added