PokéRogue
    Preparing search index...

    Interface SessionSaveMigratorIn

    Interface for the input data of session migrators.

    interface SessionSaveMigratorIn {
        arena: unknown;
        battleType: unknown;
        challenges: unknown;
        dailyConfig?: unknown;
        enemyModifiers: unknown;
        enemyParty: SessionSavePokemonDataIn[];
        gameMode: unknown;
        gameVersion: string;
        modifiers: unknown;
        money: unknown;
        mysteryEncounterSaveData: unknown;
        mysteryEncounterType: unknown;
        name: unknown;
        party: SessionSavePokemonDataIn[];
        playerFaints: unknown;
        playTime: unknown;
        pokeballCounts: unknown;
        score: unknown;
        seed: unknown;
        timestamp: unknown;
        trainer: unknown;
        waveIndex: unknown;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index

    Properties

    arena: unknown
    battleType: unknown
    challenges: unknown
    dailyConfig?: unknown
    enemyModifiers: unknown
    gameMode: unknown
    gameVersion: string
    modifiers: unknown
    money: unknown
    mysteryEncounterSaveData: unknown
    mysteryEncounterType: unknown
    name: unknown

    The player-chosen name of the run

    playerFaints: unknown

    Counts the amount of pokemon fainted in your party during the current arena encounter.

    playTime: unknown
    pokeballCounts: unknown
    score: unknown
    seed: unknown
    timestamp: unknown
    trainer: unknown
    waveIndex: unknown