@pkmn/sim 0.7.26 → 0.7.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/config/formats.js +27 -9
- package/build/cjs/config/formats.js.map +1 -1
- package/build/cjs/data/conditions.js +5 -1
- package/build/cjs/data/conditions.js.map +1 -1
- package/build/cjs/data/formats-data.js +3 -3
- package/build/cjs/data/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen1/formats-data.js +0 -317
- package/build/cjs/data/mods/gen1/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen1/moves.js +2 -2
- package/build/cjs/data/mods/gen2/formats-data.js +0 -140
- package/build/cjs/data/mods/gen2/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen3/formats-data.js +0 -220
- package/build/cjs/data/mods/gen3/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen4/formats-data.js +18 -333
- package/build/cjs/data/mods/gen4/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen5/formats-data.js +19 -430
- package/build/cjs/data/mods/gen5/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen6/formats-data.js +26 -1008
- package/build/cjs/data/mods/gen6/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen7/formats-data.js +25 -1193
- package/build/cjs/data/mods/gen7/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen8/formats-data.js +5 -1861
- package/build/cjs/data/mods/gen8/formats-data.js.map +1 -1
- package/build/cjs/data/moves.js +1 -6
- package/build/cjs/data/moves.js.map +1 -1
- package/build/cjs/data/rulesets.js +1 -1
- package/build/cjs/data/rulesets.js.map +1 -1
- package/build/cjs/data/text/moves.js +3 -3
- package/build/cjs/data/text/moves.js.map +1 -1
- package/build/cjs/sim/tools/exhaustive-runner.js +39 -26
- package/build/cjs/sim/tools/exhaustive-runner.js.map +1 -1
- package/build/esm/config/formats.mjs +27 -9
- package/build/esm/config/formats.mjs.map +1 -1
- package/build/esm/data/conditions.mjs +5 -1
- package/build/esm/data/conditions.mjs.map +1 -1
- package/build/esm/data/formats-data.mjs +3 -3
- package/build/esm/data/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen1/formats-data.mjs +0 -317
- package/build/esm/data/mods/gen1/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen1/moves.mjs +2 -2
- package/build/esm/data/mods/gen2/formats-data.mjs +0 -140
- package/build/esm/data/mods/gen2/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen3/formats-data.mjs +0 -220
- package/build/esm/data/mods/gen3/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen4/formats-data.mjs +18 -333
- package/build/esm/data/mods/gen4/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen5/formats-data.mjs +19 -430
- package/build/esm/data/mods/gen5/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen6/formats-data.mjs +26 -1008
- package/build/esm/data/mods/gen6/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen7/formats-data.mjs +25 -1193
- package/build/esm/data/mods/gen7/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen8/formats-data.mjs +5 -1861
- package/build/esm/data/mods/gen8/formats-data.mjs.map +1 -1
- package/build/esm/data/moves.mjs +1 -6
- package/build/esm/data/moves.mjs.map +1 -1
- package/build/esm/data/rulesets.mjs +1 -1
- package/build/esm/data/rulesets.mjs.map +1 -1
- package/build/esm/data/text/moves.mjs +3 -3
- package/build/esm/data/text/moves.mjs.map +1 -1
- package/build/esm/sim/tools/exhaustive-runner.mjs +39 -26
- package/build/esm/sim/tools/exhaustive-runner.mjs.map +1 -1
- package/build/types/sim/exported-global-types.d.ts +4 -3
- package/build/types/sim/global-types.d.ts +4 -3
- package/build/types/sim/tools/exhaustive-runner.d.ts +3 -2
- package/package.json +1 -1
|
@@ -1,53 +1,29 @@
|
|
|
1
1
|
export const FormatsData = {
|
|
2
2
|
bulbasaur: {
|
|
3
|
-
randomBattleMoves: ["bodyslam", "sleeppowder"],
|
|
4
|
-
essentialMove: "razorleaf",
|
|
5
|
-
exclusiveMoves: ["megadrain", "swordsdance", "swordsdance"],
|
|
6
3
|
tier: "LC",
|
|
7
4
|
},
|
|
8
5
|
ivysaur: {
|
|
9
|
-
randomBattleMoves: ["bodyslam", "sleeppowder", "swordsdance"],
|
|
10
|
-
essentialMove: "razorleaf",
|
|
11
6
|
tier: "NFE",
|
|
12
7
|
},
|
|
13
8
|
venusaur: {
|
|
14
|
-
randomBattleMoves: ["bodyslam", "hyperbeam", "sleeppowder", "swordsdance"],
|
|
15
|
-
essentialMove: "razorleaf",
|
|
16
9
|
tier: "UU",
|
|
17
10
|
},
|
|
18
11
|
charmander: {
|
|
19
|
-
randomBattleMoves: ["bodyslam", "slash"],
|
|
20
|
-
essentialMove: "fireblast",
|
|
21
|
-
exclusiveMoves: ["counter", "seismictoss"],
|
|
22
|
-
comboMoves: ["bodyslam", "fireblast", "submission", "swordsdance"],
|
|
23
12
|
tier: "LC",
|
|
24
13
|
},
|
|
25
14
|
charmeleon: {
|
|
26
|
-
randomBattleMoves: ["bodyslam", "slash"],
|
|
27
|
-
essentialMove: "fireblast",
|
|
28
|
-
exclusiveMoves: ["counter", "swordsdance"],
|
|
29
|
-
comboMoves: ["bodyslam", "fireblast", "submission", "swordsdance"],
|
|
30
15
|
tier: "NFE",
|
|
31
16
|
},
|
|
32
17
|
charizard: {
|
|
33
|
-
randomBattleMoves: ["bodyslam", "earthquake", "slash"],
|
|
34
|
-
essentialMove: "fireblast",
|
|
35
|
-
comboMoves: ["hyperbeam", "swordsdance"],
|
|
36
18
|
tier: "NU",
|
|
37
19
|
},
|
|
38
20
|
squirtle: {
|
|
39
|
-
randomBattleMoves: ["blizzard", "hydropump", "seismictoss", "surf"],
|
|
40
|
-
exclusiveMoves: ["bodyslam", "counter"],
|
|
41
21
|
tier: "LC",
|
|
42
22
|
},
|
|
43
23
|
wartortle: {
|
|
44
|
-
randomBattleMoves: ["blizzard", "bodyslam", "hydropump", "surf"],
|
|
45
|
-
exclusiveMoves: ["counter", "rest", "seismictoss"],
|
|
46
24
|
tier: "NFE",
|
|
47
25
|
},
|
|
48
26
|
blastoise: {
|
|
49
|
-
randomBattleMoves: ["blizzard", "bodyslam", "hydropump", "surf"],
|
|
50
|
-
exclusiveMoves: ["earthquake", "rest"],
|
|
51
27
|
tier: "NU",
|
|
52
28
|
},
|
|
53
29
|
caterpie: {
|
|
@@ -57,8 +33,6 @@ export const FormatsData = {
|
|
|
57
33
|
tier: "NFE",
|
|
58
34
|
},
|
|
59
35
|
butterfree: {
|
|
60
|
-
randomBattleMoves: ["psychic", "sleeppowder", "stunspore"],
|
|
61
|
-
exclusiveMoves: ["megadrain", "psywave"],
|
|
62
36
|
tier: "PU",
|
|
63
37
|
},
|
|
64
38
|
weedle: {
|
|
@@ -68,705 +42,414 @@ export const FormatsData = {
|
|
|
68
42
|
tier: "NFE",
|
|
69
43
|
},
|
|
70
44
|
beedrill: {
|
|
71
|
-
randomBattleMoves: ["megadrain", "swordsdance", "twineedle"],
|
|
72
|
-
exclusiveMoves: ["doubleedge", "doubleedge", "hyperbeam"],
|
|
73
|
-
comboMoves: ["agility", "hyperbeam", "swordsdance", "twineedle"],
|
|
74
45
|
tier: "PU",
|
|
75
46
|
},
|
|
76
47
|
pidgey: {
|
|
77
|
-
randomBattleMoves: ["agility", "doubleedge", "skyattack"],
|
|
78
|
-
exclusiveMoves: ["mimic", "mirrormove", "reflect", "sandattack", "substitute", "quickattack", "toxic"],
|
|
79
48
|
tier: "LC",
|
|
80
49
|
},
|
|
81
50
|
pidgeotto: {
|
|
82
|
-
randomBattleMoves: ["agility", "doubleedge", "skyattack"],
|
|
83
|
-
exclusiveMoves: ["mimic", "mirrormove", "reflect", "sandattack", "substitute", "quickattack", "toxic"],
|
|
84
51
|
tier: "NFE",
|
|
85
52
|
},
|
|
86
53
|
pidgeot: {
|
|
87
|
-
randomBattleMoves: ["agility", "doubleedge", "hyperbeam"],
|
|
88
|
-
exclusiveMoves: ["mimic", "mirrormove", "reflect", "sandattack", "skyattack", "skyattack", "substitute", "quickattack", "toxic"],
|
|
89
54
|
tier: "PU",
|
|
90
55
|
},
|
|
91
56
|
rattata: {
|
|
92
|
-
randomBattleMoves: ["blizzard", "bodyslam"],
|
|
93
|
-
// The two Thunderbolts are not a mistake, but specifically requested
|
|
94
|
-
exclusiveMoves: ["thunderbolt", "thunderbolt", "quickattack"],
|
|
95
|
-
essentialMove: "superfang",
|
|
96
57
|
tier: "LC",
|
|
97
58
|
},
|
|
98
59
|
raticate: {
|
|
99
|
-
randomBattleMoves: ["blizzard", "bodyslam", "hyperbeam"],
|
|
100
|
-
essentialMove: "superfang",
|
|
101
60
|
tier: "NU",
|
|
102
61
|
},
|
|
103
62
|
spearow: {
|
|
104
|
-
randomBattleMoves: ["agility", "doubleedge", "drillpeck"],
|
|
105
|
-
exclusiveMoves: ["leer", "mimic", "mirrormove", "substitute", "toxic"],
|
|
106
63
|
tier: "LC",
|
|
107
64
|
},
|
|
108
65
|
fearow: {
|
|
109
|
-
randomBattleMoves: ["agility", "doubleedge", "drillpeck", "hyperbeam"],
|
|
110
66
|
tier: "PU",
|
|
111
67
|
},
|
|
112
68
|
ekans: {
|
|
113
|
-
randomBattleMoves: ["bodyslam", "earthquake", "glare", "rockslide"],
|
|
114
69
|
tier: "LC",
|
|
115
70
|
},
|
|
116
71
|
arbok: {
|
|
117
|
-
randomBattleMoves: ["earthquake", "glare", "hyperbeam"],
|
|
118
|
-
exclusiveMoves: ["bodyslam", "rockslide"],
|
|
119
72
|
tier: "PU",
|
|
120
73
|
},
|
|
121
74
|
pikachu: {
|
|
122
|
-
randomBattleMoves: ["surf", "thunderwave"],
|
|
123
|
-
essentialMove: "thunderbolt",
|
|
124
|
-
exclusiveMoves: ["agility", "bodyslam", "seismictoss", "thunder"],
|
|
125
75
|
tier: "LC",
|
|
126
76
|
},
|
|
127
77
|
raichu: {
|
|
128
|
-
randomBattleMoves: ["surf", "thunderwave"],
|
|
129
|
-
essentialMove: "thunderbolt",
|
|
130
|
-
exclusiveMoves: ["agility", "bodyslam", "hyperbeam", "seismictoss", "thunder"],
|
|
131
78
|
tier: "NUBL",
|
|
132
79
|
},
|
|
133
80
|
sandshrew: {
|
|
134
|
-
randomBattleMoves: ["bodyslam", "rockslide", "swordsdance"],
|
|
135
|
-
essentialMove: "earthquake",
|
|
136
81
|
tier: "LC",
|
|
137
82
|
},
|
|
138
83
|
sandslash: {
|
|
139
|
-
randomBattleMoves: ["bodyslam", "rockslide", "swordsdance"],
|
|
140
|
-
essentialMove: "earthquake",
|
|
141
84
|
tier: "PU",
|
|
142
85
|
},
|
|
143
86
|
nidoranf: {
|
|
144
|
-
randomBattleMoves: ["blizzard", "bodyslam", "thunderbolt"],
|
|
145
|
-
exclusiveMoves: ["doubleedge", "doublekick"],
|
|
146
87
|
tier: "LC",
|
|
147
88
|
},
|
|
148
89
|
nidorina: {
|
|
149
|
-
randomBattleMoves: ["blizzard", "bodyslam", "thunderbolt"],
|
|
150
|
-
exclusiveMoves: ["bubblebeam", "doubleedge", "doublekick"],
|
|
151
90
|
tier: "NFE",
|
|
152
91
|
},
|
|
153
92
|
nidoqueen: {
|
|
154
|
-
randomBattleMoves: ["blizzard", "bodyslam", "thunderbolt"],
|
|
155
|
-
essentialMove: "earthquake",
|
|
156
93
|
tier: "PU",
|
|
157
94
|
},
|
|
158
95
|
nidoranm: {
|
|
159
|
-
randomBattleMoves: ["blizzard", "bodyslam", "thunderbolt"],
|
|
160
|
-
exclusiveMoves: ["doubleedge", "doublekick"],
|
|
161
96
|
tier: "LC",
|
|
162
97
|
},
|
|
163
98
|
nidorino: {
|
|
164
|
-
randomBattleMoves: ["blizzard", "bodyslam", "thunderbolt"],
|
|
165
|
-
exclusiveMoves: ["bubblebeam", "doubleedge", "doublekick"],
|
|
166
99
|
tier: "NFE",
|
|
167
100
|
},
|
|
168
101
|
nidoking: {
|
|
169
|
-
randomBattleMoves: ["blizzard", "bodyslam"],
|
|
170
|
-
essentialMove: "earthquake",
|
|
171
|
-
exclusiveMoves: ["rockslide", "thunder", "thunderbolt"],
|
|
172
102
|
tier: "NU",
|
|
173
103
|
},
|
|
174
104
|
clefairy: {
|
|
175
|
-
randomBattleMoves: ["bodyslam", "thunderbolt", "thunderwave"],
|
|
176
|
-
essentialMove: "blizzard",
|
|
177
|
-
exclusiveMoves: ["counter", "psychic", "seismictoss", "sing", "sing"],
|
|
178
105
|
tier: "LC",
|
|
179
106
|
},
|
|
180
107
|
clefable: {
|
|
181
|
-
randomBattleMoves: ["bodyslam", "thunderbolt", "thunderwave"],
|
|
182
|
-
essentialMove: "blizzard",
|
|
183
|
-
exclusiveMoves: ["counter", "hyperbeam", "psychic", "sing", "sing"],
|
|
184
108
|
tier: "NU",
|
|
185
109
|
},
|
|
186
110
|
vulpix: {
|
|
187
|
-
randomBattleMoves: ["bodyslam", "confuseray", "fireblast"],
|
|
188
|
-
exclusiveMoves: ["flamethrower", "reflect", "substitute"],
|
|
189
111
|
tier: "LC",
|
|
190
112
|
},
|
|
191
113
|
ninetales: {
|
|
192
|
-
randomBattleMoves: ["bodyslam", "confuseray", "fireblast"],
|
|
193
|
-
exclusiveMoves: ["flamethrower", "hyperbeam", "reflect", "substitute"],
|
|
194
114
|
tier: "NU",
|
|
195
115
|
},
|
|
196
116
|
jigglypuff: {
|
|
197
|
-
randomBattleMoves: ["blizzard", "bodyslam", "seismictoss", "thunderwave"],
|
|
198
|
-
exclusiveMoves: ["counter", "sing"],
|
|
199
117
|
tier: "LC",
|
|
200
118
|
},
|
|
201
119
|
wigglytuff: {
|
|
202
|
-
randomBattleMoves: ["blizzard", "bodyslam", "thunderwave"],
|
|
203
|
-
exclusiveMoves: ["counter", "hyperbeam", "sing"],
|
|
204
120
|
tier: "NU",
|
|
205
121
|
},
|
|
206
122
|
zubat: {
|
|
207
|
-
randomBattleMoves: ["confuseray", "doubleedge", "megadrain", "toxic"],
|
|
208
123
|
tier: "LC",
|
|
209
124
|
},
|
|
210
125
|
golbat: {
|
|
211
|
-
randomBattleMoves: ["confuseray", "doubleedge", "hyperbeam", "megadrain"],
|
|
212
126
|
tier: "PU",
|
|
213
127
|
},
|
|
214
128
|
oddish: {
|
|
215
|
-
randomBattleMoves: ["doubleedge", "sleeppowder"],
|
|
216
|
-
essentialMove: "megadrain",
|
|
217
|
-
exclusiveMoves: ["stunspore", "stunspore", "swordsdance"],
|
|
218
129
|
tier: "LC",
|
|
219
130
|
},
|
|
220
131
|
gloom: {
|
|
221
|
-
randomBattleMoves: ["doubleedge", "sleeppowder"],
|
|
222
|
-
essentialMove: "megadrain",
|
|
223
|
-
exclusiveMoves: ["stunspore", "stunspore", "swordsdance"],
|
|
224
132
|
tier: "NFE",
|
|
225
133
|
},
|
|
226
134
|
vileplume: {
|
|
227
|
-
randomBattleMoves: ["bodyslam", "sleeppowder", "stunspore", "swordsdance"],
|
|
228
|
-
essentialMove: "megadrain",
|
|
229
135
|
tier: "PU",
|
|
230
136
|
},
|
|
231
137
|
paras: {
|
|
232
|
-
randomBattleMoves: ["bodyslam", "megadrain"],
|
|
233
|
-
essentialMove: "spore",
|
|
234
|
-
exclusiveMoves: ["growth", "slash", "stunspore", "stunspore", "swordsdance"],
|
|
235
138
|
tier: "LC",
|
|
236
139
|
},
|
|
237
140
|
parasect: {
|
|
238
|
-
randomBattleMoves: ["bodyslam", "megadrain"],
|
|
239
|
-
essentialMove: "spore",
|
|
240
|
-
exclusiveMoves: ["growth", "hyperbeam", "slash", "stunspore", "stunspore", "swordsdance"],
|
|
241
141
|
tier: "PU",
|
|
242
142
|
},
|
|
243
143
|
venonat: {
|
|
244
|
-
randomBattleMoves: ["psychic", "sleeppowder", "stunspore"],
|
|
245
|
-
exclusiveMoves: ["doubleedge", "megadrain", "psywave"],
|
|
246
144
|
tier: "LC",
|
|
247
145
|
},
|
|
248
146
|
venomoth: {
|
|
249
|
-
randomBattleMoves: ["psychic", "sleeppowder", "stunspore"],
|
|
250
|
-
exclusiveMoves: ["doubleedge", "megadrain", "megadrain"],
|
|
251
147
|
tier: "NU",
|
|
252
148
|
},
|
|
253
149
|
diglett: {
|
|
254
|
-
randomBattleMoves: ["bodyslam", "rockslide", "slash"],
|
|
255
|
-
essentialMove: "earthquake",
|
|
256
150
|
tier: "LC",
|
|
257
151
|
},
|
|
258
152
|
dugtrio: {
|
|
259
|
-
randomBattleMoves: ["bodyslam", "rockslide", "slash"],
|
|
260
|
-
essentialMove: "earthquake",
|
|
261
153
|
tier: "UU",
|
|
262
154
|
},
|
|
263
155
|
meowth: {
|
|
264
|
-
randomBattleMoves: ["bodyslam", "bubblebeam"],
|
|
265
|
-
essentialMove: "slash",
|
|
266
|
-
exclusiveMoves: ["thunder", "thunderbolt"],
|
|
267
156
|
tier: "LC",
|
|
268
157
|
},
|
|
269
158
|
persian: {
|
|
270
|
-
randomBattleMoves: ["bodyslam", "bubblebeam"],
|
|
271
|
-
essentialMove: "slash",
|
|
272
|
-
exclusiveMoves: ["hyperbeam", "hyperbeam", "thunder", "thunderbolt"],
|
|
273
159
|
tier: "UU",
|
|
274
160
|
},
|
|
275
161
|
psyduck: {
|
|
276
|
-
randomBattleMoves: ["amnesia", "blizzard"],
|
|
277
|
-
essentialMove: "surf",
|
|
278
|
-
exclusiveMoves: ["bodyslam", "hydropump", "rest", "seismictoss"],
|
|
279
162
|
tier: "LC",
|
|
280
163
|
},
|
|
281
164
|
golduck: {
|
|
282
|
-
randomBattleMoves: ["amnesia", "blizzard"],
|
|
283
|
-
essentialMove: "surf",
|
|
284
|
-
exclusiveMoves: ["bodyslam", "hydropump", "rest", "seismictoss"],
|
|
285
165
|
tier: "NUBL",
|
|
286
166
|
},
|
|
287
167
|
mankey: {
|
|
288
|
-
randomBattleMoves: ["bodyslam", "rockslide", "submission"],
|
|
289
|
-
exclusiveMoves: ["counter", "megakick"],
|
|
290
168
|
tier: "LC",
|
|
291
169
|
},
|
|
292
170
|
primeape: {
|
|
293
|
-
randomBattleMoves: ["bodyslam", "rockslide", "submission"],
|
|
294
|
-
exclusiveMoves: ["counter", "hyperbeam", "hyperbeam"],
|
|
295
171
|
tier: "PU",
|
|
296
172
|
},
|
|
297
173
|
growlithe: {
|
|
298
|
-
randomBattleMoves: ["bodyslam", "fireblast", "flamethrower", "reflect"],
|
|
299
174
|
tier: "LC",
|
|
300
175
|
},
|
|
301
176
|
arcanine: {
|
|
302
|
-
randomBattleMoves: ["bodyslam", "fireblast", "hyperbeam"],
|
|
303
|
-
exclusiveMoves: ["flamethrower", "reflect"],
|
|
304
177
|
tier: "PU",
|
|
305
178
|
},
|
|
306
179
|
poliwag: {
|
|
307
|
-
randomBattleMoves: ["blizzard", "surf"],
|
|
308
|
-
essentialMove: "amnesia",
|
|
309
|
-
exclusiveMoves: ["hypnosis", "hypnosis", "psychic"],
|
|
310
180
|
tier: "LC",
|
|
311
181
|
},
|
|
312
182
|
poliwhirl: {
|
|
313
|
-
randomBattleMoves: ["blizzard", "surf"],
|
|
314
|
-
essentialMove: "amnesia",
|
|
315
|
-
exclusiveMoves: ["counter", "hypnosis", "hypnosis", "psychic"],
|
|
316
183
|
tier: "NUBL",
|
|
317
184
|
},
|
|
318
185
|
poliwrath: {
|
|
319
|
-
randomBattleMoves: ["blizzard", "bodyslam", "earthquake", "submission"],
|
|
320
|
-
essentialMove: "surf",
|
|
321
|
-
exclusiveMoves: ["hypnosis", "hypnosis", "psychic"],
|
|
322
|
-
comboMoves: ["amnesia", "blizzard"],
|
|
323
186
|
tier: "NUBL",
|
|
324
187
|
},
|
|
325
188
|
abra: {
|
|
326
|
-
randomBattleMoves: ["psychic", "seismictoss", "thunderwave"],
|
|
327
|
-
exclusiveMoves: ["counter", "reflect"],
|
|
328
189
|
tier: "LC",
|
|
329
190
|
},
|
|
330
191
|
kadabra: {
|
|
331
|
-
randomBattleMoves: ["psychic", "recover", "thunderwave"],
|
|
332
|
-
exclusiveMoves: ["counter", "reflect", "reflect", "seismictoss", "seismictoss"],
|
|
333
192
|
tier: "UU",
|
|
334
193
|
},
|
|
335
194
|
alakazam: {
|
|
336
|
-
randomBattleMoves: ["psychic", "recover", "thunderwave"],
|
|
337
|
-
exclusiveMoves: ["counter", "reflect", "reflect", "seismictoss", "seismictoss"],
|
|
338
195
|
tier: "OU",
|
|
339
196
|
},
|
|
340
197
|
machop: {
|
|
341
|
-
randomBattleMoves: ["bodyslam", "earthquake", "submission"],
|
|
342
|
-
exclusiveMoves: ["counter", "rockslide", "rockslide"],
|
|
343
198
|
tier: "LC",
|
|
344
199
|
},
|
|
345
200
|
machoke: {
|
|
346
|
-
randomBattleMoves: ["bodyslam", "earthquake", "submission"],
|
|
347
|
-
exclusiveMoves: ["counter", "rockslide", "rockslide"],
|
|
348
201
|
tier: "NFE",
|
|
349
202
|
},
|
|
350
203
|
machamp: {
|
|
351
|
-
randomBattleMoves: ["bodyslam", "earthquake", "submission"],
|
|
352
|
-
exclusiveMoves: ["counter", "hyperbeam", "rockslide", "rockslide"],
|
|
353
204
|
tier: "PU",
|
|
354
205
|
},
|
|
355
206
|
bellsprout: {
|
|
356
|
-
randomBattleMoves: ["doubleedge", "sleeppowder", "stunspore", "swordsdance"],
|
|
357
|
-
essentialMove: "razorleaf",
|
|
358
207
|
tier: "LC",
|
|
359
208
|
},
|
|
360
209
|
weepinbell: {
|
|
361
|
-
randomBattleMoves: ["doubleedge", "sleeppowder", "stunspore", "swordsdance"],
|
|
362
|
-
essentialMove: "razorleaf",
|
|
363
210
|
tier: "NFE",
|
|
364
211
|
},
|
|
365
212
|
victreebel: {
|
|
366
|
-
randomBattleMoves: ["bodyslam", "sleeppowder", "stunspore"],
|
|
367
|
-
essentialMove: "razorleaf",
|
|
368
|
-
comboMoves: ["hyperbeam", "swordsdance"],
|
|
369
213
|
tier: "UU",
|
|
370
214
|
},
|
|
371
215
|
tentacool: {
|
|
372
|
-
randomBattleMoves: ["barrier", "hydropump", "surf"],
|
|
373
|
-
essentialMove: "blizzard",
|
|
374
|
-
exclusiveMoves: ["megadrain", "megadrain"],
|
|
375
|
-
comboMoves: ["hydropump", "surf"],
|
|
376
216
|
tier: "LC",
|
|
377
217
|
},
|
|
378
218
|
tentacruel: {
|
|
379
|
-
randomBattleMoves: ["blizzard", "hydropump", "hyperbeam", "surf"],
|
|
380
|
-
essentialMove: "swordsdance",
|
|
381
219
|
tier: "UU",
|
|
382
220
|
},
|
|
383
221
|
geodude: {
|
|
384
|
-
randomBattleMoves: ["bodyslam", "earthquake", "explosion", "rockslide"],
|
|
385
222
|
tier: "LC",
|
|
386
223
|
},
|
|
387
224
|
graveler: {
|
|
388
|
-
randomBattleMoves: ["bodyslam", "earthquake", "explosion", "rockslide"],
|
|
389
225
|
tier: "NFE",
|
|
390
226
|
},
|
|
391
227
|
golem: {
|
|
392
|
-
randomBattleMoves: ["bodyslam", "earthquake", "explosion", "rockslide"],
|
|
393
228
|
tier: "NU",
|
|
394
229
|
},
|
|
395
230
|
ponyta: {
|
|
396
|
-
randomBattleMoves: ["agility", "bodyslam", "fireblast", "reflect"],
|
|
397
231
|
tier: "LC",
|
|
398
232
|
},
|
|
399
233
|
rapidash: {
|
|
400
|
-
randomBattleMoves: ["agility", "bodyslam", "fireblast", "hyperbeam"],
|
|
401
234
|
tier: "PU",
|
|
402
235
|
},
|
|
403
236
|
slowpoke: {
|
|
404
|
-
randomBattleMoves: ["earthquake", "surf"],
|
|
405
|
-
essentialMove: "thunderwave",
|
|
406
|
-
exclusiveMoves: ["blizzard", "psychic", "rest"],
|
|
407
|
-
comboMoves: ["amnesia", "surf"],
|
|
408
237
|
tier: "LC",
|
|
409
238
|
},
|
|
410
239
|
slowbro: {
|
|
411
|
-
randomBattleMoves: ["amnesia", "surf", "thunderwave"],
|
|
412
|
-
exclusiveMoves: ["blizzard", "psychic", "rest", "rest"],
|
|
413
240
|
tier: "OU",
|
|
414
241
|
},
|
|
415
242
|
magnemite: {
|
|
416
|
-
randomBattleMoves: ["thunder", "thunderbolt", "thunderwave"],
|
|
417
|
-
exclusiveMoves: ["doubleedge", "mimic", "substitute", "toxic"],
|
|
418
243
|
tier: "LC",
|
|
419
244
|
},
|
|
420
245
|
magneton: {
|
|
421
|
-
randomBattleMoves: ["thunder", "thunderbolt", "thunderwave"],
|
|
422
|
-
exclusiveMoves: ["doubleedge", "hyperbeam", "hyperbeam", "mimic", "substitute", "toxic"],
|
|
423
246
|
tier: "PU",
|
|
424
247
|
},
|
|
425
248
|
farfetchd: {
|
|
426
|
-
randomBattleMoves: ["agility", "bodyslam", "swordsdance"],
|
|
427
|
-
essentialMove: "slash",
|
|
428
249
|
tier: "PU",
|
|
429
250
|
},
|
|
430
251
|
doduo: {
|
|
431
|
-
randomBattleMoves: ["agility", "bodyslam", "doubleedge", "drillpeck"],
|
|
432
252
|
tier: "LC",
|
|
433
253
|
},
|
|
434
254
|
dodrio: {
|
|
435
|
-
randomBattleMoves: ["agility", "bodyslam", "drillpeck", "hyperbeam"],
|
|
436
255
|
tier: "UU",
|
|
437
256
|
},
|
|
438
257
|
seel: {
|
|
439
|
-
randomBattleMoves: ["blizzard", "bodyslam", "surf"],
|
|
440
|
-
exclusiveMoves: ["mimic", "rest"],
|
|
441
258
|
tier: "LC",
|
|
442
259
|
},
|
|
443
260
|
dewgong: {
|
|
444
|
-
randomBattleMoves: ["blizzard", "bodyslam", "surf"],
|
|
445
|
-
exclusiveMoves: ["hyperbeam", "mimic", "rest", "rest"],
|
|
446
261
|
tier: "UU",
|
|
447
262
|
},
|
|
448
263
|
grimer: {
|
|
449
|
-
randomBattleMoves: ["bodyslam", "sludge"],
|
|
450
|
-
essentialMove: "explosion",
|
|
451
|
-
exclusiveMoves: ["fireblast", "megadrain", "megadrain", "screech"],
|
|
452
264
|
tier: "LC",
|
|
453
265
|
},
|
|
454
266
|
muk: {
|
|
455
|
-
randomBattleMoves: ["bodyslam", "sludge"],
|
|
456
|
-
essentialMove: "explosion",
|
|
457
|
-
exclusiveMoves: ["fireblast", "hyperbeam", "megadrain", "megadrain"],
|
|
458
267
|
tier: "PU",
|
|
459
268
|
},
|
|
460
269
|
shellder: {
|
|
461
|
-
randomBattleMoves: ["blizzard", "doubleedge", "explosion", "surf"],
|
|
462
270
|
tier: "LC",
|
|
463
271
|
},
|
|
464
272
|
cloyster: {
|
|
465
|
-
randomBattleMoves: ["blizzard", "explosion", "surf"],
|
|
466
|
-
exclusiveMoves: ["doubleedge", "hyperbeam", "hyperbeam"],
|
|
467
273
|
tier: "OU",
|
|
468
274
|
},
|
|
469
275
|
gastly: {
|
|
470
|
-
randomBattleMoves: ["explosion", "megadrain", "nightshade", "psychic"],
|
|
471
|
-
essentialMove: "thunderbolt",
|
|
472
|
-
exclusiveMoves: ["confuseray", "hypnosis", "hypnosis"],
|
|
473
276
|
tier: "LC",
|
|
474
277
|
},
|
|
475
278
|
haunter: {
|
|
476
|
-
randomBattleMoves: ["explosion", "megadrain", "nightshade", "psychic"],
|
|
477
|
-
essentialMove: "thunderbolt",
|
|
478
|
-
exclusiveMoves: ["confuseray", "hypnosis", "hypnosis"],
|
|
479
279
|
tier: "UU",
|
|
480
280
|
},
|
|
481
281
|
gengar: {
|
|
482
|
-
randomBattleMoves: ["explosion", "megadrain", "nightshade", "psychic"],
|
|
483
|
-
essentialMove: "thunderbolt",
|
|
484
|
-
exclusiveMoves: ["confuseray", "hypnosis", "hypnosis"],
|
|
485
282
|
tier: "OU",
|
|
486
283
|
},
|
|
487
284
|
onix: {
|
|
488
|
-
randomBattleMoves: ["bodyslam", "earthquake", "explosion", "rockslide"],
|
|
489
285
|
tier: "PU",
|
|
490
286
|
},
|
|
491
287
|
drowzee: {
|
|
492
|
-
randomBattleMoves: ["hypnosis", "psychic", "thunderwave"],
|
|
493
|
-
exclusiveMoves: ["counter", "reflect", "rest", "seismictoss", "seismictoss"],
|
|
494
288
|
tier: "LC",
|
|
495
289
|
},
|
|
496
290
|
hypno: {
|
|
497
|
-
randomBattleMoves: ["hypnosis", "psychic", "thunderwave"],
|
|
498
|
-
exclusiveMoves: ["counter", "reflect", "rest", "rest", "seismictoss", "seismictoss"],
|
|
499
291
|
tier: "UU",
|
|
500
292
|
},
|
|
501
293
|
krabby: {
|
|
502
|
-
randomBattleMoves: ["blizzard", "bodyslam", "crabhammer", "swordsdance"],
|
|
503
294
|
tier: "LC",
|
|
504
295
|
},
|
|
505
296
|
kingler: {
|
|
506
|
-
randomBattleMoves: ["bodyslam", "crabhammer", "hyperbeam", "swordsdance"],
|
|
507
297
|
tier: "NU",
|
|
508
298
|
},
|
|
509
299
|
voltorb: {
|
|
510
|
-
randomBattleMoves: ["explosion", "thunderbolt", "thunderwave"],
|
|
511
|
-
exclusiveMoves: ["screech", "thunder", "toxic"],
|
|
512
300
|
tier: "LC",
|
|
513
301
|
},
|
|
514
302
|
electrode: {
|
|
515
|
-
randomBattleMoves: ["explosion", "thunderbolt", "thunderwave"],
|
|
516
|
-
exclusiveMoves: ["hyperbeam", "screech", "thunder", "toxic"],
|
|
517
303
|
tier: "PU",
|
|
518
304
|
},
|
|
519
305
|
exeggcute: {
|
|
520
|
-
randomBattleMoves: ["sleeppowder", "stunspore"],
|
|
521
|
-
essentialMove: "psychic",
|
|
522
|
-
exclusiveMoves: ["doubleedge", "explosion", "explosion"],
|
|
523
306
|
tier: "NU",
|
|
524
307
|
},
|
|
525
308
|
exeggutor: {
|
|
526
|
-
randomBattleMoves: ["explosion", "psychic", "sleeppowder"],
|
|
527
|
-
exclusiveMoves: ["doubleedge", "eggbomb", "hyperbeam", "megadrain", "megadrain", "stunspore", "stunspore", "stunspore"],
|
|
528
309
|
tier: "OU",
|
|
529
310
|
},
|
|
530
311
|
cubone: {
|
|
531
|
-
randomBattleMoves: ["blizzard", "bodyslam", "earthquake", "seismictoss"],
|
|
532
312
|
tier: "LC",
|
|
533
313
|
},
|
|
534
314
|
marowak: {
|
|
535
|
-
randomBattleMoves: ["blizzard", "bodyslam", "earthquake", "seismictoss"],
|
|
536
315
|
tier: "PU",
|
|
537
316
|
},
|
|
538
317
|
hitmonlee: {
|
|
539
|
-
randomBattleMoves: ["bodyslam", "highjumpkick", "seismictoss"],
|
|
540
|
-
exclusiveMoves: ["counter", "counter", "meditate"],
|
|
541
318
|
tier: "PU",
|
|
542
319
|
},
|
|
543
320
|
hitmonchan: {
|
|
544
|
-
randomBattleMoves: ["bodyslam", "seismictoss", "submission"],
|
|
545
|
-
exclusiveMoves: ["agility", "counter", "counter"],
|
|
546
321
|
tier: "PU",
|
|
547
322
|
},
|
|
548
323
|
lickitung: {
|
|
549
|
-
randomBattleMoves: ["hyperbeam", "swordsdance"],
|
|
550
|
-
essentialMove: "bodyslam",
|
|
551
|
-
exclusiveMoves: ["blizzard", "earthquake", "earthquake", "earthquake"],
|
|
552
324
|
tier: "PU",
|
|
553
325
|
},
|
|
554
326
|
koffing: {
|
|
555
|
-
randomBattleMoves: ["explosion", "fireblast", "sludge", "thunderbolt"],
|
|
556
327
|
tier: "LC",
|
|
557
328
|
},
|
|
558
329
|
weezing: {
|
|
559
|
-
randomBattleMoves: ["explosion", "fireblast", "sludge", "thunderbolt"],
|
|
560
330
|
tier: "PU",
|
|
561
331
|
},
|
|
562
332
|
rhyhorn: {
|
|
563
|
-
randomBattleMoves: ["bodyslam", "earthquake", "rockslide", "substitute"],
|
|
564
333
|
tier: "LC",
|
|
565
334
|
},
|
|
566
335
|
rhydon: {
|
|
567
|
-
randomBattleMoves: ["bodyslam", "earthquake", "rockslide"],
|
|
568
|
-
exclusiveMoves: ["hyperbeam", "substitute", "substitute"],
|
|
569
336
|
tier: "OU",
|
|
570
337
|
},
|
|
571
338
|
chansey: {
|
|
572
|
-
randomBattleMoves: ["icebeam", "thunderwave"],
|
|
573
|
-
essentialMove: "softboiled",
|
|
574
|
-
exclusiveMoves: ["counter", "reflect", "seismictoss", "sing", "thunderbolt", "thunderbolt", "thunderbolt"],
|
|
575
339
|
tier: "OU",
|
|
576
340
|
},
|
|
577
341
|
tangela: {
|
|
578
|
-
randomBattleMoves: ["bodyslam", "sleeppowder"],
|
|
579
|
-
essentialMove: "megadrain",
|
|
580
|
-
exclusiveMoves: ["growth", "stunspore", "stunspore", "stunspore", "swordsdance", "swordsdance"],
|
|
581
342
|
tier: "UU",
|
|
582
343
|
},
|
|
583
344
|
kangaskhan: {
|
|
584
|
-
randomBattleMoves: ["bodyslam", "earthquake", "hyperbeam"],
|
|
585
|
-
exclusiveMoves: ["counter", "rockslide", "rockslide", "surf"],
|
|
586
345
|
tier: "UU",
|
|
587
346
|
},
|
|
588
347
|
horsea: {
|
|
589
|
-
randomBattleMoves: ["agility", "blizzard"],
|
|
590
|
-
essentialMove: "surf",
|
|
591
|
-
exclusiveMoves: ["doubleedge", "hydropump", "smokescreen"],
|
|
592
348
|
tier: "LC",
|
|
593
349
|
},
|
|
594
350
|
seadra: {
|
|
595
|
-
randomBattleMoves: ["agility", "blizzard"],
|
|
596
|
-
essentialMove: "surf",
|
|
597
|
-
exclusiveMoves: ["doubleedge", "hydropump", "hyperbeam", "smokescreen"],
|
|
598
351
|
tier: "NU",
|
|
599
352
|
},
|
|
600
353
|
goldeen: {
|
|
601
|
-
randomBattleMoves: ["agility", "blizzard", "doubleedge", "surf"],
|
|
602
354
|
tier: "LC",
|
|
603
355
|
},
|
|
604
356
|
seaking: {
|
|
605
|
-
randomBattleMoves: ["blizzard", "doubleedge", "surf"],
|
|
606
|
-
exclusiveMoves: ["agility", "agility", "hyperbeam"],
|
|
607
357
|
tier: "PU",
|
|
608
358
|
},
|
|
609
359
|
staryu: {
|
|
610
|
-
randomBattleMoves: ["blizzard", "thunderbolt", "thunderwave"],
|
|
611
|
-
essentialMove: "recover",
|
|
612
|
-
exclusiveMoves: ["hydropump", "surf", "surf"],
|
|
613
360
|
tier: "LC",
|
|
614
361
|
},
|
|
615
362
|
starmie: {
|
|
616
|
-
randomBattleMoves: ["blizzard", "thunderbolt", "thunderwave"],
|
|
617
|
-
essentialMove: "recover",
|
|
618
|
-
exclusiveMoves: ["hydropump", "psychic", "surf", "surf"],
|
|
619
363
|
tier: "OU",
|
|
620
364
|
},
|
|
621
365
|
mrmime: {
|
|
622
|
-
randomBattleMoves: ["psychic", "seismictoss", "thunderbolt", "thunderwave"],
|
|
623
366
|
tier: "NU",
|
|
624
367
|
},
|
|
625
368
|
scyther: {
|
|
626
|
-
randomBattleMoves: ["agility", "hyperbeam", "slash", "swordsdance"],
|
|
627
369
|
tier: "PU",
|
|
628
370
|
},
|
|
629
371
|
jynx: {
|
|
630
|
-
randomBattleMoves: ["blizzard", "lovelykiss", "psychic"],
|
|
631
|
-
exclusiveMoves: ["bodyslam", "counter", "counter", "mimic", "seismictoss"],
|
|
632
372
|
tier: "OU",
|
|
633
373
|
},
|
|
634
374
|
electabuzz: {
|
|
635
|
-
randomBattleMoves: ["psychic", "seismictoss", "thunderbolt", "thunderwave"],
|
|
636
375
|
tier: "UU",
|
|
637
376
|
},
|
|
638
377
|
magmar: {
|
|
639
|
-
randomBattleMoves: ["bodyslam", "confuseray", "fireblast"],
|
|
640
|
-
exclusiveMoves: ["hyperbeam", "psychic"],
|
|
641
378
|
tier: "PU",
|
|
642
379
|
},
|
|
643
380
|
pinsir: {
|
|
644
|
-
randomBattleMoves: ["bodyslam", "hyperbeam", "swordsdance"],
|
|
645
|
-
exclusiveMoves: ["seismictoss", "submission", "submission"],
|
|
646
381
|
tier: "PU",
|
|
647
382
|
},
|
|
648
383
|
tauros: {
|
|
649
|
-
randomBattleMoves: ["bodyslam", "earthquake", "hyperbeam"],
|
|
650
|
-
exclusiveMoves: ["blizzard", "blizzard", "blizzard", "thunderbolt"],
|
|
651
384
|
tier: "OU",
|
|
652
385
|
},
|
|
653
386
|
magikarp: {
|
|
654
387
|
tier: "LC",
|
|
655
388
|
},
|
|
656
389
|
gyarados: {
|
|
657
|
-
randomBattleMoves: ["blizzard", "bodyslam", "hyperbeam", "thunderbolt"],
|
|
658
|
-
exclusiveMoves: ["hydropump", "surf"],
|
|
659
390
|
tier: "UU",
|
|
660
391
|
},
|
|
661
392
|
lapras: {
|
|
662
|
-
randomBattleMoves: ["bodyslam", "confuseray", "rest", "sing", "surf"],
|
|
663
|
-
essentialMove: "blizzard",
|
|
664
|
-
exclusiveMoves: ["thunderbolt", "thunderbolt"],
|
|
665
393
|
tier: "UU",
|
|
666
394
|
},
|
|
667
395
|
ditto: {
|
|
668
|
-
randomBattleMoves: ["transform"],
|
|
669
396
|
tier: "PU",
|
|
670
397
|
},
|
|
671
398
|
eevee: {
|
|
672
|
-
randomBattleMoves: ["doubleedge", "quickattack", "reflect"],
|
|
673
|
-
essentialMove: "bodyslam",
|
|
674
|
-
exclusiveMoves: ["bide", "mimic", "sandattack", "tailwhip"],
|
|
675
399
|
tier: "LC",
|
|
676
400
|
},
|
|
677
401
|
vaporeon: {
|
|
678
|
-
randomBattleMoves: ["blizzard", "rest"],
|
|
679
|
-
essentialMove: "surf",
|
|
680
|
-
exclusiveMoves: ["bodyslam", "hydropump", "mimic"],
|
|
681
402
|
tier: "UU",
|
|
682
403
|
},
|
|
683
404
|
jolteon: {
|
|
684
|
-
randomBattleMoves: ["bodyslam", "thunderbolt", "thunderwave"],
|
|
685
|
-
exclusiveMoves: ["agility", "agility", "doublekick", "pinmissile", "pinmissile"],
|
|
686
405
|
tier: "OU",
|
|
687
406
|
},
|
|
688
407
|
flareon: {
|
|
689
|
-
randomBattleMoves: ["bodyslam", "fireblast", "hyperbeam", "quickattack"],
|
|
690
408
|
tier: "PU",
|
|
691
409
|
},
|
|
692
410
|
porygon: {
|
|
693
|
-
randomBattleMoves: ["blizzard", "thunderwave"],
|
|
694
|
-
essentialMove: "recover",
|
|
695
|
-
exclusiveMoves: ["doubleedge", "psychic", "thunderbolt", "triattack"],
|
|
696
411
|
tier: "NU",
|
|
697
412
|
},
|
|
698
413
|
omanyte: {
|
|
699
|
-
randomBattleMoves: ["bodyslam", "hydropump", "rest", "surf"],
|
|
700
|
-
essentialMove: "blizzard",
|
|
701
414
|
tier: "LC",
|
|
702
415
|
},
|
|
703
416
|
omastar: {
|
|
704
|
-
randomBattleMoves: ["blizzard", "hydropump", "seismictoss", "surf"],
|
|
705
|
-
exclusiveMoves: ["bodyslam", "rest"],
|
|
706
417
|
tier: "UU",
|
|
707
418
|
},
|
|
708
419
|
kabuto: {
|
|
709
|
-
randomBattleMoves: ["blizzard", "bodyslam", "slash", "surf"],
|
|
710
420
|
tier: "LC",
|
|
711
421
|
},
|
|
712
422
|
kabutops: {
|
|
713
|
-
randomBattleMoves: ["hyperbeam", "surf", "swordsdance"],
|
|
714
|
-
exclusiveMoves: ["bodyslam", "slash"],
|
|
715
423
|
tier: "NU",
|
|
716
424
|
},
|
|
717
425
|
aerodactyl: {
|
|
718
|
-
randomBattleMoves: ["doubleedge", "fireblast", "hyperbeam", "skyattack"],
|
|
719
426
|
tier: "UU",
|
|
720
427
|
},
|
|
721
428
|
snorlax: {
|
|
722
|
-
randomBattleMoves: ["bodyslam", "rest", "selfdestruct", "thunderbolt"],
|
|
723
|
-
essentialMove: "amnesia",
|
|
724
|
-
exclusiveMoves: ["blizzard", "blizzard"],
|
|
725
|
-
comboMoves: ["bodyslam", "earthquake", "hyperbeam", "selfdestruct"],
|
|
726
429
|
tier: "OU",
|
|
727
430
|
},
|
|
728
431
|
articuno: {
|
|
729
|
-
randomBattleMoves: ["agility", "hyperbeam", "icebeam", "mimic", "reflect"],
|
|
730
|
-
essentialMove: "blizzard",
|
|
731
|
-
comboMoves: ["icebeam", "reflect", "rest"],
|
|
732
432
|
tier: "UU",
|
|
733
433
|
},
|
|
734
434
|
zapdos: {
|
|
735
|
-
randomBattleMoves: ["agility", "drillpeck", "thunderbolt", "thunderwave"],
|
|
736
435
|
tier: "OU",
|
|
737
436
|
},
|
|
738
437
|
moltres: {
|
|
739
|
-
randomBattleMoves: ["agility", "fireblast", "hyperbeam"],
|
|
740
|
-
exclusiveMoves: ["doubleedge", "reflect", "skyattack"],
|
|
741
438
|
tier: "NU",
|
|
742
439
|
},
|
|
743
440
|
dratini: {
|
|
744
|
-
randomBattleMoves: ["bodyslam", "hyperbeam", "thunderbolt", "thunderwave"],
|
|
745
|
-
essentialMove: "blizzard",
|
|
746
441
|
tier: "LC",
|
|
747
442
|
},
|
|
748
443
|
dragonair: {
|
|
749
|
-
randomBattleMoves: ["bodyslam", "hyperbeam", "thunderbolt", "thunderwave"],
|
|
750
|
-
essentialMove: "blizzard",
|
|
751
444
|
tier: "NFE",
|
|
752
445
|
},
|
|
753
446
|
dragonite: {
|
|
754
|
-
randomBattleMoves: ["bodyslam", "hyperbeam", "thunderbolt", "thunderwave"],
|
|
755
|
-
essentialMove: "blizzard",
|
|
756
447
|
tier: "UU",
|
|
757
448
|
},
|
|
758
449
|
mewtwo: {
|
|
759
|
-
randomBattleMoves: ["blizzard", "recover", "thunderbolt"],
|
|
760
|
-
essentialMove: "amnesia",
|
|
761
|
-
exclusiveMoves: ["psychic", "psychic"],
|
|
762
|
-
comboMoves: ["barrier", "rest"],
|
|
763
450
|
tier: "Uber",
|
|
764
451
|
},
|
|
765
452
|
mew: {
|
|
766
|
-
randomBattleMoves: ["blizzard", "earthquake", "thunderbolt", "thunderwave"],
|
|
767
|
-
essentialMove: "psychic",
|
|
768
|
-
exclusiveMoves: ["explosion", "softboiled", "softboiled"],
|
|
769
|
-
comboMoves: ["earthquake", "hyperbeam", "swordsdance"],
|
|
770
453
|
tier: "Uber",
|
|
771
454
|
},
|
|
772
455
|
missingno: {
|