@pkmn/sim 0.5.3 → 0.5.7

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