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