-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpokemon.ts
136 lines (115 loc) · 2.39 KB
/
pokemon.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// Generated by https://quicktype.io
export interface Pokemon {
id: number;
name: string;
base_experience: number;
height: number;
is_default: boolean;
order: number;
weight: number;
abilities: Ability[];
forms: Species[];
game_indices: GameIndex[];
held_items: HeldItem[];
location_area_encounters: string;
moves: Move[];
species: Species;
sprites: Sprites;
stats: Stat[];
types: Type[];
}
export interface Ability {
is_hidden: boolean;
slot: number;
ability: Species;
}
export interface Species {
name: string;
url: string;
}
export interface GameIndex {
game_index: number;
version: Species;
}
export interface HeldItem {
item: Species;
version_details: VersionDetail[];
}
export interface VersionDetail {
rarity: number;
version: Species;
}
export interface Move {
move: Species;
version_group_details: VersionGroupDetail[];
}
export interface VersionGroupDetail {
level_learned_at: number;
version_group: Species;
move_learn_method: Species;
}
export interface Sprites {
back_female: string;
back_shiny_female: string;
back_default: string;
front_female: string;
front_shiny_female: string;
back_shiny: string;
front_default: string;
front_shiny: string;
other: Other;
versions: Versions;
}
export interface Other {
dream_world: DreamWorld;
"official-artwork": DreamWorld;
}
export interface DreamWorld {}
export interface Versions {
"generation-i": GenerationI;
"generation-ii": GenerationIi;
"generation-iii": GenerationIii;
"generation-iv": GenerationIv;
"generation-v": GenerationV;
"generation-vi": { [key: string]: DreamWorld };
"generation-vii": GenerationVii;
"generation-viii": GenerationViii;
}
export interface GenerationI {
"red-blue": DreamWorld;
yellow: DreamWorld;
}
export interface GenerationIi {
crystal: DreamWorld;
gold: DreamWorld;
silver: DreamWorld;
}
export interface GenerationIii {
emerald: DreamWorld;
"firered-leafgreen": DreamWorld;
"ruby-sapphire": DreamWorld;
}
export interface GenerationIv {
"diamond-pearl": DreamWorld;
"heartgold-soulsilver": DreamWorld;
platinum: DreamWorld;
}
export interface GenerationV {
"black-white": DreamWorld;
}
export interface GenerationVii {
icons: DreamWorld;
"ultra-sun-ultra-moon": DreamWorld;
}
export interface GenerationViii {
icons: DreamWorld;
}
export interface Stat {
base_stat: number;
effort: number;
stat: Species;
}
export interface Type {
slot: number;
type: Species;
}