PokéRogue
    Preparing search index...

    Data pertaining to a Pokemon's Illusion.

    interface IllusionData {
        formIndex: number;
        fusionFormIndex?: number;
        fusionGender?: Gender;
        fusionShiny?: boolean;
        fusionSpecies?: PokemonSpecies;
        fusionVariant?: Variant;
        gender: Gender;
        level?: number;
        name: string;
        nickname?: string;
        pokeball: PokeballType;
        shiny: boolean;
        species: SpeciesId;
        variant: Variant;
    }
    Index

    Properties

    formIndex: number

    The formIndex of the illusion

    fusionFormIndex?: number

    The fusionFormIndex of the illusion

    fusionGender?: Gender

    The fusionGender of the illusion if it's a fusion

    fusionShiny?: boolean

    Whether the fusion species of the pokemon featured in the illusion is shiny or not

    fusionSpecies?: PokemonSpecies

    The fusion species of the illusion if it's a fusion

    fusionVariant?: Variant

    The variant of the fusion species of the pokemon featured in the illusion

    gender: Gender

    The gender of the illusion

    level?: number

    The level of the illusion (not used currently)

    name: string

    The name of pokemon featured in the illusion

    nickname?: string

    The nickname of the pokemon featured in the illusion

    pokeball: PokeballType

    The pokeball of the illusion

    shiny: boolean

    Whether the pokemon featured in the illusion is shiny or not

    species: SpeciesId

    The species of the illusion

    variant: Variant

    The variant of the pokemon featured in the illusion