mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-10-21 20:45:52 +02:00
23 lines
489 B
TypeScript
23 lines
489 B
TypeScript
import type { GameModes } from "../game-mode";
|
|
import type PokemonData from "./pokemon-data";
|
|
import type PersistentModifierData from "./modifier-data";
|
|
|
|
export enum SessionHistoryResult {
|
|
ACTIVE,
|
|
WIN,
|
|
LOSS,
|
|
}
|
|
|
|
export interface SessionHistory {
|
|
seed: string;
|
|
playTime: number;
|
|
result: SessionHistoryResult;
|
|
gameMode: GameModes;
|
|
party: PokemonData[];
|
|
modifiers: PersistentModifierData[];
|
|
money: number;
|
|
waveIndex: number;
|
|
gameVersion: string;
|
|
timestamp: number;
|
|
}
|