You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
714 B
33 lines
714 B
export interface Pokemon {
|
|
PFIC: string;
|
|
Name: string;
|
|
Form: string | null;
|
|
NationalDex: number;
|
|
Generation: number;
|
|
StorableInHome?: boolean;
|
|
IsBabyForm?: boolean;
|
|
Encounters?: PokemonEncounter[];
|
|
MarkIcon?: string;
|
|
MarkName: string;
|
|
Image?: string;
|
|
IsDefault?: boolean;
|
|
IsCaught?: boolean;
|
|
IsGenderRelevant?: boolean;
|
|
}
|
|
|
|
export interface PokemonEncounter {
|
|
form: string;
|
|
game: string;
|
|
game_id: number;
|
|
location: string;
|
|
day?: string;
|
|
time?: string;
|
|
dual_slot?: boolean;
|
|
static_encounter?: boolean;
|
|
static_encounter_count?: number;
|
|
extra_text?: string;
|
|
stars?: number;
|
|
fishing?: boolean;
|
|
rods?: string;
|
|
starter?: boolean;
|
|
}
|