PokéRogue
    Preparing search index...

    Construct a type with the properties of T except for those in type K.

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

    Hierarchy (View Summary)

    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?: SpeciesId

    The id of the illusioned fusion species, or undefined if not 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