@pkmn/sim 0.7.26 → 0.7.28

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