@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.
- package/build/cjs/config/formats.js +27 -9
- package/build/cjs/config/formats.js.map +1 -1
- package/build/cjs/data/conditions.js +5 -1
- package/build/cjs/data/conditions.js.map +1 -1
- package/build/cjs/data/formats-data.js +3 -3
- package/build/cjs/data/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen1/formats-data.js +0 -317
- package/build/cjs/data/mods/gen1/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen1/moves.js +2 -2
- package/build/cjs/data/mods/gen1/scripts.js +1 -2
- package/build/cjs/data/mods/gen1/scripts.js.map +1 -1
- package/build/cjs/data/mods/gen2/formats-data.js +0 -140
- package/build/cjs/data/mods/gen2/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen3/formats-data.js +0 -220
- package/build/cjs/data/mods/gen3/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen4/formats-data.js +18 -333
- package/build/cjs/data/mods/gen4/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen5/formats-data.js +19 -430
- package/build/cjs/data/mods/gen5/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen6/formats-data.js +26 -1008
- package/build/cjs/data/mods/gen6/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen7/formats-data.js +25 -1193
- package/build/cjs/data/mods/gen7/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen8/formats-data.js +5 -1861
- package/build/cjs/data/mods/gen8/formats-data.js.map +1 -1
- package/build/cjs/data/moves.js +1 -6
- package/build/cjs/data/moves.js.map +1 -1
- package/build/cjs/data/rulesets.js +1 -1
- package/build/cjs/data/rulesets.js.map +1 -1
- package/build/cjs/data/text/moves.js +3 -3
- package/build/cjs/data/text/moves.js.map +1 -1
- package/build/cjs/sim/tools/exhaustive-runner.js +55 -27
- package/build/cjs/sim/tools/exhaustive-runner.js.map +1 -1
- package/build/esm/config/formats.mjs +27 -9
- package/build/esm/config/formats.mjs.map +1 -1
- package/build/esm/data/conditions.mjs +5 -1
- package/build/esm/data/conditions.mjs.map +1 -1
- package/build/esm/data/formats-data.mjs +3 -3
- package/build/esm/data/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen1/formats-data.mjs +0 -317
- package/build/esm/data/mods/gen1/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen1/moves.mjs +2 -2
- package/build/esm/data/mods/gen1/scripts.mjs +1 -2
- package/build/esm/data/mods/gen1/scripts.mjs.map +1 -1
- package/build/esm/data/mods/gen2/formats-data.mjs +0 -140
- package/build/esm/data/mods/gen2/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen3/formats-data.mjs +0 -220
- package/build/esm/data/mods/gen3/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen4/formats-data.mjs +18 -333
- package/build/esm/data/mods/gen4/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen5/formats-data.mjs +19 -430
- package/build/esm/data/mods/gen5/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen6/formats-data.mjs +26 -1008
- package/build/esm/data/mods/gen6/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen7/formats-data.mjs +25 -1193
- package/build/esm/data/mods/gen7/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen8/formats-data.mjs +5 -1861
- package/build/esm/data/mods/gen8/formats-data.mjs.map +1 -1
- package/build/esm/data/moves.mjs +1 -6
- package/build/esm/data/moves.mjs.map +1 -1
- package/build/esm/data/rulesets.mjs +1 -1
- package/build/esm/data/rulesets.mjs.map +1 -1
- package/build/esm/data/text/moves.mjs +3 -3
- package/build/esm/data/text/moves.mjs.map +1 -1
- package/build/esm/sim/tools/exhaustive-runner.mjs +55 -27
- package/build/esm/sim/tools/exhaustive-runner.mjs.map +1 -1
- package/build/types/sim/exported-global-types.d.ts +4 -3
- package/build/types/sim/global-types.d.ts +4 -3
- package/build/types/sim/tools/exhaustive-runner.d.ts +4 -2
- package/package.json +1 -1
|
@@ -9,8 +9,6 @@ exports.FormatsData = {
|
|
|
9
9
|
tier: "NFE",
|
|
10
10
|
},
|
|
11
11
|
venusaur: {
|
|
12
|
-
randomBattleMoves: ["gigadrain", "leechseed", "sleeppowder", "sludgebomb", "substitute"],
|
|
13
|
-
randomBattleLevel: 82,
|
|
14
12
|
tier: "UU",
|
|
15
13
|
doublesTier: "(DUU)",
|
|
16
14
|
natDexTier: "RU",
|
|
@@ -21,8 +19,6 @@ exports.FormatsData = {
|
|
|
21
19
|
natDexTier: "UUBL",
|
|
22
20
|
},
|
|
23
21
|
venusaurgmax: {
|
|
24
|
-
randomDoubleBattleMoves: ["earthpower", "energyball", "leechseed", "protect", "sleeppowder", "sludgebomb"],
|
|
25
|
-
randomDoubleBattleLevel: 80,
|
|
26
22
|
isNonstandard: "Gigantamax",
|
|
27
23
|
tier: "AG",
|
|
28
24
|
doublesTier: "(DUber)",
|
|
@@ -35,11 +31,6 @@ exports.FormatsData = {
|
|
|
35
31
|
tier: "NFE",
|
|
36
32
|
},
|
|
37
33
|
charizard: {
|
|
38
|
-
randomBattleMoves: ["airslash", "earthquake", "fireblast", "focusblast", "roost"],
|
|
39
|
-
randomBattleLevel: 82,
|
|
40
|
-
randomDoubleBattleMoves: ["airslash", "heatwave", "overheat", "protect", "scorchingsands", "tailwind"],
|
|
41
|
-
randomDoubleBattleLevel: 80,
|
|
42
|
-
randomBattleNoDynamaxMoves: ["defog", "earthquake", "fireblast", "hurricane", "roost", "toxic"],
|
|
43
34
|
tier: "PU",
|
|
44
35
|
doublesTier: "(DUU)",
|
|
45
36
|
natDexTier: "RU",
|
|
@@ -55,8 +46,6 @@ exports.FormatsData = {
|
|
|
55
46
|
natDexTier: "OU",
|
|
56
47
|
},
|
|
57
48
|
charizardgmax: {
|
|
58
|
-
randomDoubleBattleMoves: ["airslash", "fireblast", "focusblast", "heatwave", "protect", "tailwind"],
|
|
59
|
-
randomDoubleBattleLevel: 80,
|
|
60
49
|
isNonstandard: "Gigantamax",
|
|
61
50
|
tier: "AG",
|
|
62
51
|
doublesTier: "(DUber)",
|
|
@@ -69,10 +58,6 @@ exports.FormatsData = {
|
|
|
69
58
|
tier: "NFE",
|
|
70
59
|
},
|
|
71
60
|
blastoise: {
|
|
72
|
-
randomBattleMoves: ["earthquake", "hydropump", "icebeam", "shellsmash"],
|
|
73
|
-
randomBattleLevel: 82,
|
|
74
|
-
randomDoubleBattleMoves: ["icebeam", "muddywater", "protect", "shellsmash"],
|
|
75
|
-
randomDoubleBattleLevel: 80,
|
|
76
61
|
tier: "NUBL",
|
|
77
62
|
doublesTier: "DUU",
|
|
78
63
|
natDexTier: "RU",
|
|
@@ -83,10 +68,6 @@ exports.FormatsData = {
|
|
|
83
68
|
natDexTier: "Uber",
|
|
84
69
|
},
|
|
85
70
|
blastoisegmax: {
|
|
86
|
-
randomBattleMoves: ["icebeam", "protect", "rapidspin", "scald", "toxic"],
|
|
87
|
-
randomBattleLevel: 82,
|
|
88
|
-
randomDoubleBattleMoves: ["fakeout", "flipturn", "followme", "icywind", "lifedew", "muddywater"],
|
|
89
|
-
randomDoubleBattleLevel: 80,
|
|
90
71
|
isNonstandard: "Gigantamax",
|
|
91
72
|
tier: "AG",
|
|
92
73
|
doublesTier: "(DUber)",
|
|
@@ -99,19 +80,11 @@ exports.FormatsData = {
|
|
|
99
80
|
tier: "NFE",
|
|
100
81
|
},
|
|
101
82
|
butterfree: {
|
|
102
|
-
randomBattleMoves: ["energyball", "hurricane", "quiverdance", "sleeppowder"],
|
|
103
|
-
randomBattleLevel: 87,
|
|
104
|
-
randomDoubleBattleMoves: ["hurricane", "pollenpuff", "protect", "ragepowder", "sleeppowder", "tailwind"],
|
|
105
|
-
randomDoubleBattleLevel: 88,
|
|
106
83
|
tier: "(PU)",
|
|
107
84
|
doublesTier: "(DUU)",
|
|
108
85
|
natDexTier: "RU",
|
|
109
86
|
},
|
|
110
87
|
butterfreegmax: {
|
|
111
|
-
randomBattleMoves: ["airslash", "bugbuzz", "quiverdance", "sleeppowder"],
|
|
112
|
-
randomBattleLevel: 87,
|
|
113
|
-
randomDoubleBattleMoves: ["hurricane", "pollenpuff", "protect", "quiverdance", "sleeppowder"],
|
|
114
|
-
randomDoubleBattleLevel: 88,
|
|
115
88
|
isNonstandard: "Gigantamax",
|
|
116
89
|
tier: "AG",
|
|
117
90
|
doublesTier: "(DUber)",
|
|
@@ -210,10 +183,6 @@ exports.FormatsData = {
|
|
|
210
183
|
tier: "Illegal",
|
|
211
184
|
},
|
|
212
185
|
pikachu: {
|
|
213
|
-
randomBattleMoves: ["irontail", "knockoff", "surf", "voltswitch", "volttackle"],
|
|
214
|
-
randomBattleLevel: 92,
|
|
215
|
-
randomDoubleBattleMoves: ["fakeout", "grassknot", "knockoff", "protect", "volttackle"],
|
|
216
|
-
randomDoubleBattleLevel: 91,
|
|
217
186
|
tier: "NFE",
|
|
218
187
|
},
|
|
219
188
|
pikachucosplay: {
|
|
@@ -280,8 +249,6 @@ exports.FormatsData = {
|
|
|
280
249
|
tier: "Illegal",
|
|
281
250
|
},
|
|
282
251
|
pikachugmax: {
|
|
283
|
-
randomDoubleBattleMoves: ["extremespeed", "fakeout", "knockoff", "surf", "volttackle"],
|
|
284
|
-
randomDoubleBattleLevel: 90,
|
|
285
252
|
isNonstandard: "Gigantamax",
|
|
286
253
|
tier: "AG",
|
|
287
254
|
doublesTier: "(DUber)",
|
|
@@ -293,20 +260,11 @@ exports.FormatsData = {
|
|
|
293
260
|
natDexTier: "RU",
|
|
294
261
|
},
|
|
295
262
|
raichu: {
|
|
296
|
-
randomBattleMoves: ["focusblast", "grassknot", "nastyplot", "surf", "thunderbolt", "voltswitch"],
|
|
297
|
-
randomBattleLevel: 86,
|
|
298
|
-
randomDoubleBattleMoves: ["encore", "fakeout", "helpinghand", "nuzzle", "thunderbolt", "voltswitch"],
|
|
299
|
-
randomDoubleBattleLevel: 88,
|
|
300
|
-
randomBattleNoDynamaxMoves: ["encore", "focusblast", "grassknot", "nastyplot", "surf", "thunderbolt", "voltswitch"],
|
|
301
263
|
tier: "(PU)",
|
|
302
264
|
doublesTier: "(DUU)",
|
|
303
265
|
natDexTier: "RU",
|
|
304
266
|
},
|
|
305
267
|
raichualola: {
|
|
306
|
-
randomBattleMoves: ["focusblast", "grassknot", "nastyplot", "psyshock", "thunderbolt", "voltswitch"],
|
|
307
|
-
randomBattleLevel: 84,
|
|
308
|
-
randomDoubleBattleMoves: ["focusblast", "nastyplot", "psyshock", "thunderbolt", "voltswitch"],
|
|
309
|
-
randomDoubleBattleLevel: 86,
|
|
310
268
|
tier: "PUBL",
|
|
311
269
|
doublesTier: "(DUU)",
|
|
312
270
|
natDexTier: "RU",
|
|
@@ -320,19 +278,11 @@ exports.FormatsData = {
|
|
|
320
278
|
natDexTier: "LC",
|
|
321
279
|
},
|
|
322
280
|
sandslash: {
|
|
323
|
-
randomBattleMoves: ["earthquake", "knockoff", "rapidspin", "spikes", "stealthrock", "stoneedge", "swordsdance", "toxic"],
|
|
324
|
-
randomBattleLevel: 86,
|
|
325
|
-
randomDoubleBattleMoves: ["drillrun", "knockoff", "protect", "stealthrock", "stoneedge", "swordsdance"],
|
|
326
|
-
randomDoubleBattleLevel: 89,
|
|
327
281
|
tier: "PU",
|
|
328
282
|
doublesTier: "(DUU)",
|
|
329
283
|
natDexTier: "RU",
|
|
330
284
|
},
|
|
331
285
|
sandslashalola: {
|
|
332
|
-
randomBattleMoves: ["earthquake", "ironhead", "knockoff", "rapidspin", "swordsdance", "tripleaxel"],
|
|
333
|
-
randomBattleLevel: 86,
|
|
334
|
-
randomDoubleBattleMoves: ["drillrun", "ironhead", "protect", "swordsdance", "tripleaxel"],
|
|
335
|
-
randomDoubleBattleLevel: 90,
|
|
336
286
|
tier: "NUBL",
|
|
337
287
|
doublesTier: "(DUU)",
|
|
338
288
|
natDexTier: "RU",
|
|
@@ -344,10 +294,6 @@ exports.FormatsData = {
|
|
|
344
294
|
tier: "NFE",
|
|
345
295
|
},
|
|
346
296
|
nidoqueen: {
|
|
347
|
-
randomBattleMoves: ["earthpower", "icebeam", "sludgewave", "stealthrock", "toxicspikes"],
|
|
348
|
-
randomBattleLevel: 84,
|
|
349
|
-
randomDoubleBattleMoves: ["earthpower", "icebeam", "protect", "sludgebomb", "stealthrock"],
|
|
350
|
-
randomDoubleBattleLevel: 84,
|
|
351
297
|
tier: "RU",
|
|
352
298
|
doublesTier: "(DUU)",
|
|
353
299
|
natDexTier: "RU",
|
|
@@ -359,10 +305,6 @@ exports.FormatsData = {
|
|
|
359
305
|
tier: "NFE",
|
|
360
306
|
},
|
|
361
307
|
nidoking: {
|
|
362
|
-
randomBattleMoves: ["earthpower", "icebeam", "sludgewave", "substitute", "superpower"],
|
|
363
|
-
randomBattleLevel: 82,
|
|
364
|
-
randomDoubleBattleMoves: ["earthpower", "fireblast", "icebeam", "protect", "sludgebomb", "superpower"],
|
|
365
|
-
randomDoubleBattleLevel: 84,
|
|
366
308
|
tier: "UU",
|
|
367
309
|
doublesTier: "(DUU)",
|
|
368
310
|
natDexTier: "UU",
|
|
@@ -371,15 +313,9 @@ exports.FormatsData = {
|
|
|
371
313
|
tier: "LC",
|
|
372
314
|
},
|
|
373
315
|
clefairy: {
|
|
374
|
-
randomDoubleBattleMoves: ["followme", "helpinghand", "moonblast", "protect"],
|
|
375
|
-
randomDoubleBattleLevel: 95,
|
|
376
316
|
tier: "NFE",
|
|
377
317
|
},
|
|
378
318
|
clefable: {
|
|
379
|
-
randomBattleMoves: ["calmmind", "fireblast", "moonblast", "softboiled", "stealthrock", "thunderwave"],
|
|
380
|
-
randomBattleLevel: 82,
|
|
381
|
-
randomDoubleBattleMoves: ["fireblast", "followme", "healpulse", "helpinghand", "moonblast", "protect", "thunderwave"],
|
|
382
|
-
randomDoubleBattleLevel: 86,
|
|
383
319
|
tier: "OU",
|
|
384
320
|
doublesTier: "(DUU)",
|
|
385
321
|
natDexTier: "OU",
|
|
@@ -392,19 +328,11 @@ exports.FormatsData = {
|
|
|
392
328
|
natDexTier: "LC",
|
|
393
329
|
},
|
|
394
330
|
ninetales: {
|
|
395
|
-
randomBattleMoves: ["fireblast", "nastyplot", "scorchingsands", "solarbeam", "willowisp"],
|
|
396
|
-
randomBattleLevel: 82,
|
|
397
|
-
randomDoubleBattleMoves: ["heatwave", "nastyplot", "protect", "scorchingsands", "solarbeam"],
|
|
398
|
-
randomDoubleBattleLevel: 84,
|
|
399
331
|
tier: "(PU)",
|
|
400
332
|
doublesTier: "DUU",
|
|
401
333
|
natDexTier: "RU",
|
|
402
334
|
},
|
|
403
335
|
ninetalesalola: {
|
|
404
|
-
randomBattleMoves: ["auroraveil", "blizzard", "freezedry", "moonblast", "nastyplot"],
|
|
405
|
-
randomBattleLevel: 79,
|
|
406
|
-
randomDoubleBattleMoves: ["auroraveil", "blizzard", "encore", "freezedry", "moonblast"],
|
|
407
|
-
randomDoubleBattleLevel: 81,
|
|
408
336
|
tier: "OU",
|
|
409
337
|
doublesTier: "DOU",
|
|
410
338
|
natDexTier: "RU",
|
|
@@ -416,10 +344,6 @@ exports.FormatsData = {
|
|
|
416
344
|
tier: "NFE",
|
|
417
345
|
},
|
|
418
346
|
wigglytuff: {
|
|
419
|
-
randomBattleMoves: ["dazzlinggleam", "fireblast", "healbell", "lightscreen", "reflect", "stealthrock"],
|
|
420
|
-
randomBattleLevel: 90,
|
|
421
|
-
randomDoubleBattleMoves: ["dazzlinggleam", "healpulse", "helpinghand", "hypervoice", "thunderwave"],
|
|
422
|
-
randomDoubleBattleLevel: 90,
|
|
423
347
|
tier: "(PU)",
|
|
424
348
|
doublesTier: "(DUU)",
|
|
425
349
|
natDexTier: "RU",
|
|
@@ -431,10 +355,6 @@ exports.FormatsData = {
|
|
|
431
355
|
tier: "NFE",
|
|
432
356
|
},
|
|
433
357
|
crobat: {
|
|
434
|
-
randomBattleMoves: ["bravebird", "defog", "roost", "superfang", "taunt", "toxic", "uturn"],
|
|
435
|
-
randomBattleLevel: 82,
|
|
436
|
-
randomDoubleBattleMoves: ["bravebird", "defog", "roost", "superfang", "tailwind", "taunt"],
|
|
437
|
-
randomDoubleBattleLevel: 86,
|
|
438
358
|
tier: "RU",
|
|
439
359
|
doublesTier: "(DUU)",
|
|
440
360
|
natDexTier: "RU",
|
|
@@ -446,19 +366,11 @@ exports.FormatsData = {
|
|
|
446
366
|
tier: "NFE",
|
|
447
367
|
},
|
|
448
368
|
vileplume: {
|
|
449
|
-
randomBattleMoves: ["aromatherapy", "gigadrain", "sleeppowder", "sludgebomb", "strengthsap"],
|
|
450
|
-
randomBattleLevel: 84,
|
|
451
|
-
randomDoubleBattleMoves: ["aromatherapy", "energyball", "pollenpuff", "sleeppowder", "sludgebomb", "strengthsap"],
|
|
452
|
-
randomDoubleBattleLevel: 88,
|
|
453
369
|
tier: "NU",
|
|
454
370
|
doublesTier: "(DUU)",
|
|
455
371
|
natDexTier: "RU",
|
|
456
372
|
},
|
|
457
373
|
bellossom: {
|
|
458
|
-
randomBattleMoves: ["gigadrain", "moonblast", "quiverdance", "sleeppowder", "strengthsap"],
|
|
459
|
-
randomBattleLevel: 82,
|
|
460
|
-
randomDoubleBattleMoves: ["energyball", "moonblast", "quiverdance", "sleeppowder", "strengthsap"],
|
|
461
|
-
randomDoubleBattleLevel: 86,
|
|
462
374
|
tier: "(PU)",
|
|
463
375
|
doublesTier: "(DUU)",
|
|
464
376
|
natDexTier: "RU",
|
|
@@ -490,19 +402,11 @@ exports.FormatsData = {
|
|
|
490
402
|
tier: "LC",
|
|
491
403
|
},
|
|
492
404
|
dugtrio: {
|
|
493
|
-
randomBattleMoves: ["earthquake", "memento", "stoneedge", "suckerpunch"],
|
|
494
|
-
randomBattleLevel: 82,
|
|
495
|
-
randomDoubleBattleMoves: ["highhorsepower", "memento", "protect", "rockslide", "suckerpunch"],
|
|
496
|
-
randomDoubleBattleLevel: 88,
|
|
497
405
|
tier: "(PU)",
|
|
498
406
|
doublesTier: "(DUU)",
|
|
499
407
|
natDexTier: "RU",
|
|
500
408
|
},
|
|
501
409
|
dugtrioalola: {
|
|
502
|
-
randomBattleMoves: ["earthquake", "ironhead", "stealthrock", "stoneedge", "suckerpunch"],
|
|
503
|
-
randomBattleLevel: 82,
|
|
504
|
-
randomDoubleBattleMoves: ["highhorsepower", "ironhead", "memento", "protect", "rockslide", "suckerpunch"],
|
|
505
|
-
randomDoubleBattleLevel: 88,
|
|
506
410
|
tier: "(PU)",
|
|
507
411
|
doublesTier: "(DUU)",
|
|
508
412
|
natDexTier: "RU",
|
|
@@ -523,28 +427,16 @@ exports.FormatsData = {
|
|
|
523
427
|
natDexTier: "(Uber)",
|
|
524
428
|
},
|
|
525
429
|
persian: {
|
|
526
|
-
randomBattleMoves: ["doubleedge", "fakeout", "knockoff", "playrough", "uturn"],
|
|
527
|
-
randomBattleLevel: 88,
|
|
528
|
-
randomDoubleBattleMoves: ["doubleedge", "fakeout", "hypnosis", "icywind", "knockoff", "taunt"],
|
|
529
|
-
randomDoubleBattleLevel: 90,
|
|
530
430
|
tier: "(PU)",
|
|
531
431
|
doublesTier: "(DUU)",
|
|
532
432
|
natDexTier: "RU",
|
|
533
433
|
},
|
|
534
434
|
persianalola: {
|
|
535
|
-
randomBattleMoves: ["darkpulse", "hypnosis", "nastyplot", "thunderbolt"],
|
|
536
|
-
randomBattleLevel: 82,
|
|
537
|
-
randomDoubleBattleMoves: ["fakeout", "foulplay", "icywind", "partingshot", "snarl", "taunt"],
|
|
538
|
-
randomDoubleBattleLevel: 88,
|
|
539
435
|
tier: "(PU)",
|
|
540
436
|
doublesTier: "(DUU)",
|
|
541
437
|
natDexTier: "RU",
|
|
542
438
|
},
|
|
543
439
|
perrserker: {
|
|
544
|
-
randomBattleMoves: ["closecombat", "crunch", "fakeout", "ironhead", "uturn"],
|
|
545
|
-
randomBattleLevel: 86,
|
|
546
|
-
randomDoubleBattleMoves: ["closecombat", "fakeout", "ironhead", "lashout", "protect", "uturn"],
|
|
547
|
-
randomDoubleBattleLevel: 88,
|
|
548
440
|
tier: "(PU)",
|
|
549
441
|
doublesTier: "(DUU)",
|
|
550
442
|
natDexTier: "RU",
|
|
@@ -553,10 +445,6 @@ exports.FormatsData = {
|
|
|
553
445
|
tier: "LC",
|
|
554
446
|
},
|
|
555
447
|
golduck: {
|
|
556
|
-
randomBattleMoves: ["calmmind", "focusblast", "icebeam", "psyshock", "scald", "substitute"],
|
|
557
|
-
randomBattleLevel: 86,
|
|
558
|
-
randomDoubleBattleMoves: ["calmmind", "encore", "icebeam", "muddywater", "protect"],
|
|
559
|
-
randomDoubleBattleLevel: 88,
|
|
560
448
|
tier: "(PU)",
|
|
561
449
|
doublesTier: "(DUU)",
|
|
562
450
|
natDexTier: "RU",
|
|
@@ -579,10 +467,6 @@ exports.FormatsData = {
|
|
|
579
467
|
tier: "Illegal",
|
|
580
468
|
},
|
|
581
469
|
arcanine: {
|
|
582
|
-
randomBattleMoves: ["closecombat", "extremespeed", "flareblitz", "morningsun", "toxic", "wildcharge", "willowisp"],
|
|
583
|
-
randomBattleLevel: 82,
|
|
584
|
-
randomDoubleBattleMoves: ["closecombat", "extremespeed", "flareblitz", "morningsun", "protect", "snarl", "willowisp"],
|
|
585
|
-
randomDoubleBattleLevel: 84,
|
|
586
470
|
tier: "NU",
|
|
587
471
|
doublesTier: "DUU",
|
|
588
472
|
natDexTier: "RU",
|
|
@@ -598,19 +482,11 @@ exports.FormatsData = {
|
|
|
598
482
|
tier: "NFE",
|
|
599
483
|
},
|
|
600
484
|
poliwrath: {
|
|
601
|
-
randomBattleMoves: ["closecombat", "darkestlariat", "liquidation", "raindance"],
|
|
602
|
-
randomBattleLevel: 84,
|
|
603
|
-
randomDoubleBattleMoves: ["closecombat", "coaching", "helpinghand", "liquidation", "protect"],
|
|
604
|
-
randomDoubleBattleLevel: 88,
|
|
605
485
|
tier: "(PU)",
|
|
606
486
|
doublesTier: "(DUU)",
|
|
607
487
|
natDexTier: "RU",
|
|
608
488
|
},
|
|
609
489
|
politoed: {
|
|
610
|
-
randomBattleMoves: ["encore", "icebeam", "protect", "rest", "scald", "toxic"],
|
|
611
|
-
randomBattleLevel: 86,
|
|
612
|
-
randomDoubleBattleMoves: ["haze", "helpinghand", "icywind", "protect", "scald"],
|
|
613
|
-
randomDoubleBattleLevel: 84,
|
|
614
490
|
tier: "(PU)",
|
|
615
491
|
doublesTier: "DUU",
|
|
616
492
|
natDexTier: "RU",
|
|
@@ -622,10 +498,6 @@ exports.FormatsData = {
|
|
|
622
498
|
tier: "NFE",
|
|
623
499
|
},
|
|
624
500
|
alakazam: {
|
|
625
|
-
randomBattleMoves: ["counter", "focusblast", "nastyplot", "psychic", "shadowball"],
|
|
626
|
-
randomBattleLevel: 78,
|
|
627
|
-
randomDoubleBattleMoves: ["focusblast", "nastyplot", "protect", "psychic", "shadowball"],
|
|
628
|
-
randomDoubleBattleLevel: 80,
|
|
629
501
|
tier: "UUBL",
|
|
630
502
|
doublesTier: "(DUU)",
|
|
631
503
|
natDexTier: "UUBL",
|
|
@@ -642,10 +514,6 @@ exports.FormatsData = {
|
|
|
642
514
|
tier: "NFE",
|
|
643
515
|
},
|
|
644
516
|
machamp: {
|
|
645
|
-
randomBattleMoves: ["bulletpunch", "closecombat", "dynamicpunch", "facade", "knockoff", "stoneedge"],
|
|
646
|
-
randomBattleLevel: 82,
|
|
647
|
-
randomDoubleBattleMoves: ["bulletpunch", "closecombat", "facade", "knockoff", "protect"],
|
|
648
|
-
randomDoubleBattleLevel: 88,
|
|
649
517
|
tier: "NUBL",
|
|
650
518
|
doublesTier: "(DUU)",
|
|
651
519
|
natDexTier: "RU",
|
|
@@ -675,10 +543,6 @@ exports.FormatsData = {
|
|
|
675
543
|
tier: "LC",
|
|
676
544
|
},
|
|
677
545
|
tentacruel: {
|
|
678
|
-
randomBattleMoves: ["haze", "knockoff", "rapidspin", "scald", "sludgebomb", "toxicspikes"],
|
|
679
|
-
randomBattleLevel: 84,
|
|
680
|
-
randomDoubleBattleMoves: ["acidspray", "icywind", "knockoff", "muddywater", "rapidspin", "sludgebomb"],
|
|
681
|
-
randomDoubleBattleLevel: 87,
|
|
682
546
|
tier: "RU",
|
|
683
547
|
doublesTier: "(DUU)",
|
|
684
548
|
natDexTier: "RU",
|
|
@@ -720,19 +584,11 @@ exports.FormatsData = {
|
|
|
720
584
|
tier: "LC",
|
|
721
585
|
},
|
|
722
586
|
rapidash: {
|
|
723
|
-
randomBattleMoves: ["flareblitz", "highhorsepower", "morningsun", "swordsdance", "wildcharge", "willowisp"],
|
|
724
|
-
randomBattleLevel: 84,
|
|
725
|
-
randomDoubleBattleMoves: ["flareblitz", "highhorsepower", "morningsun", "protect", "swordsdance", "wildcharge"],
|
|
726
|
-
randomDoubleBattleLevel: 88,
|
|
727
587
|
tier: "(PU)",
|
|
728
588
|
doublesTier: "(DUU)",
|
|
729
589
|
natDexTier: "RU",
|
|
730
590
|
},
|
|
731
591
|
rapidashgalar: {
|
|
732
|
-
randomBattleMoves: ["highhorsepower", "morningsun", "playrough", "swordsdance", "zenheadbutt"],
|
|
733
|
-
randomBattleLevel: 84,
|
|
734
|
-
randomDoubleBattleMoves: ["highhorsepower", "playrough", "protect", "swordsdance", "zenheadbutt"],
|
|
735
|
-
randomDoubleBattleLevel: 88,
|
|
736
592
|
tier: "(PU)",
|
|
737
593
|
doublesTier: "(DUU)",
|
|
738
594
|
natDexTier: "RU",
|
|
@@ -744,10 +600,6 @@ exports.FormatsData = {
|
|
|
744
600
|
tier: "LC",
|
|
745
601
|
},
|
|
746
602
|
slowbro: {
|
|
747
|
-
randomBattleMoves: ["futuresight", "icebeam", "scald", "slackoff", "teleport", "thunderwave"],
|
|
748
|
-
randomBattleLevel: 84,
|
|
749
|
-
randomDoubleBattleMoves: ["calmmind", "fireblast", "icebeam", "psychic", "scald", "slackoff", "trickroom"],
|
|
750
|
-
randomDoubleBattleLevel: 84,
|
|
751
603
|
tier: "OU",
|
|
752
604
|
doublesTier: "(DUU)",
|
|
753
605
|
natDexTier: "OU",
|
|
@@ -758,28 +610,16 @@ exports.FormatsData = {
|
|
|
758
610
|
natDexTier: "UUBL",
|
|
759
611
|
},
|
|
760
612
|
slowbrogalar: {
|
|
761
|
-
randomBattleMoves: ["flamethrower", "psychic", "shellsidearm", "trick", "trickroom"],
|
|
762
|
-
randomBattleLevel: 86,
|
|
763
|
-
randomDoubleBattleMoves: ["fireblast", "healpulse", "protect", "psychic", "shellsidearm", "trickroom"],
|
|
764
|
-
randomDoubleBattleLevel: 85,
|
|
765
613
|
tier: "RUBL",
|
|
766
614
|
doublesTier: "(DUU)",
|
|
767
615
|
natDexTier: "RUBL",
|
|
768
616
|
},
|
|
769
617
|
slowking: {
|
|
770
|
-
randomBattleMoves: ["fireblast", "futuresight", "psyshock", "scald", "slackoff", "teleport", "toxic", "trick"],
|
|
771
|
-
randomBattleLevel: 86,
|
|
772
|
-
randomDoubleBattleMoves: ["fireblast", "icebeam", "nastyplot", "psychic", "scald", "slackoff", "trickroom"],
|
|
773
|
-
randomDoubleBattleLevel: 88,
|
|
774
618
|
tier: "UU",
|
|
775
619
|
doublesTier: "(DUU)",
|
|
776
620
|
natDexTier: "UU",
|
|
777
621
|
},
|
|
778
622
|
slowkinggalar: {
|
|
779
|
-
randomBattleMoves: ["fireblast", "futuresight", "psyshock", "slackoff", "sludgebomb", "trick"],
|
|
780
|
-
randomBattleLevel: 84,
|
|
781
|
-
randomDoubleBattleMoves: ["fireblast", "protect", "psychic", "sludgebomb", "trick", "trickroom"],
|
|
782
|
-
randomDoubleBattleLevel: 86,
|
|
783
623
|
tier: "OU",
|
|
784
624
|
doublesTier: "(DUU)",
|
|
785
625
|
natDexTier: "UUBL",
|
|
@@ -793,19 +633,11 @@ exports.FormatsData = {
|
|
|
793
633
|
natDexTier: "NFE",
|
|
794
634
|
},
|
|
795
635
|
magnezone: {
|
|
796
|
-
randomBattleMoves: ["bodypress", "flashcannon", "mirrorcoat", "thunderbolt", "voltswitch"],
|
|
797
|
-
randomBattleLevel: 84,
|
|
798
|
-
randomDoubleBattleMoves: ["bodypress", "electroweb", "flashcannon", "protect", "thunderbolt", "voltswitch"],
|
|
799
|
-
randomDoubleBattleLevel: 88,
|
|
800
636
|
tier: "OU",
|
|
801
637
|
doublesTier: "(DUU)",
|
|
802
638
|
natDexTier: "OU",
|
|
803
639
|
},
|
|
804
640
|
farfetchd: {
|
|
805
|
-
randomBattleMoves: ["bravebird", "closecombat", "knockoff", "leafblade", "swordsdance"],
|
|
806
|
-
randomBattleLevel: 90,
|
|
807
|
-
randomDoubleBattleMoves: ["bravebird", "closecombat", "leafblade", "protect", "quickattack", "swordsdance"],
|
|
808
|
-
randomDoubleBattleLevel: 95,
|
|
809
641
|
tier: "(PU)",
|
|
810
642
|
doublesTier: "(DUU)",
|
|
811
643
|
natDexTier: "RU",
|
|
@@ -814,11 +646,6 @@ exports.FormatsData = {
|
|
|
814
646
|
tier: "LC",
|
|
815
647
|
},
|
|
816
648
|
sirfetchd: {
|
|
817
|
-
randomBattleMoves: ["bravebird", "closecombat", "firstimpression", "knockoff", "swordsdance"],
|
|
818
|
-
randomBattleLevel: 82,
|
|
819
|
-
randomDoubleBattleMoves: ["bravebird", "closecombat", "firstimpression", "knockoff", "poisonjab", "protect", "swordsdance"],
|
|
820
|
-
randomDoubleBattleLevel: 85,
|
|
821
|
-
randomBattleNoDynamaxMoves: ["bravebird", "closecombat", "firstimpression", "knockoff", "poisonjab", "swordsdance"],
|
|
822
649
|
tier: "NUBL",
|
|
823
650
|
doublesTier: "(DUU)",
|
|
824
651
|
natDexTier: "RU",
|
|
@@ -867,11 +694,6 @@ exports.FormatsData = {
|
|
|
867
694
|
tier: "LC",
|
|
868
695
|
},
|
|
869
696
|
cloyster: {
|
|
870
|
-
randomBattleMoves: ["explosion", "hydropump", "iciclespear", "rockblast", "shellsmash"],
|
|
871
|
-
randomBattleLevel: 80,
|
|
872
|
-
randomDoubleBattleMoves: ["hydropump", "iciclespear", "protect", "rockblast", "shellsmash"],
|
|
873
|
-
randomDoubleBattleLevel: 84,
|
|
874
|
-
randomBattleNoDynamaxMoves: ["hydropump", "iciclespear", "rockblast", "shellsmash"],
|
|
875
697
|
tier: "RU",
|
|
876
698
|
doublesTier: "(DUU)",
|
|
877
699
|
natDexTier: "RU",
|
|
@@ -884,8 +706,6 @@ exports.FormatsData = {
|
|
|
884
706
|
tier: "NFE",
|
|
885
707
|
},
|
|
886
708
|
gengar: {
|
|
887
|
-
randomDoubleBattleMoves: ["focusblast", "nastyplot", "protect", "shadowball", "sludgebomb", "thunderbolt", "trick", "willowisp"],
|
|
888
|
-
randomDoubleBattleLevel: 86,
|
|
889
709
|
tier: "UUBL",
|
|
890
710
|
doublesTier: "(DUU)",
|
|
891
711
|
natDexTier: "UUBL",
|
|
@@ -896,10 +716,6 @@ exports.FormatsData = {
|
|
|
896
716
|
natDexTier: "Uber",
|
|
897
717
|
},
|
|
898
718
|
gengargmax: {
|
|
899
|
-
randomBattleMoves: ["focusblast", "nastyplot", "shadowball", "sludgewave", "trick"],
|
|
900
|
-
randomBattleLevel: 80,
|
|
901
|
-
randomDoubleBattleMoves: ["focusblast", "nastyplot", "protect", "shadowball", "sludgebomb", "thunderbolt", "willowisp"],
|
|
902
|
-
randomDoubleBattleLevel: 86,
|
|
903
719
|
isNonstandard: "Gigantamax",
|
|
904
720
|
tier: "AG",
|
|
905
721
|
doublesTier: "(DUber)",
|
|
@@ -909,11 +725,6 @@ exports.FormatsData = {
|
|
|
909
725
|
tier: "LC",
|
|
910
726
|
},
|
|
911
727
|
steelix: {
|
|
912
|
-
randomBattleMoves: ["dragondance", "earthquake", "headsmash", "heavyslam", "stealthrock", "toxic"],
|
|
913
|
-
randomBattleLevel: 84,
|
|
914
|
-
randomDoubleBattleMoves: ["headsmash", "heavyslam", "highhorsepower", "protect", "rockpolish"],
|
|
915
|
-
randomDoubleBattleLevel: 88,
|
|
916
|
-
randomBattleNoDynamaxMoves: ["curse", "earthquake", "headsmash", "heavyslam", "stealthrock", "toxic"],
|
|
917
728
|
tier: "RU",
|
|
918
729
|
doublesTier: "(DUU)",
|
|
919
730
|
natDexTier: "RU",
|
|
@@ -937,17 +748,11 @@ exports.FormatsData = {
|
|
|
937
748
|
tier: "LC",
|
|
938
749
|
},
|
|
939
750
|
kingler: {
|
|
940
|
-
randomBattleMoves: ["agility", "liquidation", "rockslide", "superpower", "swordsdance", "xscissor"],
|
|
941
|
-
randomBattleLevel: 84,
|
|
942
|
-
randomDoubleBattleMoves: ["agility", "knockoff", "liquidation", "protect", "superpower", "xscissor"],
|
|
943
|
-
randomDoubleBattleLevel: 86,
|
|
944
751
|
tier: "PUBL",
|
|
945
752
|
doublesTier: "(DUU)",
|
|
946
753
|
natDexTier: "RU",
|
|
947
754
|
},
|
|
948
755
|
kinglergmax: {
|
|
949
|
-
randomDoubleBattleMoves: ["knockoff", "liquidation", "protect", "superpower", "xscissor"],
|
|
950
|
-
randomDoubleBattleLevel: 86,
|
|
951
756
|
isNonstandard: "Gigantamax",
|
|
952
757
|
tier: "AG",
|
|
953
758
|
doublesTier: "(DUber)",
|
|
@@ -975,19 +780,11 @@ exports.FormatsData = {
|
|
|
975
780
|
tier: "LC",
|
|
976
781
|
},
|
|
977
782
|
exeggutor: {
|
|
978
|
-
randomBattleMoves: ["gigadrain", "leechseed", "psychic", "sleeppowder", "substitute"],
|
|
979
|
-
randomBattleLevel: 86,
|
|
980
|
-
randomDoubleBattleMoves: ["energyball", "protect", "psychic", "sleeppowder", "trickroom"],
|
|
981
|
-
randomDoubleBattleLevel: 88,
|
|
982
783
|
tier: "(PU)",
|
|
983
784
|
doublesTier: "(DUU)",
|
|
984
785
|
natDexTier: "RU",
|
|
985
786
|
},
|
|
986
787
|
exeggutoralola: {
|
|
987
|
-
randomBattleMoves: ["dracometeor", "flamethrower", "gigadrain", "leafstorm", "trickroom"],
|
|
988
|
-
randomBattleLevel: 87,
|
|
989
|
-
randomDoubleBattleMoves: ["dragonpulse", "energyball", "flamethrower", "protect", "trickroom"],
|
|
990
|
-
randomDoubleBattleLevel: 88,
|
|
991
788
|
tier: "PUBL",
|
|
992
789
|
doublesTier: "(DUU)",
|
|
993
790
|
natDexTier: "RU",
|
|
@@ -996,19 +793,11 @@ exports.FormatsData = {
|
|
|
996
793
|
tier: "LC",
|
|
997
794
|
},
|
|
998
795
|
marowak: {
|
|
999
|
-
randomBattleMoves: ["doubleedge", "earthquake", "knockoff", "stealthrock", "stoneedge", "swordsdance"],
|
|
1000
|
-
randomBattleLevel: 86,
|
|
1001
|
-
randomDoubleBattleMoves: ["bonemerang", "knockoff", "protect", "stealthrock", "stoneedge"],
|
|
1002
|
-
randomDoubleBattleLevel: 88,
|
|
1003
796
|
tier: "(PU)",
|
|
1004
797
|
doublesTier: "(DUU)",
|
|
1005
798
|
natDexTier: "RU",
|
|
1006
799
|
},
|
|
1007
800
|
marowakalola: {
|
|
1008
|
-
randomBattleMoves: ["earthquake", "flamecharge", "flareblitz", "poltergeist", "stealthrock", "stoneedge"],
|
|
1009
|
-
randomBattleLevel: 84,
|
|
1010
|
-
randomDoubleBattleMoves: ["bonemerang", "flamecharge", "flareblitz", "protect", "shadowbone"],
|
|
1011
|
-
randomDoubleBattleLevel: 83,
|
|
1012
801
|
tier: "RU",
|
|
1013
802
|
doublesTier: "(DUU)",
|
|
1014
803
|
natDexTier: "RU",
|
|
@@ -1022,28 +811,16 @@ exports.FormatsData = {
|
|
|
1022
811
|
tier: "LC",
|
|
1023
812
|
},
|
|
1024
813
|
hitmonlee: {
|
|
1025
|
-
randomBattleMoves: ["closecombat", "curse", "highjumpkick", "knockoff", "poisonjab", "stoneedge"],
|
|
1026
|
-
randomBattleLevel: 84,
|
|
1027
|
-
randomDoubleBattleMoves: ["closecombat", "fakeout", "knockoff", "poisonjab", "protect", "rockslide"],
|
|
1028
|
-
randomDoubleBattleLevel: 86,
|
|
1029
814
|
tier: "PU",
|
|
1030
815
|
doublesTier: "(DUU)",
|
|
1031
816
|
natDexTier: "RU",
|
|
1032
817
|
},
|
|
1033
818
|
hitmonchan: {
|
|
1034
|
-
randomBattleMoves: ["bulkup", "drainpunch", "icepunch", "machpunch", "rapidspin", "throatchop"],
|
|
1035
|
-
randomBattleLevel: 86,
|
|
1036
|
-
randomDoubleBattleMoves: ["coaching", "drainpunch", "feint", "firepunch", "icepunch", "machpunch"],
|
|
1037
|
-
randomDoubleBattleLevel: 88,
|
|
1038
819
|
tier: "(PU)",
|
|
1039
820
|
doublesTier: "(DUU)",
|
|
1040
821
|
natDexTier: "RU",
|
|
1041
822
|
},
|
|
1042
823
|
hitmontop: {
|
|
1043
|
-
randomBattleMoves: ["closecombat", "earthquake", "rapidspin", "suckerpunch", "toxic", "tripleaxel"],
|
|
1044
|
-
randomBattleLevel: 85,
|
|
1045
|
-
randomDoubleBattleMoves: ["closecombat", "coaching", "fakeout", "helpinghand", "rapidspin", "suckerpunch", "tripleaxel"],
|
|
1046
|
-
randomDoubleBattleLevel: 88,
|
|
1047
824
|
tier: "NU",
|
|
1048
825
|
doublesTier: "DUU",
|
|
1049
826
|
natDexTier: "RU",
|
|
@@ -1052,10 +829,6 @@ exports.FormatsData = {
|
|
|
1052
829
|
tier: "LC",
|
|
1053
830
|
},
|
|
1054
831
|
lickilicky: {
|
|
1055
|
-
randomBattleMoves: ["bodyslam", "earthquake", "explosion", "healbell", "knockoff", "protect", "swordsdance", "wish"],
|
|
1056
|
-
randomBattleLevel: 86,
|
|
1057
|
-
randomDoubleBattleMoves: ["bodyslam", "explosion", "helpinghand", "icywind", "knockoff"],
|
|
1058
|
-
randomDoubleBattleLevel: 88,
|
|
1059
832
|
tier: "(PU)",
|
|
1060
833
|
doublesTier: "(DUU)",
|
|
1061
834
|
natDexTier: "RU",
|
|
@@ -1064,19 +837,11 @@ exports.FormatsData = {
|
|
|
1064
837
|
tier: "LC",
|
|
1065
838
|
},
|
|
1066
839
|
weezing: {
|
|
1067
|
-
randomBattleMoves: ["fireblast", "painsplit", "sludgebomb", "toxicspikes", "willowisp"],
|
|
1068
|
-
randomBattleLevel: 86,
|
|
1069
|
-
randomDoubleBattleMoves: ["fireblast", "painsplit", "sludgebomb", "toxicspikes", "willowisp"],
|
|
1070
|
-
randomDoubleBattleLevel: 88,
|
|
1071
840
|
tier: "PU",
|
|
1072
841
|
doublesTier: "(DUU)",
|
|
1073
842
|
natDexTier: "RU",
|
|
1074
843
|
},
|
|
1075
844
|
weezinggalar: {
|
|
1076
|
-
randomBattleMoves: ["defog", "fireblast", "painsplit", "sludgebomb", "strangesteam", "toxicspikes", "willowisp"],
|
|
1077
|
-
randomBattleLevel: 86,
|
|
1078
|
-
randomDoubleBattleMoves: ["clearsmog", "defog", "fireblast", "painsplit", "strangesteam", "toxicspikes", "willowisp"],
|
|
1079
|
-
randomDoubleBattleLevel: 89,
|
|
1080
845
|
tier: "RU",
|
|
1081
846
|
doublesTier: "(DUU)",
|
|
1082
847
|
natDexTier: "RU",
|
|
@@ -1085,15 +850,9 @@ exports.FormatsData = {
|
|
|
1085
850
|
tier: "LC",
|
|
1086
851
|
},
|
|
1087
852
|
rhydon: {
|
|
1088
|
-
randomBattleMoves: ["earthquake", "megahorn", "stealthrock", "stoneedge", "toxic"],
|
|
1089
|
-
randomBattleLevel: 87,
|
|
1090
853
|
tier: "NFE",
|
|
1091
854
|
},
|
|
1092
855
|
rhyperior: {
|
|
1093
|
-
randomBattleMoves: ["earthquake", "firepunch", "megahorn", "rockpolish", "stoneedge"],
|
|
1094
|
-
randomBattleLevel: 82,
|
|
1095
|
-
randomDoubleBattleMoves: ["highhorsepower", "icepunch", "megahorn", "protect", "rockslide", "stoneedge"],
|
|
1096
|
-
randomDoubleBattleLevel: 84,
|
|
1097
856
|
tier: "RU",
|
|
1098
857
|
doublesTier: "(DUU)",
|
|
1099
858
|
natDexTier: "RU",
|
|
@@ -1102,17 +861,11 @@ exports.FormatsData = {
|
|
|
1102
861
|
tier: "LC",
|
|
1103
862
|
},
|
|
1104
863
|
chansey: {
|
|
1105
|
-
randomBattleMoves: ["healbell", "seismictoss", "softboiled", "stealthrock", "toxic"],
|
|
1106
|
-
randomBattleLevel: 84,
|
|
1107
864
|
tier: "UU",
|
|
1108
865
|
doublesTier: "NFE",
|
|
1109
866
|
natDexTier: "OU",
|
|
1110
867
|
},
|
|
1111
868
|
blissey: {
|
|
1112
|
-
randomBattleMoves: ["seismictoss", "softboiled", "stealthrock", "teleport", "toxic"],
|
|
1113
|
-
randomBattleLevel: 83,
|
|
1114
|
-
randomDoubleBattleMoves: ["allyswitch", "healpulse", "helpinghand", "protect", "seismictoss", "softboiled", "thunderwave", "toxic"],
|
|
1115
|
-
randomDoubleBattleLevel: 88,
|
|
1116
869
|
tier: "OU",
|
|
1117
870
|
doublesTier: "(DUU)",
|
|
1118
871
|
natDexTier: "OU",
|
|
@@ -1122,19 +875,11 @@ exports.FormatsData = {
|
|
|
1122
875
|
natDexTier: "LC",
|
|
1123
876
|
},
|
|
1124
877
|
tangrowth: {
|
|
1125
|
-
randomBattleMoves: ["earthquake", "gigadrain", "knockoff", "leechseed", "sleeppowder", "sludgebomb"],
|
|
1126
|
-
randomBattleLevel: 84,
|
|
1127
|
-
randomDoubleBattleMoves: ["focusblast", "knockoff", "powerwhip", "ragepowder", "sleeppowder"],
|
|
1128
|
-
randomDoubleBattleLevel: 85,
|
|
1129
878
|
tier: "UU",
|
|
1130
879
|
doublesTier: "(DUU)",
|
|
1131
880
|
natDexTier: "RUBL",
|
|
1132
881
|
},
|
|
1133
882
|
kangaskhan: {
|
|
1134
|
-
randomBattleMoves: ["doubleedge", "earthquake", "fakeout", "hammerarm", "suckerpunch"],
|
|
1135
|
-
randomBattleLevel: 84,
|
|
1136
|
-
randomDoubleBattleMoves: ["doubleedge", "drainpunch", "fakeout", "protect", "rockslide", "suckerpunch"],
|
|
1137
|
-
randomDoubleBattleLevel: 88,
|
|
1138
883
|
tier: "(PU)",
|
|
1139
884
|
doublesTier: "(DUU)",
|
|
1140
885
|
natDexTier: "RU",
|
|
@@ -1151,11 +896,6 @@ exports.FormatsData = {
|
|
|
1151
896
|
tier: "NFE",
|
|
1152
897
|
},
|
|
1153
898
|
kingdra: {
|
|
1154
|
-
randomBattleMoves: ["dracometeor", "flipturn", "hurricane", "hydropump", "raindance"],
|
|
1155
|
-
randomBattleLevel: 82,
|
|
1156
|
-
randomDoubleBattleMoves: ["dracometeor", "hurricane", "hydropump", "icebeam", "muddywater", "raindance"],
|
|
1157
|
-
randomDoubleBattleLevel: 82,
|
|
1158
|
-
randomBattleNoDynamaxMoves: ["dracometeor", "flipturn", "hydropump", "icebeam", "raindance"],
|
|
1159
899
|
tier: "PUBL",
|
|
1160
900
|
doublesTier: "DUU",
|
|
1161
901
|
natDexTier: "RU",
|
|
@@ -1164,10 +904,6 @@ exports.FormatsData = {
|
|
|
1164
904
|
tier: "LC",
|
|
1165
905
|
},
|
|
1166
906
|
seaking: {
|
|
1167
|
-
randomBattleMoves: ["drillrun", "knockoff", "megahorn", "swordsdance", "waterfall"],
|
|
1168
|
-
randomBattleLevel: 88,
|
|
1169
|
-
randomDoubleBattleMoves: ["drillrun", "knockoff", "megahorn", "protect", "scaleshot", "swordsdance", "waterfall"],
|
|
1170
|
-
randomDoubleBattleLevel: 88,
|
|
1171
907
|
tier: "(PU)",
|
|
1172
908
|
doublesTier: "(DUU)",
|
|
1173
909
|
natDexTier: "RU",
|
|
@@ -1176,10 +912,6 @@ exports.FormatsData = {
|
|
|
1176
912
|
tier: "LC",
|
|
1177
913
|
},
|
|
1178
914
|
starmie: {
|
|
1179
|
-
randomBattleMoves: ["hydropump", "icebeam", "psyshock", "rapidspin", "recover", "scald", "thunderbolt"],
|
|
1180
|
-
randomBattleLevel: 84,
|
|
1181
|
-
randomDoubleBattleMoves: ["hydropump", "icebeam", "protect", "psyshock", "thunderbolt", "trick"],
|
|
1182
|
-
randomDoubleBattleLevel: 84,
|
|
1183
915
|
tier: "NU",
|
|
1184
916
|
doublesTier: "(DUU)",
|
|
1185
917
|
natDexTier: "RU",
|
|
@@ -1188,43 +920,24 @@ exports.FormatsData = {
|
|
|
1188
920
|
tier: "LC",
|
|
1189
921
|
},
|
|
1190
922
|
mrmime: {
|
|
1191
|
-
randomBattleMoves: ["dazzlinggleam", "focusblast", "healingwish", "nastyplot", "psychic"],
|
|
1192
|
-
randomBattleLevel: 86,
|
|
1193
|
-
randomDoubleBattleMoves: ["dazzlinggleam", "fakeout", "icywind", "lightscreen", "psychic", "reflect"],
|
|
1194
|
-
randomDoubleBattleLevel: 88,
|
|
1195
923
|
tier: "(PU)",
|
|
1196
924
|
doublesTier: "(DUU)",
|
|
1197
925
|
natDexTier: "RU",
|
|
1198
926
|
},
|
|
1199
927
|
mrmimegalar: {
|
|
1200
|
-
randomBattleMoves: ["focusblast", "freezedry", "nastyplot", "psychic", "rapidspin"],
|
|
1201
|
-
randomBattleLevel: 86,
|
|
1202
928
|
tier: "NFE",
|
|
1203
929
|
},
|
|
1204
930
|
mrrime: {
|
|
1205
|
-
randomBattleMoves: ["focusblast", "freezedry", "psychic", "rapidspin", "slackoff", "trick"],
|
|
1206
|
-
randomBattleLevel: 86,
|
|
1207
|
-
randomDoubleBattleMoves: ["fakeout", "focusblast", "freezedry", "icywind", "protect", "psychic", "rapidspin"],
|
|
1208
|
-
randomDoubleBattleLevel: 88,
|
|
1209
931
|
tier: "(PU)",
|
|
1210
932
|
doublesTier: "(DUU)",
|
|
1211
933
|
natDexTier: "RU",
|
|
1212
934
|
},
|
|
1213
935
|
scyther: {
|
|
1214
|
-
randomBattleMoves: ["brickbreak", "dualwingbeat", "knockoff", "roost", "swordsdance", "uturn"],
|
|
1215
|
-
randomBattleLevel: 81,
|
|
1216
|
-
randomDoubleBattleMoves: ["brickbreak", "bugbite", "dualwingbeat", "uturn"],
|
|
1217
|
-
randomDoubleBattleLevel: 84,
|
|
1218
936
|
tier: "PUBL",
|
|
1219
937
|
doublesTier: "NFE",
|
|
1220
938
|
natDexTier: "LC",
|
|
1221
939
|
},
|
|
1222
940
|
scizor: {
|
|
1223
|
-
randomBattleMoves: ["bulletpunch", "dualwingbeat", "knockoff", "roost", "superpower", "swordsdance", "uturn"],
|
|
1224
|
-
randomBattleLevel: 80,
|
|
1225
|
-
randomDoubleBattleMoves: ["bugbite", "bulletpunch", "dualwingbeat", "feint", "protect", "superpower", "swordsdance", "uturn"],
|
|
1226
|
-
randomDoubleBattleLevel: 80,
|
|
1227
|
-
randomBattleNoDynamaxMoves: ["bulletpunch", "knockoff", "roost", "superpower", "swordsdance", "uturn"],
|
|
1228
941
|
tier: "UU",
|
|
1229
942
|
doublesTier: "DUU",
|
|
1230
943
|
natDexTier: "UU",
|
|
@@ -1238,10 +951,6 @@ exports.FormatsData = {
|
|
|
1238
951
|
tier: "LC",
|
|
1239
952
|
},
|
|
1240
953
|
jynx: {
|
|
1241
|
-
randomBattleMoves: ["focusblast", "icebeam", "lovelykiss", "nastyplot", "psyshock", "trick"],
|
|
1242
|
-
randomBattleLevel: 86,
|
|
1243
|
-
randomDoubleBattleMoves: ["focusblast", "icebeam", "lovelykiss", "nastyplot", "psychic"],
|
|
1244
|
-
randomDoubleBattleLevel: 86,
|
|
1245
954
|
tier: "(PU)",
|
|
1246
955
|
doublesTier: "(DUU)",
|
|
1247
956
|
natDexTier: "RU",
|
|
@@ -1253,10 +962,6 @@ exports.FormatsData = {
|
|
|
1253
962
|
tier: "NFE",
|
|
1254
963
|
},
|
|
1255
964
|
electivire: {
|
|
1256
|
-
randomBattleMoves: ["crosschop", "earthquake", "flamethrower", "icepunch", "voltswitch", "wildcharge"],
|
|
1257
|
-
randomBattleLevel: 82,
|
|
1258
|
-
randomDoubleBattleMoves: ["crosschop", "flamethrower", "icepunch", "stompingtantrum", "wildcharge"],
|
|
1259
|
-
randomDoubleBattleLevel: 88,
|
|
1260
965
|
tier: "(PU)",
|
|
1261
966
|
doublesTier: "(DUU)",
|
|
1262
967
|
natDexTier: "RU",
|
|
@@ -1268,19 +973,11 @@ exports.FormatsData = {
|
|
|
1268
973
|
tier: "NFE",
|
|
1269
974
|
},
|
|
1270
975
|
magmortar: {
|
|
1271
|
-
randomBattleMoves: ["earthquake", "fireblast", "focusblast", "psychic", "taunt", "thunderbolt"],
|
|
1272
|
-
randomBattleLevel: 86,
|
|
1273
|
-
randomDoubleBattleMoves: ["fireblast", "focusblast", "heatwave", "protect", "thunderbolt"],
|
|
1274
|
-
randomDoubleBattleLevel: 88,
|
|
1275
976
|
tier: "(PU)",
|
|
1276
977
|
doublesTier: "(DUU)",
|
|
1277
978
|
natDexTier: "RU",
|
|
1278
979
|
},
|
|
1279
980
|
pinsir: {
|
|
1280
|
-
randomBattleMoves: ["closecombat", "earthquake", "knockoff", "stealthrock", "stoneedge", "xscissor"],
|
|
1281
|
-
randomBattleLevel: 84,
|
|
1282
|
-
randomDoubleBattleMoves: ["closecombat", "feint", "protect", "rockslide", "swordsdance", "xscissor"],
|
|
1283
|
-
randomDoubleBattleLevel: 88,
|
|
1284
981
|
tier: "(PU)",
|
|
1285
982
|
doublesTier: "(DUU)",
|
|
1286
983
|
natDexTier: "RU",
|
|
@@ -1291,10 +988,6 @@ exports.FormatsData = {
|
|
|
1291
988
|
natDexTier: "UUBL",
|
|
1292
989
|
},
|
|
1293
990
|
tauros: {
|
|
1294
|
-
randomBattleMoves: ["bodyslam", "closecombat", "rockslide", "throatchop", "zenheadbutt"],
|
|
1295
|
-
randomBattleLevel: 82,
|
|
1296
|
-
randomDoubleBattleMoves: ["bodyslam", "closecombat", "lashout", "protect", "rockslide"],
|
|
1297
|
-
randomDoubleBattleLevel: 84,
|
|
1298
991
|
tier: "NU",
|
|
1299
992
|
doublesTier: "(DUU)",
|
|
1300
993
|
natDexTier: "RU",
|
|
@@ -1303,10 +996,6 @@ exports.FormatsData = {
|
|
|
1303
996
|
tier: "LC",
|
|
1304
997
|
},
|
|
1305
998
|
gyarados: {
|
|
1306
|
-
randomBattleMoves: ["bounce", "dragondance", "earthquake", "powerwhip", "waterfall"],
|
|
1307
|
-
randomBattleLevel: 76,
|
|
1308
|
-
randomDoubleBattleMoves: ["bounce", "dragondance", "icefang", "powerwhip", "protect", "waterfall"],
|
|
1309
|
-
randomDoubleBattleLevel: 81,
|
|
1310
999
|
tier: "UU",
|
|
1311
1000
|
doublesTier: "(DUU)",
|
|
1312
1001
|
natDexTier: "UUBL",
|
|
@@ -1322,20 +1011,12 @@ exports.FormatsData = {
|
|
|
1322
1011
|
natDexTier: "RU",
|
|
1323
1012
|
},
|
|
1324
1013
|
laprasgmax: {
|
|
1325
|
-
randomBattleMoves: ["freezedry", "icebeam", "protect", "sparklingaria", "thunderbolt", "toxic"],
|
|
1326
|
-
randomBattleLevel: 86,
|
|
1327
|
-
randomDoubleBattleMoves: ["freezedry", "helpinghand", "hydropump", "icywind", "protect", "thunderbolt"],
|
|
1328
|
-
randomDoubleBattleLevel: 84,
|
|
1329
1014
|
isNonstandard: "Gigantamax",
|
|
1330
1015
|
tier: "AG",
|
|
1331
1016
|
doublesTier: "(DUber)",
|
|
1332
1017
|
natDexTier: "(Uber)",
|
|
1333
1018
|
},
|
|
1334
1019
|
ditto: {
|
|
1335
|
-
randomBattleMoves: ["transform"],
|
|
1336
|
-
randomBattleLevel: 76,
|
|
1337
|
-
randomDoubleBattleMoves: ["transform"],
|
|
1338
|
-
randomDoubleBattleLevel: 88,
|
|
1339
1020
|
tier: "(PU)",
|
|
1340
1021
|
doublesTier: "(DUU)",
|
|
1341
1022
|
natDexTier: "RU",
|
|
@@ -1354,73 +1035,41 @@ exports.FormatsData = {
|
|
|
1354
1035
|
natDexTier: "(Uber)",
|
|
1355
1036
|
},
|
|
1356
1037
|
vaporeon: {
|
|
1357
|
-
randomBattleMoves: ["healbell", "icebeam", "protect", "scald", "toxic", "wish"],
|
|
1358
|
-
randomBattleLevel: 84,
|
|
1359
|
-
randomDoubleBattleMoves: ["helpinghand", "icywind", "protect", "scald", "toxic", "wish"],
|
|
1360
|
-
randomDoubleBattleLevel: 88,
|
|
1361
1038
|
tier: "NU",
|
|
1362
1039
|
doublesTier: "(DUU)",
|
|
1363
1040
|
natDexTier: "RU",
|
|
1364
1041
|
},
|
|
1365
1042
|
jolteon: {
|
|
1366
|
-
randomBattleMoves: ["hypervoice", "shadowball", "thunderbolt", "voltswitch"],
|
|
1367
|
-
randomBattleLevel: 82,
|
|
1368
|
-
randomDoubleBattleMoves: ["faketears", "helpinghand", "shadowball", "thunderbolt", "thunderwave"],
|
|
1369
|
-
randomDoubleBattleLevel: 86,
|
|
1370
1043
|
tier: "PU",
|
|
1371
1044
|
doublesTier: "(DUU)",
|
|
1372
1045
|
natDexTier: "RU",
|
|
1373
1046
|
},
|
|
1374
1047
|
flareon: {
|
|
1375
|
-
randomBattleMoves: ["facade", "flamecharge", "flareblitz", "quickattack", "superpower"],
|
|
1376
|
-
randomBattleLevel: 86,
|
|
1377
|
-
randomDoubleBattleMoves: ["facade", "flamecharge", "flareblitz", "protect", "quickattack", "superpower"],
|
|
1378
|
-
randomDoubleBattleLevel: 88,
|
|
1379
1048
|
tier: "(PU)",
|
|
1380
1049
|
doublesTier: "(DUU)",
|
|
1381
1050
|
natDexTier: "RU",
|
|
1382
1051
|
},
|
|
1383
1052
|
espeon: {
|
|
1384
|
-
randomBattleMoves: ["calmmind", "dazzlinggleam", "morningsun", "psychic", "shadowball"],
|
|
1385
|
-
randomBattleLevel: 82,
|
|
1386
|
-
randomDoubleBattleMoves: ["calmmind", "dazzlinggleam", "morningsun", "protect", "psychic", "shadowball"],
|
|
1387
|
-
randomDoubleBattleLevel: 84,
|
|
1388
1053
|
tier: "PUBL",
|
|
1389
1054
|
doublesTier: "(DUU)",
|
|
1390
1055
|
natDexTier: "RU",
|
|
1391
1056
|
},
|
|
1392
1057
|
umbreon: {
|
|
1393
|
-
randomBattleMoves: ["foulplay", "protect", "toxic", "wish"],
|
|
1394
|
-
randomBattleLevel: 82,
|
|
1395
|
-
randomDoubleBattleMoves: ["foulplay", "helpinghand", "moonlight", "protect", "snarl", "toxic"],
|
|
1396
|
-
randomDoubleBattleLevel: 88,
|
|
1397
1058
|
tier: "RU",
|
|
1398
1059
|
doublesTier: "(DUU)",
|
|
1399
1060
|
natDexTier: "RU",
|
|
1400
1061
|
},
|
|
1401
1062
|
leafeon: {
|
|
1402
|
-
randomBattleMoves: ["doubleedge", "knockoff", "leafblade", "swordsdance", "synthesis", "xscissor"],
|
|
1403
|
-
randomBattleLevel: 86,
|
|
1404
|
-
randomDoubleBattleMoves: ["doubleedge", "knockoff", "leafblade", "protect", "swordsdance"],
|
|
1405
|
-
randomDoubleBattleLevel: 86,
|
|
1406
1063
|
tier: "(PU)",
|
|
1407
1064
|
doublesTier: "(DUU)",
|
|
1408
1065
|
natDexTier: "RU",
|
|
1409
1066
|
},
|
|
1410
1067
|
glaceon: {
|
|
1411
|
-
randomBattleMoves: ["freezedry", "protect", "toxic", "wish"],
|
|
1412
|
-
randomBattleLevel: 88,
|
|
1413
|
-
randomDoubleBattleMoves: ["blizzard", "freezedry", "helpinghand", "protect", "shadowball", "wish"],
|
|
1414
|
-
randomDoubleBattleLevel: 88,
|
|
1415
1068
|
tier: "(PU)",
|
|
1416
1069
|
doublesTier: "(DUU)",
|
|
1417
1070
|
natDexTier: "RU",
|
|
1418
1071
|
},
|
|
1419
1072
|
sylveon: {
|
|
1420
|
-
randomBattleMoves: ["calmmind", "hypervoice", "mysticalfire", "protect", "psyshock", "shadowball", "wish"],
|
|
1421
|
-
randomBattleLevel: 84,
|
|
1422
|
-
randomDoubleBattleMoves: ["calmmind", "hypervoice", "mysticalfire", "protect", "psyshock"],
|
|
1423
|
-
randomDoubleBattleLevel: 80,
|
|
1424
1073
|
tier: "NU",
|
|
1425
1074
|
doublesTier: "DUU",
|
|
1426
1075
|
natDexTier: "RU",
|
|
@@ -1429,20 +1078,11 @@ exports.FormatsData = {
|
|
|
1429
1078
|
tier: "LC",
|
|
1430
1079
|
},
|
|
1431
1080
|
porygon2: {
|
|
1432
|
-
randomBattleMoves: ["discharge", "icebeam", "recover", "toxic", "triattack"],
|
|
1433
|
-
randomBattleLevel: 82,
|
|
1434
|
-
randomDoubleBattleMoves: ["icebeam", "recover", "thunderbolt", "toxic", "triattack", "trickroom"],
|
|
1435
|
-
randomDoubleBattleLevel: 83,
|
|
1436
1081
|
tier: "RU",
|
|
1437
1082
|
doublesTier: "DOU",
|
|
1438
1083
|
natDexTier: "NFE",
|
|
1439
1084
|
},
|
|
1440
1085
|
porygonz: {
|
|
1441
|
-
randomBattleMoves: ["darkpulse", "icebeam", "nastyplot", "thunderbolt", "triattack", "trick"],
|
|
1442
|
-
randomBattleLevel: 80,
|
|
1443
|
-
randomDoubleBattleMoves: ["darkpulse", "icebeam", "protect", "thunderbolt", "triattack", "trick"],
|
|
1444
|
-
randomDoubleBattleLevel: 84,
|
|
1445
|
-
randomBattleNoDynamaxMoves: ["icebeam", "nastyplot", "shadowball", "thunderbolt", "triattack", "trick"],
|
|
1446
1086
|
tier: "NUBL",
|
|
1447
1087
|
doublesTier: "(DUU)",
|
|
1448
1088
|
natDexTier: "UUBL",
|
|
@@ -1451,10 +1091,6 @@ exports.FormatsData = {
|
|
|
1451
1091
|
tier: "LC",
|
|
1452
1092
|
},
|
|
1453
1093
|
omastar: {
|
|
1454
|
-
randomBattleMoves: ["earthpower", "hydropump", "icebeam", "shellsmash", "spikes", "stealthrock"],
|
|
1455
|
-
randomBattleLevel: 82,
|
|
1456
|
-
randomDoubleBattleMoves: ["earthpower", "icebeam", "muddywater", "shellsmash"],
|
|
1457
|
-
randomDoubleBattleLevel: 86,
|
|
1458
1094
|
tier: "PUBL",
|
|
1459
1095
|
doublesTier: "(DUU)",
|
|
1460
1096
|
natDexTier: "RU",
|
|
@@ -1463,19 +1099,11 @@ exports.FormatsData = {
|
|
|
1463
1099
|
tier: "LC",
|
|
1464
1100
|
},
|
|
1465
1101
|
kabutops: {
|
|
1466
|
-
randomBattleMoves: ["aquajet", "knockoff", "liquidation", "rapidspin", "stoneedge", "swordsdance"],
|
|
1467
|
-
randomBattleLevel: 82,
|
|
1468
|
-
randomDoubleBattleMoves: ["aquajet", "protect", "stoneedge", "superpower", "swordsdance", "waterfall"],
|
|
1469
|
-
randomDoubleBattleLevel: 86,
|
|
1470
1102
|
tier: "(PU)",
|
|
1471
1103
|
doublesTier: "(DUU)",
|
|
1472
1104
|
natDexTier: "RU",
|
|
1473
1105
|
},
|
|
1474
1106
|
aerodactyl: {
|
|
1475
|
-
randomBattleMoves: ["aquatail", "dualwingbeat", "earthquake", "honeclaws", "stoneedge"],
|
|
1476
|
-
randomBattleLevel: 82,
|
|
1477
|
-
randomDoubleBattleMoves: ["aquatail", "dragondance", "dualwingbeat", "earthquake", "rockslide"],
|
|
1478
|
-
randomDoubleBattleLevel: 82,
|
|
1479
1107
|
tier: "NU",
|
|
1480
1108
|
doublesTier: "(DUU)",
|
|
1481
1109
|
natDexTier: "RU",
|
|
@@ -1489,75 +1117,42 @@ exports.FormatsData = {
|
|
|
1489
1117
|
tier: "LC",
|
|
1490
1118
|
},
|
|
1491
1119
|
snorlax: {
|
|
1492
|
-
randomBattleMoves: ["darkestlariat", "doubleedge", "earthquake", "facade", "heatcrash"],
|
|
1493
|
-
randomBattleLevel: 82,
|
|
1494
1120
|
tier: "NU",
|
|
1495
1121
|
doublesTier: "(DUU)",
|
|
1496
1122
|
natDexTier: "RU",
|
|
1497
1123
|
},
|
|
1498
1124
|
snorlaxgmax: {
|
|
1499
|
-
randomBattleMoves: ["bodyslam", "curse", "darkestlariat", "earthquake", "rest"],
|
|
1500
|
-
randomBattleLevel: 82,
|
|
1501
|
-
randomDoubleBattleMoves: ["bodyslam", "curse", "darkestlariat", "highhorsepower", "recycle"],
|
|
1502
|
-
randomDoubleBattleLevel: 84,
|
|
1503
1125
|
isNonstandard: "Gigantamax",
|
|
1504
1126
|
tier: "AG",
|
|
1505
1127
|
doublesTier: "(DUber)",
|
|
1506
1128
|
natDexTier: "(Uber)",
|
|
1507
1129
|
},
|
|
1508
1130
|
articuno: {
|
|
1509
|
-
randomBattleMoves: ["defog", "freezedry", "healbell", "roost", "toxic"],
|
|
1510
|
-
randomBattleLevel: 84,
|
|
1511
|
-
randomDoubleBattleMoves: ["freezedry", "healbell", "hurricane", "icebeam", "roost"],
|
|
1512
|
-
randomDoubleBattleLevel: 86,
|
|
1513
1131
|
tier: "(PU)",
|
|
1514
1132
|
doublesTier: "(DUU)",
|
|
1515
1133
|
natDexTier: "RU",
|
|
1516
1134
|
},
|
|
1517
1135
|
articunogalar: {
|
|
1518
|
-
randomBattleMoves: ["airslash", "calmmind", "freezingglare", "recover"],
|
|
1519
|
-
randomBattleLevel: 80,
|
|
1520
|
-
randomDoubleBattleMoves: ["calmmind", "freezingglare", "hurricane", "recover", "tailwind"],
|
|
1521
|
-
randomDoubleBattleLevel: 81,
|
|
1522
|
-
randomBattleNoDynamaxMoves: ["calmmind", "freezingglare", "hurricane", "recover"],
|
|
1523
1136
|
tier: "PU",
|
|
1524
1137
|
doublesTier: "(DUU)",
|
|
1525
1138
|
natDexTier: "RU",
|
|
1526
1139
|
},
|
|
1527
1140
|
zapdos: {
|
|
1528
|
-
randomBattleMoves: ["defog", "discharge", "heatwave", "hurricane", "roost", "uturn"],
|
|
1529
|
-
randomBattleLevel: 78,
|
|
1530
|
-
randomDoubleBattleMoves: ["heatwave", "hurricane", "roost", "tailwind", "thunderbolt", "voltswitch"],
|
|
1531
|
-
randomDoubleBattleLevel: 79,
|
|
1532
1141
|
tier: "OU",
|
|
1533
1142
|
doublesTier: "DOU",
|
|
1534
1143
|
natDexTier: "OU",
|
|
1535
1144
|
},
|
|
1536
1145
|
zapdosgalar: {
|
|
1537
|
-
randomBattleMoves: ["bravebird", "bulkup", "closecombat", "throatchop", "uturn"],
|
|
1538
|
-
randomBattleLevel: 76,
|
|
1539
|
-
randomDoubleBattleMoves: ["bravebird", "bulkup", "closecombat", "throatchop", "thunderouskick", "uturn"],
|
|
1540
|
-
randomDoubleBattleLevel: 76,
|
|
1541
1146
|
tier: "UUBL",
|
|
1542
1147
|
doublesTier: "DUU",
|
|
1543
1148
|
natDexTier: "UUBL",
|
|
1544
1149
|
},
|
|
1545
1150
|
moltres: {
|
|
1546
|
-
randomBattleMoves: ["airslash", "defog", "fireblast", "roost", "uturn"],
|
|
1547
|
-
randomBattleLevel: 80,
|
|
1548
|
-
randomDoubleBattleMoves: ["bravebird", "fireblast", "heatwave", "protect", "roost", "tailwind"],
|
|
1549
|
-
randomDoubleBattleLevel: 81,
|
|
1550
|
-
randomBattleNoDynamaxMoves: ["defog", "fireblast", "hurricane", "roost", "uturn"],
|
|
1551
1151
|
tier: "UU",
|
|
1552
1152
|
doublesTier: "(DUU)",
|
|
1553
1153
|
natDexTier: "UU",
|
|
1554
1154
|
},
|
|
1555
1155
|
moltresgalar: {
|
|
1556
|
-
randomBattleMoves: ["fierywrath", "hurricane", "nastyplot", "rest"],
|
|
1557
|
-
randomBattleLevel: 75,
|
|
1558
|
-
randomDoubleBattleMoves: ["fierywrath", "hurricane", "nastyplot", "protect"],
|
|
1559
|
-
randomDoubleBattleLevel: 75,
|
|
1560
|
-
randomBattleNoDynamaxMoves: ["agility", "fierywrath", "hurricane", "nastyplot", "rest"],
|
|
1561
1156
|
tier: "UUBL",
|
|
1562
1157
|
doublesTier: "DUU",
|
|
1563
1158
|
natDexTier: "UUBL",
|
|
@@ -1569,20 +1164,11 @@ exports.FormatsData = {
|
|
|
1569
1164
|
tier: "NFE",
|
|
1570
1165
|
},
|
|
1571
1166
|
dragonite: {
|
|
1572
|
-
randomBattleMoves: ["dragondance", "dualwingbeat", "earthquake", "extremespeed", "outrage"],
|
|
1573
|
-
randomBattleLevel: 75,
|
|
1574
|
-
randomDoubleBattleMoves: ["dragonclaw", "dragondance", "dualwingbeat", "extremespeed", "firepunch"],
|
|
1575
|
-
randomDoubleBattleLevel: 82,
|
|
1576
|
-
randomBattleNoDynamaxMoves: ["dragondance", "dualwingbeat", "earthquake", "outrage", "roost"],
|
|
1577
1167
|
tier: "OU",
|
|
1578
1168
|
doublesTier: "(DUU)",
|
|
1579
1169
|
natDexTier: "UU",
|
|
1580
1170
|
},
|
|
1581
1171
|
mewtwo: {
|
|
1582
|
-
randomBattleMoves: ["fireblast", "nastyplot", "psystrike", "recover", "shadowball"],
|
|
1583
|
-
randomBattleLevel: 72,
|
|
1584
|
-
randomDoubleBattleMoves: ["aurasphere", "icebeam", "nastyplot", "psystrike", "recover"],
|
|
1585
|
-
randomDoubleBattleLevel: 74,
|
|
1586
1172
|
tier: "Uber",
|
|
1587
1173
|
doublesTier: "DUber",
|
|
1588
1174
|
natDexTier: "Uber",
|
|
@@ -1598,11 +1184,6 @@ exports.FormatsData = {
|
|
|
1598
1184
|
natDexTier: "Uber",
|
|
1599
1185
|
},
|
|
1600
1186
|
mew: {
|
|
1601
|
-
randomBattleMoves: ["bravebird", "closecombat", "dragondance", "flareblitz", "psychicfangs", "swordsdance"],
|
|
1602
|
-
randomBattleLevel: 80,
|
|
1603
|
-
randomDoubleBattleMoves: ["fakeout", "pollenpuff", "psychic", "stealthrock", "tailwind", "toxicspikes", "transform"],
|
|
1604
|
-
randomDoubleBattleLevel: 80,
|
|
1605
|
-
randomBattleNoDynamaxMoves: ["fireblast", "nastyplot", "psychic", "roost", "stealthrock", "toxicspikes"],
|
|
1606
1187
|
tier: "OU",
|
|
1607
1188
|
doublesTier: "DOU",
|
|
1608
1189
|
natDexTier: "UUBL",
|
|
@@ -1670,11 +1251,6 @@ exports.FormatsData = {
|
|
|
1670
1251
|
tier: "LC",
|
|
1671
1252
|
},
|
|
1672
1253
|
noctowl: {
|
|
1673
|
-
randomBattleMoves: ["defog", "heatwave", "hurricane", "nastyplot", "roost"],
|
|
1674
|
-
randomBattleLevel: 88,
|
|
1675
|
-
randomDoubleBattleMoves: ["airslash", "heatwave", "hypervoice", "nastyplot", "roost", "tailwind"],
|
|
1676
|
-
randomDoubleBattleLevel: 84,
|
|
1677
|
-
randomBattleNoDynamaxMoves: ["defog", "heatwave", "hurricane", "nastyplot", "roost"],
|
|
1678
1254
|
tier: "(PU)",
|
|
1679
1255
|
doublesTier: "(DUU)",
|
|
1680
1256
|
natDexTier: "RU",
|
|
@@ -1703,10 +1279,6 @@ exports.FormatsData = {
|
|
|
1703
1279
|
tier: "LC",
|
|
1704
1280
|
},
|
|
1705
1281
|
lanturn: {
|
|
1706
|
-
randomBattleMoves: ["healbell", "icebeam", "scald", "thunderbolt", "toxic", "voltswitch"],
|
|
1707
|
-
randomBattleLevel: 86,
|
|
1708
|
-
randomDoubleBattleMoves: ["healbell", "icebeam", "protect", "scald", "thunderbolt", "thunderwave"],
|
|
1709
|
-
randomDoubleBattleLevel: 90,
|
|
1710
1282
|
tier: "PU",
|
|
1711
1283
|
doublesTier: "(DUU)",
|
|
1712
1284
|
natDexTier: "RU",
|
|
@@ -1718,10 +1290,6 @@ exports.FormatsData = {
|
|
|
1718
1290
|
tier: "NFE",
|
|
1719
1291
|
},
|
|
1720
1292
|
togekiss: {
|
|
1721
|
-
randomBattleMoves: ["airslash", "aurasphere", "fireblast", "nastyplot", "roost", "thunderwave", "trick"],
|
|
1722
|
-
randomBattleLevel: 80,
|
|
1723
|
-
randomDoubleBattleMoves: ["airslash", "dazzlinggleam", "followme", "helpinghand", "protect", "tailwind"],
|
|
1724
|
-
randomDoubleBattleLevel: 80,
|
|
1725
1293
|
tier: "RU",
|
|
1726
1294
|
doublesTier: "DUU",
|
|
1727
1295
|
natDexTier: "RU",
|
|
@@ -1730,10 +1298,6 @@ exports.FormatsData = {
|
|
|
1730
1298
|
tier: "LC",
|
|
1731
1299
|
},
|
|
1732
1300
|
xatu: {
|
|
1733
|
-
randomBattleMoves: ["heatwave", "psychic", "roost", "teleport", "thunderwave"],
|
|
1734
|
-
randomBattleLevel: 89,
|
|
1735
|
-
randomDoubleBattleMoves: ["airslash", "heatwave", "lightscreen", "psychic", "reflect", "roost", "tailwind"],
|
|
1736
|
-
randomDoubleBattleLevel: 88,
|
|
1737
1301
|
tier: "NU",
|
|
1738
1302
|
doublesTier: "(DUU)",
|
|
1739
1303
|
natDexTier: "RU",
|
|
@@ -1765,10 +1329,6 @@ exports.FormatsData = {
|
|
|
1765
1329
|
tier: "NFE",
|
|
1766
1330
|
},
|
|
1767
1331
|
azumarill: {
|
|
1768
|
-
randomBattleMoves: ["aquajet", "knockoff", "liquidation", "playrough", "superpower"],
|
|
1769
|
-
randomBattleLevel: 84,
|
|
1770
|
-
randomDoubleBattleMoves: ["aquajet", "knockoff", "liquidation", "playrough", "protect"],
|
|
1771
|
-
randomDoubleBattleLevel: 87,
|
|
1772
1332
|
tier: "UU",
|
|
1773
1333
|
doublesTier: "(DUU)",
|
|
1774
1334
|
natDexTier: "RUBL",
|
|
@@ -1777,10 +1337,6 @@ exports.FormatsData = {
|
|
|
1777
1337
|
tier: "LC",
|
|
1778
1338
|
},
|
|
1779
1339
|
sudowoodo: {
|
|
1780
|
-
randomBattleMoves: ["earthquake", "headsmash", "stealthrock", "suckerpunch", "woodhammer"],
|
|
1781
|
-
randomBattleLevel: 87,
|
|
1782
|
-
randomDoubleBattleMoves: ["bodypress", "firepunch", "headsmash", "protect", "suckerpunch", "woodhammer"],
|
|
1783
|
-
randomDoubleBattleLevel: 90,
|
|
1784
1340
|
tier: "(PU)",
|
|
1785
1341
|
doublesTier: "(DUU)",
|
|
1786
1342
|
natDexTier: "RU",
|
|
@@ -1834,10 +1390,6 @@ exports.FormatsData = {
|
|
|
1834
1390
|
tier: "LC",
|
|
1835
1391
|
},
|
|
1836
1392
|
quagsire: {
|
|
1837
|
-
randomBattleMoves: ["earthquake", "icebeam", "recover", "scald", "toxic"],
|
|
1838
|
-
randomBattleLevel: 84,
|
|
1839
|
-
randomDoubleBattleMoves: ["highhorsepower", "protect", "recover", "scald", "yawn"],
|
|
1840
|
-
randomDoubleBattleLevel: 88,
|
|
1841
1393
|
tier: "PU",
|
|
1842
1394
|
doublesTier: "(DUU)",
|
|
1843
1395
|
natDexTier: "RU",
|
|
@@ -1871,11 +1423,6 @@ exports.FormatsData = {
|
|
|
1871
1423
|
tier: "LC",
|
|
1872
1424
|
},
|
|
1873
1425
|
wobbuffet: {
|
|
1874
|
-
randomBattleMoves: ["charm", "counter", "encore", "mirrorcoat"],
|
|
1875
|
-
randomBattleLevel: 92,
|
|
1876
|
-
randomDoubleBattleMoves: ["charm", "counter", "encore", "mirrorcoat"],
|
|
1877
|
-
randomDoubleBattleLevel: 100,
|
|
1878
|
-
randomBattleNoDynamaxMoves: ["counter", "destinybond", "encore", "mirrorcoat"],
|
|
1879
1426
|
tier: "(PU)",
|
|
1880
1427
|
doublesTier: "(DUU)",
|
|
1881
1428
|
natDexTier: "RU",
|
|
@@ -1896,10 +1443,6 @@ exports.FormatsData = {
|
|
|
1896
1443
|
natDexTier: "RU",
|
|
1897
1444
|
},
|
|
1898
1445
|
dunsparce: {
|
|
1899
|
-
randomBattleMoves: ["bodyslam", "coil", "earthquake", "roost"],
|
|
1900
|
-
randomBattleLevel: 90,
|
|
1901
|
-
randomDoubleBattleMoves: ["glare", "headbutt", "protect", "rockslide"],
|
|
1902
|
-
randomDoubleBattleLevel: 90,
|
|
1903
1446
|
tier: "(PU)",
|
|
1904
1447
|
doublesTier: "(DUU)",
|
|
1905
1448
|
natDexTier: "RU",
|
|
@@ -1925,10 +1468,6 @@ exports.FormatsData = {
|
|
|
1925
1468
|
natDexTier: "RU",
|
|
1926
1469
|
},
|
|
1927
1470
|
qwilfish: {
|
|
1928
|
-
randomBattleMoves: ["destinybond", "spikes", "taunt", "thunderwave", "toxicspikes", "waterfall"],
|
|
1929
|
-
randomBattleLevel: 84,
|
|
1930
|
-
randomDoubleBattleMoves: ["liquidation", "poisonjab", "protect", "taunt", "thunderwave", "toxicspikes"],
|
|
1931
|
-
randomDoubleBattleLevel: 88,
|
|
1932
1471
|
tier: "(PU)",
|
|
1933
1472
|
doublesTier: "(DUU)",
|
|
1934
1473
|
natDexTier: "RU",
|
|
@@ -1938,19 +1477,11 @@ exports.FormatsData = {
|
|
|
1938
1477
|
tier: "Illegal",
|
|
1939
1478
|
},
|
|
1940
1479
|
shuckle: {
|
|
1941
|
-
randomBattleMoves: ["encore", "knockoff", "stealthrock", "stickyweb", "toxic"],
|
|
1942
|
-
randomBattleLevel: 87,
|
|
1943
|
-
randomDoubleBattleMoves: ["acupressure", "guardsplit", "helpinghand", "infestation", "knockoff", "stealthrock", "stickyweb", "toxic"],
|
|
1944
|
-
randomDoubleBattleLevel: 100,
|
|
1945
1480
|
tier: "(PU)",
|
|
1946
1481
|
doublesTier: "(DUU)",
|
|
1947
1482
|
natDexTier: "RU",
|
|
1948
1483
|
},
|
|
1949
1484
|
heracross: {
|
|
1950
|
-
randomBattleMoves: ["closecombat", "facade", "knockoff", "megahorn"],
|
|
1951
|
-
randomBattleLevel: 82,
|
|
1952
|
-
randomDoubleBattleMoves: ["closecombat", "facade", "knockoff", "megahorn", "protect", "swordsdance"],
|
|
1953
|
-
randomDoubleBattleLevel: 84,
|
|
1954
1485
|
tier: "RU",
|
|
1955
1486
|
doublesTier: "(DUU)",
|
|
1956
1487
|
natDexTier: "RUBL",
|
|
@@ -1969,10 +1500,6 @@ exports.FormatsData = {
|
|
|
1969
1500
|
tier: "Illegal",
|
|
1970
1501
|
},
|
|
1971
1502
|
weavile: {
|
|
1972
|
-
randomBattleMoves: ["iceshard", "knockoff", "lowkick", "swordsdance", "tripleaxel"],
|
|
1973
|
-
randomBattleLevel: 79,
|
|
1974
|
-
randomDoubleBattleMoves: ["fakeout", "iceshard", "knockoff", "lowkick", "tripleaxel"],
|
|
1975
|
-
randomDoubleBattleLevel: 84,
|
|
1976
1503
|
tier: "OU",
|
|
1977
1504
|
doublesTier: "DUU",
|
|
1978
1505
|
natDexTier: "OU",
|
|
@@ -2004,34 +1531,20 @@ exports.FormatsData = {
|
|
|
2004
1531
|
tier: "NFE",
|
|
2005
1532
|
},
|
|
2006
1533
|
mamoswine: {
|
|
2007
|
-
randomBattleMoves: ["earthquake", "iceshard", "iciclecrash", "knockoff", "stealthrock", "superpower"],
|
|
2008
|
-
randomBattleLevel: 80,
|
|
2009
|
-
randomDoubleBattleMoves: ["highhorsepower", "iceshard", "iciclecrash", "protect", "rockslide"],
|
|
2010
|
-
randomDoubleBattleLevel: 83,
|
|
2011
1534
|
tier: "UU",
|
|
2012
1535
|
doublesTier: "(DUU)",
|
|
2013
1536
|
natDexTier: "UU",
|
|
2014
1537
|
},
|
|
2015
1538
|
corsola: {
|
|
2016
|
-
randomBattleMoves: ["powergem", "recover", "scald", "stealthrock", "toxic"],
|
|
2017
|
-
randomBattleLevel: 93,
|
|
2018
|
-
randomDoubleBattleMoves: ["icywind", "lifedew", "recover", "scald", "toxic"],
|
|
2019
|
-
randomDoubleBattleLevel: 95,
|
|
2020
1539
|
tier: "(PU)",
|
|
2021
1540
|
doublesTier: "(DUU)",
|
|
2022
1541
|
natDexTier: "RU",
|
|
2023
1542
|
},
|
|
2024
1543
|
corsolagalar: {
|
|
2025
|
-
randomBattleMoves: ["haze", "nightshade", "stealthrock", "strengthsap", "willowisp"],
|
|
2026
|
-
randomBattleLevel: 84,
|
|
2027
1544
|
tier: "NFE",
|
|
2028
1545
|
natDexTier: "LC",
|
|
2029
1546
|
},
|
|
2030
1547
|
cursola: {
|
|
2031
|
-
randomBattleMoves: ["earthpower", "hydropump", "icebeam", "shadowball", "stealthrock", "strengthsap"],
|
|
2032
|
-
randomBattleLevel: 86,
|
|
2033
|
-
randomDoubleBattleMoves: ["earthpower", "hydropump", "icebeam", "protect", "shadowball", "strengthsap"],
|
|
2034
|
-
randomDoubleBattleLevel: 88,
|
|
2035
1548
|
tier: "(PU)",
|
|
2036
1549
|
doublesTier: "(DUU)",
|
|
2037
1550
|
natDexTier: "RU",
|
|
@@ -2040,19 +1553,11 @@ exports.FormatsData = {
|
|
|
2040
1553
|
tier: "LC",
|
|
2041
1554
|
},
|
|
2042
1555
|
octillery: {
|
|
2043
|
-
randomBattleMoves: ["energyball", "fireblast", "gunkshot", "hydropump", "icebeam", "protect"],
|
|
2044
|
-
randomBattleLevel: 86,
|
|
2045
|
-
randomDoubleBattleMoves: ["fireblast", "gunkshot", "hydropump", "icebeam", "protect", "substitute"],
|
|
2046
|
-
randomDoubleBattleLevel: 84,
|
|
2047
1556
|
tier: "(PU)",
|
|
2048
1557
|
doublesTier: "(DUU)",
|
|
2049
1558
|
natDexTier: "RU",
|
|
2050
1559
|
},
|
|
2051
1560
|
delibird: {
|
|
2052
|
-
randomBattleMoves: ["freezedry", "memento", "rapidspin", "spikes"],
|
|
2053
|
-
randomBattleLevel: 100,
|
|
2054
|
-
randomDoubleBattleMoves: ["bravebird", "defog", "fakeout", "helpinghand", "icepunch", "memento", "tailwind"],
|
|
2055
|
-
randomDoubleBattleLevel: 100,
|
|
2056
1561
|
tier: "(PU)",
|
|
2057
1562
|
doublesTier: "(DUU)",
|
|
2058
1563
|
natDexTier: "RU",
|
|
@@ -2061,19 +1566,11 @@ exports.FormatsData = {
|
|
|
2061
1566
|
tier: "LC",
|
|
2062
1567
|
},
|
|
2063
1568
|
mantine: {
|
|
2064
|
-
randomBattleMoves: ["defog", "hurricane", "icebeam", "roost", "scald", "toxic"],
|
|
2065
|
-
randomBattleLevel: 86,
|
|
2066
|
-
randomDoubleBattleMoves: ["haze", "helpinghand", "hurricane", "roost", "scald", "tailwind"],
|
|
2067
|
-
randomDoubleBattleLevel: 88,
|
|
2068
1569
|
tier: "NU",
|
|
2069
1570
|
doublesTier: "(DUU)",
|
|
2070
1571
|
natDexTier: "RU",
|
|
2071
1572
|
},
|
|
2072
1573
|
skarmory: {
|
|
2073
|
-
randomBattleMoves: ["bodypress", "bravebird", "roost", "spikes", "stealthrock", "whirlwind"],
|
|
2074
|
-
randomBattleLevel: 80,
|
|
2075
|
-
randomDoubleBattleMoves: ["bodypress", "bravebird", "irondefense", "roost"],
|
|
2076
|
-
randomDoubleBattleLevel: 84,
|
|
2077
1574
|
tier: "UU",
|
|
2078
1575
|
doublesTier: "(DUU)",
|
|
2079
1576
|
natDexTier: "UU",
|
|
@@ -2114,38 +1611,21 @@ exports.FormatsData = {
|
|
|
2114
1611
|
natDexTier: "RU",
|
|
2115
1612
|
},
|
|
2116
1613
|
miltank: {
|
|
2117
|
-
randomBattleMoves: ["bodyslam", "earthquake", "healbell", "milkdrink", "stealthrock", "toxic"],
|
|
2118
|
-
randomBattleLevel: 84,
|
|
2119
|
-
randomDoubleBattleMoves: ["bodypress", "bodyslam", "helpinghand", "icywind", "milkdrink", "protect", "rockslide"],
|
|
2120
|
-
randomDoubleBattleLevel: 86,
|
|
2121
1614
|
tier: "(PU)",
|
|
2122
1615
|
doublesTier: "(DUU)",
|
|
2123
1616
|
natDexTier: "RU",
|
|
2124
1617
|
},
|
|
2125
1618
|
raikou: {
|
|
2126
|
-
randomBattleMoves: ["aurasphere", "calmmind", "scald", "substitute", "thunderbolt", "voltswitch"],
|
|
2127
|
-
randomBattleLevel: 80,
|
|
2128
|
-
randomDoubleBattleMoves: ["aurasphere", "calmmind", "protect", "scald", "snarl", "thunderbolt", "voltswitch"],
|
|
2129
|
-
randomDoubleBattleLevel: 82,
|
|
2130
1619
|
tier: "RU",
|
|
2131
1620
|
doublesTier: "(DUU)",
|
|
2132
1621
|
natDexTier: "RU",
|
|
2133
1622
|
},
|
|
2134
1623
|
entei: {
|
|
2135
|
-
randomBattleMoves: ["extremespeed", "flareblitz", "sacredfire", "stompingtantrum", "stoneedge"],
|
|
2136
|
-
randomBattleLevel: 78,
|
|
2137
|
-
randomDoubleBattleMoves: ["extremespeed", "protect", "sacredfire", "snarl", "stompingtantrum", "stoneedge"],
|
|
2138
|
-
randomDoubleBattleLevel: 79,
|
|
2139
1624
|
tier: "NUBL",
|
|
2140
1625
|
doublesTier: "(DUU)",
|
|
2141
1626
|
natDexTier: "RU",
|
|
2142
1627
|
},
|
|
2143
1628
|
suicune: {
|
|
2144
|
-
randomBattleMoves: ["airslash", "calmmind", "icebeam", "rest", "scald", "sleeptalk"],
|
|
2145
|
-
randomBattleLevel: 80,
|
|
2146
|
-
randomDoubleBattleMoves: ["calmmind", "icebeam", "scald", "snarl", "tailwind"],
|
|
2147
|
-
randomDoubleBattleLevel: 82,
|
|
2148
|
-
randomBattleNoDynamaxMoves: ["calmmind", "icebeam", "rest", "scald", "sleeptalk"],
|
|
2149
1629
|
tier: "RU",
|
|
2150
1630
|
doublesTier: "(DUU)",
|
|
2151
1631
|
natDexTier: "RU",
|
|
@@ -2157,10 +1637,6 @@ exports.FormatsData = {
|
|
|
2157
1637
|
tier: "NFE",
|
|
2158
1638
|
},
|
|
2159
1639
|
tyranitar: {
|
|
2160
|
-
randomBattleMoves: ["crunch", "dragondance", "earthquake", "firepunch", "stealthrock", "stoneedge"],
|
|
2161
|
-
randomBattleLevel: 78,
|
|
2162
|
-
randomDoubleBattleMoves: ["dragondance", "firepunch", "highhorsepower", "lashout", "protect", "rockslide", "stoneedge"],
|
|
2163
|
-
randomDoubleBattleLevel: 80,
|
|
2164
1640
|
tier: "OU",
|
|
2165
1641
|
doublesTier: "DOU",
|
|
2166
1642
|
natDexTier: "OU",
|
|
@@ -2171,28 +1647,16 @@ exports.FormatsData = {
|
|
|
2171
1647
|
natDexTier: "(OU)",
|
|
2172
1648
|
},
|
|
2173
1649
|
lugia: {
|
|
2174
|
-
randomBattleMoves: ["airslash", "earthquake", "roost", "substitute", "toxic"],
|
|
2175
|
-
randomBattleLevel: 74,
|
|
2176
|
-
randomDoubleBattleMoves: ["aeroblast", "calmmind", "psyshock", "roost", "toxic"],
|
|
2177
|
-
randomDoubleBattleLevel: 72,
|
|
2178
1650
|
tier: "Uber",
|
|
2179
1651
|
doublesTier: "DUber",
|
|
2180
1652
|
natDexTier: "Uber",
|
|
2181
1653
|
},
|
|
2182
1654
|
hooh: {
|
|
2183
|
-
randomBattleMoves: ["bravebird", "defog", "earthquake", "roost", "sacredfire", "toxic"],
|
|
2184
|
-
randomBattleLevel: 72,
|
|
2185
|
-
randomDoubleBattleMoves: ["bravebird", "earthpower", "protect", "roost", "sacredfire", "tailwind"],
|
|
2186
|
-
randomDoubleBattleLevel: 72,
|
|
2187
1655
|
tier: "Uber",
|
|
2188
1656
|
doublesTier: "DUber",
|
|
2189
1657
|
natDexTier: "Uber",
|
|
2190
1658
|
},
|
|
2191
1659
|
celebi: {
|
|
2192
|
-
randomBattleMoves: ["earthpower", "gigadrain", "leafstorm", "nastyplot", "psychic", "recover", "stealthrock", "uturn"],
|
|
2193
|
-
randomBattleLevel: 82,
|
|
2194
|
-
randomDoubleBattleMoves: ["earthpower", "energyball", "nastyplot", "protect", "psychic", "recover"],
|
|
2195
|
-
randomDoubleBattleLevel: 84,
|
|
2196
1660
|
tier: "RU",
|
|
2197
1661
|
doublesTier: "(DUU)",
|
|
2198
1662
|
},
|
|
@@ -2203,10 +1667,6 @@ exports.FormatsData = {
|
|
|
2203
1667
|
tier: "NFE",
|
|
2204
1668
|
},
|
|
2205
1669
|
sceptile: {
|
|
2206
|
-
randomBattleMoves: ["earthquake", "focusblast", "gigadrain", "leafstorm", "leechseed", "rockslide", "substitute"],
|
|
2207
|
-
randomBattleLevel: 86,
|
|
2208
|
-
randomDoubleBattleMoves: ["breakingswipe", "energyball", "focusblast", "leafstorm"],
|
|
2209
|
-
randomDoubleBattleLevel: 88,
|
|
2210
1670
|
tier: "PUBL",
|
|
2211
1671
|
doublesTier: "(DUU)",
|
|
2212
1672
|
natDexTier: "RU",
|
|
@@ -2223,10 +1683,6 @@ exports.FormatsData = {
|
|
|
2223
1683
|
tier: "NFE",
|
|
2224
1684
|
},
|
|
2225
1685
|
blaziken: {
|
|
2226
|
-
randomBattleMoves: ["closecombat", "flareblitz", "knockoff", "stoneedge", "swordsdance"],
|
|
2227
|
-
randomBattleLevel: 76,
|
|
2228
|
-
randomDoubleBattleMoves: ["closecombat", "flareblitz", "knockoff", "protect", "swordsdance"],
|
|
2229
|
-
randomDoubleBattleLevel: 78,
|
|
2230
1686
|
tier: "UUBL",
|
|
2231
1687
|
doublesTier: "(DUU)",
|
|
2232
1688
|
natDexTier: "UUBL",
|
|
@@ -2243,10 +1699,6 @@ exports.FormatsData = {
|
|
|
2243
1699
|
tier: "NFE",
|
|
2244
1700
|
},
|
|
2245
1701
|
swampert: {
|
|
2246
|
-
randomBattleMoves: ["earthquake", "flipturn", "icebeam", "protect", "scald", "stealthrock", "toxic"],
|
|
2247
|
-
randomBattleLevel: 80,
|
|
2248
|
-
randomDoubleBattleMoves: ["highhorsepower", "icywind", "liquidation", "muddywater", "protect", "stealthrock", "wideguard"],
|
|
2249
|
-
randomDoubleBattleLevel: 86,
|
|
2250
1702
|
tier: "UU",
|
|
2251
1703
|
doublesTier: "(DUU)",
|
|
2252
1704
|
natDexTier: "UU",
|
|
@@ -2274,10 +1726,6 @@ exports.FormatsData = {
|
|
|
2274
1726
|
tier: "LC",
|
|
2275
1727
|
},
|
|
2276
1728
|
linoone: {
|
|
2277
|
-
randomBattleMoves: ["bellydrum", "extremespeed", "stompingtantrum", "throatchop"],
|
|
2278
|
-
randomBattleLevel: 84,
|
|
2279
|
-
randomDoubleBattleMoves: ["bellydrum", "extremespeed", "protect", "throatchop"],
|
|
2280
|
-
randomDoubleBattleLevel: 90,
|
|
2281
1729
|
tier: "NUBL",
|
|
2282
1730
|
doublesTier: "(DUU)",
|
|
2283
1731
|
natDexTier: "RU",
|
|
@@ -2286,10 +1734,6 @@ exports.FormatsData = {
|
|
|
2286
1734
|
tier: "NFE",
|
|
2287
1735
|
},
|
|
2288
1736
|
obstagoon: {
|
|
2289
|
-
randomBattleMoves: ["bulkup", "closecombat", "facade", "knockoff", "partingshot"],
|
|
2290
|
-
randomBattleLevel: 80,
|
|
2291
|
-
randomDoubleBattleMoves: ["closecombat", "facade", "knockoff", "obstruct", "partingshot", "taunt"],
|
|
2292
|
-
randomDoubleBattleLevel: 86,
|
|
2293
1737
|
tier: "RUBL",
|
|
2294
1738
|
doublesTier: "(DUU)",
|
|
2295
1739
|
natDexTier: "RU",
|
|
@@ -2326,10 +1770,6 @@ exports.FormatsData = {
|
|
|
2326
1770
|
tier: "NFE",
|
|
2327
1771
|
},
|
|
2328
1772
|
ludicolo: {
|
|
2329
|
-
randomBattleMoves: ["gigadrain", "hydropump", "icebeam", "raindance", "scald"],
|
|
2330
|
-
randomBattleLevel: 86,
|
|
2331
|
-
randomDoubleBattleMoves: ["energyball", "fakeout", "hydropump", "icebeam", "raindance"],
|
|
2332
|
-
randomDoubleBattleLevel: 86,
|
|
2333
1773
|
tier: "(PU)",
|
|
2334
1774
|
doublesTier: "(DUU)",
|
|
2335
1775
|
natDexTier: "RU",
|
|
@@ -2341,11 +1781,6 @@ exports.FormatsData = {
|
|
|
2341
1781
|
tier: "NFE",
|
|
2342
1782
|
},
|
|
2343
1783
|
shiftry: {
|
|
2344
|
-
randomBattleMoves: ["darkpulse", "defog", "heatwave", "leafstorm", "nastyplot", "suckerpunch"],
|
|
2345
|
-
randomBattleLevel: 86,
|
|
2346
|
-
randomDoubleBattleMoves: ["defog", "fakeout", "knockoff", "leafblade", "suckerpunch", "tailwind"],
|
|
2347
|
-
randomDoubleBattleLevel: 88,
|
|
2348
|
-
randomBattleNoDynamaxMoves: ["defog", "knockoff", "leafblade", "lowkick", "rockslide", "suckerpunch", "swordsdance"],
|
|
2349
1784
|
tier: "(PU)",
|
|
2350
1785
|
doublesTier: "(DUU)",
|
|
2351
1786
|
natDexTier: "RU",
|
|
@@ -2364,10 +1799,6 @@ exports.FormatsData = {
|
|
|
2364
1799
|
tier: "LC",
|
|
2365
1800
|
},
|
|
2366
1801
|
pelipper: {
|
|
2367
|
-
randomBattleMoves: ["defog", "hurricane", "hydropump", "roost", "scald", "uturn"],
|
|
2368
|
-
randomBattleLevel: 86,
|
|
2369
|
-
randomDoubleBattleMoves: ["hurricane", "hydropump", "protect", "roost", "tailwind", "wideguard"],
|
|
2370
|
-
randomDoubleBattleLevel: 83,
|
|
2371
1802
|
tier: "OU",
|
|
2372
1803
|
doublesTier: "DOU",
|
|
2373
1804
|
natDexTier: "OU",
|
|
@@ -2379,10 +1810,6 @@ exports.FormatsData = {
|
|
|
2379
1810
|
tier: "NFE",
|
|
2380
1811
|
},
|
|
2381
1812
|
gardevoir: {
|
|
2382
|
-
randomBattleMoves: ["calmmind", "moonblast", "mysticalfire", "psyshock", "substitute", "trick", "willowisp"],
|
|
2383
|
-
randomBattleLevel: 82,
|
|
2384
|
-
randomDoubleBattleMoves: ["calmmind", "dazzlinggleam", "moonblast", "mysticalfire", "protect", "psyshock", "trick"],
|
|
2385
|
-
randomDoubleBattleLevel: 84,
|
|
2386
1813
|
tier: "RU",
|
|
2387
1814
|
doublesTier: "(DUU)",
|
|
2388
1815
|
natDexTier: "RU",
|
|
@@ -2393,10 +1820,6 @@ exports.FormatsData = {
|
|
|
2393
1820
|
natDexTier: "UUBL",
|
|
2394
1821
|
},
|
|
2395
1822
|
gallade: {
|
|
2396
|
-
randomBattleMoves: ["closecombat", "knockoff", "shadowsneak", "swordsdance", "trick", "zenheadbutt"],
|
|
2397
|
-
randomBattleLevel: 82,
|
|
2398
|
-
randomDoubleBattleMoves: ["closecombat", "feint", "knockoff", "protect", "swordsdance", "tripleaxel", "zenheadbutt"],
|
|
2399
|
-
randomDoubleBattleLevel: 86,
|
|
2400
1823
|
tier: "PU",
|
|
2401
1824
|
doublesTier: "(DUU)",
|
|
2402
1825
|
natDexTier: "RU",
|
|
@@ -2445,19 +1868,11 @@ exports.FormatsData = {
|
|
|
2445
1868
|
tier: "LC",
|
|
2446
1869
|
},
|
|
2447
1870
|
ninjask: {
|
|
2448
|
-
randomBattleMoves: ["acrobatics", "leechlife", "swordsdance", "uturn"],
|
|
2449
|
-
randomBattleLevel: 86,
|
|
2450
|
-
randomDoubleBattleMoves: ["acrobatics", "defog", "leechlife", "protect", "swordsdance"],
|
|
2451
|
-
randomDoubleBattleLevel: 88,
|
|
2452
1871
|
tier: "(PU)",
|
|
2453
1872
|
doublesTier: "(DUU)",
|
|
2454
1873
|
natDexTier: "RU",
|
|
2455
1874
|
},
|
|
2456
1875
|
shedinja: {
|
|
2457
|
-
randomBattleMoves: ["poltergeist", "shadowsneak", "swordsdance", "willowisp", "xscissor"],
|
|
2458
|
-
randomBattleLevel: 88,
|
|
2459
|
-
randomDoubleBattleMoves: ["poltergeist", "protect", "shadowsneak", "swordsdance", "willowisp", "xscissor"],
|
|
2460
|
-
randomDoubleBattleLevel: 95,
|
|
2461
1876
|
tier: "(PU)",
|
|
2462
1877
|
doublesTier: "(DUU)",
|
|
2463
1878
|
natDexTier: "RU",
|
|
@@ -2469,10 +1884,6 @@ exports.FormatsData = {
|
|
|
2469
1884
|
tier: "NFE",
|
|
2470
1885
|
},
|
|
2471
1886
|
exploud: {
|
|
2472
|
-
randomBattleMoves: ["boomburst", "fireblast", "focusblast", "surf"],
|
|
2473
|
-
randomBattleLevel: 84,
|
|
2474
|
-
randomDoubleBattleMoves: ["boomburst", "fireblast", "focusblast", "hypervoice", "icywind", "protect"],
|
|
2475
|
-
randomDoubleBattleLevel: 88,
|
|
2476
1887
|
tier: "NU",
|
|
2477
1888
|
doublesTier: "(DUU)",
|
|
2478
1889
|
natDexTier: "RU",
|
|
@@ -2508,11 +1919,6 @@ exports.FormatsData = {
|
|
|
2508
1919
|
natDexTier: "RU",
|
|
2509
1920
|
},
|
|
2510
1921
|
sableye: {
|
|
2511
|
-
randomBattleMoves: ["knockoff", "recover", "taunt", "toxic", "willowisp"],
|
|
2512
|
-
randomBattleLevel: 88,
|
|
2513
|
-
randomDoubleBattleMoves: ["disable", "encore", "fakeout", "foulplay", "knockoff", "quash", "recover", "willowisp"],
|
|
2514
|
-
randomDoubleBattleLevel: 88,
|
|
2515
|
-
randomBattleNoDynamaxMoves: ["encore", "knockoff", "recover", "taunt", "toxic", "willowisp"],
|
|
2516
1922
|
tier: "(PU)",
|
|
2517
1923
|
doublesTier: "(DUU)",
|
|
2518
1924
|
natDexTier: "RU",
|
|
@@ -2523,10 +1929,6 @@ exports.FormatsData = {
|
|
|
2523
1929
|
natDexTier: "UUBL",
|
|
2524
1930
|
},
|
|
2525
1931
|
mawile: {
|
|
2526
|
-
randomBattleMoves: ["ironhead", "playrough", "stealthrock", "suckerpunch", "swordsdance"],
|
|
2527
|
-
randomBattleLevel: 86,
|
|
2528
|
-
randomDoubleBattleMoves: ["firefang", "ironhead", "playrough", "protect", "suckerpunch", "swordsdance"],
|
|
2529
|
-
randomDoubleBattleLevel: 88,
|
|
2530
1932
|
tier: "(PU)",
|
|
2531
1933
|
doublesTier: "(DUU)",
|
|
2532
1934
|
natDexTier: "RU",
|
|
@@ -2543,10 +1945,6 @@ exports.FormatsData = {
|
|
|
2543
1945
|
tier: "NFE",
|
|
2544
1946
|
},
|
|
2545
1947
|
aggron: {
|
|
2546
|
-
randomBattleMoves: ["bodypress", "earthquake", "headsmash", "heavyslam", "rockpolish", "stealthrock"],
|
|
2547
|
-
randomBattleLevel: 85,
|
|
2548
|
-
randomDoubleBattleMoves: ["aquatail", "bodypress", "headsmash", "heavyslam", "highhorsepower", "rockpolish"],
|
|
2549
|
-
randomDoubleBattleLevel: 89,
|
|
2550
1948
|
tier: "PU",
|
|
2551
1949
|
doublesTier: "(DUU)",
|
|
2552
1950
|
natDexTier: "RU",
|
|
@@ -2575,10 +1973,6 @@ exports.FormatsData = {
|
|
|
2575
1973
|
tier: "LC",
|
|
2576
1974
|
},
|
|
2577
1975
|
manectric: {
|
|
2578
|
-
randomBattleMoves: ["flamethrower", "overheat", "switcheroo", "thunderbolt", "voltswitch"],
|
|
2579
|
-
randomBattleLevel: 86,
|
|
2580
|
-
randomDoubleBattleMoves: ["overheat", "protect", "snarl", "thunderbolt", "voltswitch"],
|
|
2581
|
-
randomDoubleBattleLevel: 88,
|
|
2582
1976
|
tier: "(PU)",
|
|
2583
1977
|
doublesTier: "(DUU)",
|
|
2584
1978
|
natDexTier: "RU",
|
|
@@ -2615,10 +2009,6 @@ exports.FormatsData = {
|
|
|
2615
2009
|
tier: "NFE",
|
|
2616
2010
|
},
|
|
2617
2011
|
roserade: {
|
|
2618
|
-
randomBattleMoves: ["leafstorm", "sleeppowder", "sludgebomb", "spikes", "synthesis", "toxicspikes"],
|
|
2619
|
-
randomBattleLevel: 84,
|
|
2620
|
-
randomDoubleBattleMoves: ["energyball", "leafstorm", "protect", "sleeppowder", "sludgebomb"],
|
|
2621
|
-
randomDoubleBattleLevel: 86,
|
|
2622
2012
|
tier: "RU",
|
|
2623
2013
|
doublesTier: "(DUU)",
|
|
2624
2014
|
natDexTier: "RU",
|
|
@@ -2637,10 +2027,6 @@ exports.FormatsData = {
|
|
|
2637
2027
|
tier: "LC",
|
|
2638
2028
|
},
|
|
2639
2029
|
sharpedo: {
|
|
2640
|
-
randomBattleMoves: ["closecombat", "crunch", "hydropump", "protect"],
|
|
2641
|
-
randomBattleLevel: 82,
|
|
2642
|
-
randomDoubleBattleMoves: ["closecombat", "crunch", "flipturn", "icebeam", "protect", "waterfall"],
|
|
2643
|
-
randomDoubleBattleLevel: 84,
|
|
2644
2030
|
tier: "RU",
|
|
2645
2031
|
doublesTier: "(DUU)",
|
|
2646
2032
|
natDexTier: "RU",
|
|
@@ -2654,10 +2040,6 @@ exports.FormatsData = {
|
|
|
2654
2040
|
tier: "LC",
|
|
2655
2041
|
},
|
|
2656
2042
|
wailord: {
|
|
2657
|
-
randomBattleMoves: ["hydropump", "hypervoice", "icebeam", "waterspout"],
|
|
2658
|
-
randomBattleLevel: 90,
|
|
2659
|
-
randomDoubleBattleMoves: ["hydropump", "heavyslam", "icebeam", "waterspout"],
|
|
2660
|
-
randomDoubleBattleLevel: 88,
|
|
2661
2043
|
tier: "(PU)",
|
|
2662
2044
|
doublesTier: "(DUU)",
|
|
2663
2045
|
natDexTier: "RU",
|
|
@@ -2678,10 +2060,6 @@ exports.FormatsData = {
|
|
|
2678
2060
|
natDexTier: "RU",
|
|
2679
2061
|
},
|
|
2680
2062
|
torkoal: {
|
|
2681
|
-
randomBattleMoves: ["earthquake", "lavaplume", "rapidspin", "solarbeam", "stealthrock"],
|
|
2682
|
-
randomBattleLevel: 86,
|
|
2683
|
-
randomDoubleBattleMoves: ["bodypress", "earthpower", "fireblast", "heatwave", "protect", "solarbeam", "willowisp"],
|
|
2684
|
-
randomDoubleBattleLevel: 84,
|
|
2685
2063
|
tier: "UU",
|
|
2686
2064
|
doublesTier: "DOU",
|
|
2687
2065
|
natDexTier: "RU",
|
|
@@ -2708,10 +2086,6 @@ exports.FormatsData = {
|
|
|
2708
2086
|
tier: "NFE",
|
|
2709
2087
|
},
|
|
2710
2088
|
flygon: {
|
|
2711
|
-
randomBattleMoves: ["defog", "dragondance", "earthquake", "firepunch", "outrage", "uturn"],
|
|
2712
|
-
randomBattleLevel: 80,
|
|
2713
|
-
randomDoubleBattleMoves: ["dragonclaw", "dragondance", "earthquake", "firepunch", "protect", "rockslide", "tailwind"],
|
|
2714
|
-
randomDoubleBattleLevel: 86,
|
|
2715
2089
|
tier: "RU",
|
|
2716
2090
|
doublesTier: "(DUU)",
|
|
2717
2091
|
natDexTier: "RU",
|
|
@@ -2730,10 +2104,6 @@ exports.FormatsData = {
|
|
|
2730
2104
|
tier: "LC",
|
|
2731
2105
|
},
|
|
2732
2106
|
altaria: {
|
|
2733
|
-
randomBattleMoves: ["defog", "dracometeor", "earthquake", "fireblast", "roost", "toxic"],
|
|
2734
|
-
randomBattleLevel: 90,
|
|
2735
|
-
randomDoubleBattleMoves: ["defog", "dracometeor", "fireblast", "roost", "tailwind", "toxic"],
|
|
2736
|
-
randomDoubleBattleLevel: 92,
|
|
2737
2107
|
tier: "(PU)",
|
|
2738
2108
|
doublesTier: "(DUU)",
|
|
2739
2109
|
natDexTier: "RU",
|
|
@@ -2754,19 +2124,11 @@ exports.FormatsData = {
|
|
|
2754
2124
|
natDexTier: "RU",
|
|
2755
2125
|
},
|
|
2756
2126
|
lunatone: {
|
|
2757
|
-
randomBattleMoves: ["earthpower", "moonblast", "nastyplot", "powergem", "psychic", "stealthrock"],
|
|
2758
|
-
randomBattleLevel: 86,
|
|
2759
|
-
randomDoubleBattleMoves: ["earthpower", "icebeam", "meteorbeam", "protect", "psychic", "trickroom"],
|
|
2760
|
-
randomDoubleBattleLevel: 88,
|
|
2761
2127
|
tier: "(PU)",
|
|
2762
2128
|
doublesTier: "(DUU)",
|
|
2763
2129
|
natDexTier: "RU",
|
|
2764
2130
|
},
|
|
2765
2131
|
solrock: {
|
|
2766
|
-
randomBattleMoves: ["earthquake", "explosion", "morningsun", "rockslide", "stealthrock", "willowisp"],
|
|
2767
|
-
randomBattleLevel: 88,
|
|
2768
|
-
randomDoubleBattleMoves: ["flareblitz", "helpinghand", "rockslide", "stoneedge", "willowisp"],
|
|
2769
|
-
randomDoubleBattleLevel: 88,
|
|
2770
2132
|
tier: "(PU)",
|
|
2771
2133
|
doublesTier: "(DUU)",
|
|
2772
2134
|
natDexTier: "RU",
|
|
@@ -2775,10 +2137,6 @@ exports.FormatsData = {
|
|
|
2775
2137
|
tier: "LC",
|
|
2776
2138
|
},
|
|
2777
2139
|
whiscash: {
|
|
2778
|
-
randomBattleMoves: ["dragondance", "earthquake", "liquidation", "stoneedge", "zenheadbutt"],
|
|
2779
|
-
randomBattleLevel: 86,
|
|
2780
|
-
randomDoubleBattleMoves: ["dragondance", "earthquake", "liquidation", "protect", "stoneedge"],
|
|
2781
|
-
randomDoubleBattleLevel: 90,
|
|
2782
2140
|
tier: "(PU)",
|
|
2783
2141
|
doublesTier: "(DUU)",
|
|
2784
2142
|
natDexTier: "RU",
|
|
@@ -2787,10 +2145,6 @@ exports.FormatsData = {
|
|
|
2787
2145
|
tier: "LC",
|
|
2788
2146
|
},
|
|
2789
2147
|
crawdaunt: {
|
|
2790
|
-
randomBattleMoves: ["aquajet", "closecombat", "crabhammer", "dragondance", "knockoff"],
|
|
2791
|
-
randomBattleLevel: 84,
|
|
2792
|
-
randomDoubleBattleMoves: ["aquajet", "closecombat", "crabhammer", "knockoff", "protect", "swordsdance"],
|
|
2793
|
-
randomDoubleBattleLevel: 86,
|
|
2794
2148
|
tier: "UU",
|
|
2795
2149
|
doublesTier: "(DUU)",
|
|
2796
2150
|
natDexTier: "RUBL",
|
|
@@ -2799,10 +2153,6 @@ exports.FormatsData = {
|
|
|
2799
2153
|
tier: "LC",
|
|
2800
2154
|
},
|
|
2801
2155
|
claydol: {
|
|
2802
|
-
randomBattleMoves: ["earthquake", "icebeam", "psychic", "rapidspin", "stealthrock", "toxic"],
|
|
2803
|
-
randomBattleLevel: 86,
|
|
2804
|
-
randomDoubleBattleMoves: ["allyswitch", "earthpower", "icebeam", "psychic", "rapidspin"],
|
|
2805
|
-
randomDoubleBattleLevel: 88,
|
|
2806
2156
|
tier: "PU",
|
|
2807
2157
|
doublesTier: "(DUU)",
|
|
2808
2158
|
natDexTier: "RU",
|
|
@@ -2811,10 +2161,6 @@ exports.FormatsData = {
|
|
|
2811
2161
|
tier: "LC",
|
|
2812
2162
|
},
|
|
2813
2163
|
cradily: {
|
|
2814
|
-
randomBattleMoves: ["powerwhip", "recover", "stealthrock", "stoneedge", "swordsdance", "toxic"],
|
|
2815
|
-
randomBattleLevel: 86,
|
|
2816
|
-
randomDoubleBattleMoves: ["powerwhip", "protect", "recover", "stealthrock", "stoneedge", "stringshot"],
|
|
2817
|
-
randomDoubleBattleLevel: 88,
|
|
2818
2164
|
tier: "(PU)",
|
|
2819
2165
|
doublesTier: "(DUU)",
|
|
2820
2166
|
natDexTier: "RU",
|
|
@@ -2823,11 +2169,6 @@ exports.FormatsData = {
|
|
|
2823
2169
|
tier: "LC",
|
|
2824
2170
|
},
|
|
2825
2171
|
armaldo: {
|
|
2826
|
-
randomBattleMoves: ["earthquake", "knockoff", "liquidation", "rapidspin", "stealthrock", "stoneedge", "swordsdance"],
|
|
2827
|
-
randomBattleLevel: 86,
|
|
2828
|
-
randomDoubleBattleMoves: ["knockoff", "liquidation", "stoneedge", "superpower", "xscissor"],
|
|
2829
|
-
randomDoubleBattleLevel: 88,
|
|
2830
|
-
randomBattleNoDynamaxMoves: ["earthquake", "knockoff", "rapidspin", "stealthrock", "stoneedge", "swordsdance"],
|
|
2831
2172
|
tier: "(PU)",
|
|
2832
2173
|
doublesTier: "(DUU)",
|
|
2833
2174
|
natDexTier: "RU",
|
|
@@ -2836,10 +2177,6 @@ exports.FormatsData = {
|
|
|
2836
2177
|
tier: "LC",
|
|
2837
2178
|
},
|
|
2838
2179
|
milotic: {
|
|
2839
|
-
randomBattleMoves: ["haze", "icebeam", "recover", "scald", "toxic"],
|
|
2840
|
-
randomBattleLevel: 82,
|
|
2841
|
-
randomDoubleBattleMoves: ["coil", "hypnosis", "muddywater", "recover"],
|
|
2842
|
-
randomDoubleBattleLevel: 80,
|
|
2843
2180
|
tier: "RU",
|
|
2844
2181
|
doublesTier: "DUU",
|
|
2845
2182
|
natDexTier: "RU",
|
|
@@ -2885,10 +2222,6 @@ exports.FormatsData = {
|
|
|
2885
2222
|
tier: "NFE",
|
|
2886
2223
|
},
|
|
2887
2224
|
dusknoir: {
|
|
2888
|
-
randomBattleMoves: ["earthquake", "icepunch", "painsplit", "poltergeist", "shadowsneak", "trick", "willowisp"],
|
|
2889
|
-
randomBattleLevel: 86,
|
|
2890
|
-
randomDoubleBattleMoves: ["earthquake", "haze", "icepunch", "poltergeist", "shadowsneak", "trickroom", "willowisp"],
|
|
2891
|
-
randomDoubleBattleLevel: 86,
|
|
2892
2225
|
tier: "(PU)",
|
|
2893
2226
|
doublesTier: "(DUU)",
|
|
2894
2227
|
natDexTier: "RU",
|
|
@@ -2909,10 +2242,6 @@ exports.FormatsData = {
|
|
|
2909
2242
|
natDexTier: "RU",
|
|
2910
2243
|
},
|
|
2911
2244
|
absol: {
|
|
2912
|
-
randomBattleMoves: ["closecombat", "knockoff", "playrough", "suckerpunch", "swordsdance"],
|
|
2913
|
-
randomBattleLevel: 84,
|
|
2914
|
-
randomDoubleBattleMoves: ["closecombat", "knockoff", "protect", "suckerpunch", "swordsdance"],
|
|
2915
|
-
randomDoubleBattleLevel: 88,
|
|
2916
2245
|
tier: "PU",
|
|
2917
2246
|
doublesTier: "(DUU)",
|
|
2918
2247
|
natDexTier: "RU",
|
|
@@ -2926,10 +2255,6 @@ exports.FormatsData = {
|
|
|
2926
2255
|
tier: "LC",
|
|
2927
2256
|
},
|
|
2928
2257
|
glalie: {
|
|
2929
|
-
randomBattleMoves: ["disable", "earthquake", "freezedry", "protect", "substitute"],
|
|
2930
|
-
randomBattleLevel: 80,
|
|
2931
|
-
randomDoubleBattleMoves: ["disable", "earthquake", "freezedry", "protect", "substitute"],
|
|
2932
|
-
randomDoubleBattleLevel: 84,
|
|
2933
2258
|
tier: "(PU)",
|
|
2934
2259
|
doublesTier: "(DUU)",
|
|
2935
2260
|
natDexTier: "RU",
|
|
@@ -2940,10 +2265,6 @@ exports.FormatsData = {
|
|
|
2940
2265
|
natDexTier: "RU",
|
|
2941
2266
|
},
|
|
2942
2267
|
froslass: {
|
|
2943
|
-
randomBattleMoves: ["destinybond", "poltergeist", "spikes", "taunt", "tripleaxel", "willowisp"],
|
|
2944
|
-
randomBattleLevel: 84,
|
|
2945
|
-
randomDoubleBattleMoves: ["destinybond", "icebeam", "icywind", "protect", "shadowball", "willowisp"],
|
|
2946
|
-
randomDoubleBattleLevel: 88,
|
|
2947
2268
|
tier: "(PU)",
|
|
2948
2269
|
doublesTier: "(DUU)",
|
|
2949
2270
|
natDexTier: "RU",
|
|
@@ -2955,10 +2276,6 @@ exports.FormatsData = {
|
|
|
2955
2276
|
tier: "NFE",
|
|
2956
2277
|
},
|
|
2957
2278
|
walrein: {
|
|
2958
|
-
randomBattleMoves: ["icebeam", "protect", "surf", "toxic"],
|
|
2959
|
-
randomBattleLevel: 86,
|
|
2960
|
-
randomDoubleBattleMoves: ["brine", "icebeam", "icywind", "superfang"],
|
|
2961
|
-
randomDoubleBattleLevel: 86,
|
|
2962
2279
|
tier: "(PU)",
|
|
2963
2280
|
doublesTier: "(DUU)",
|
|
2964
2281
|
natDexTier: "RU",
|
|
@@ -2979,10 +2296,6 @@ exports.FormatsData = {
|
|
|
2979
2296
|
natDexTier: "RU",
|
|
2980
2297
|
},
|
|
2981
2298
|
relicanth: {
|
|
2982
|
-
randomBattleMoves: ["bodypress", "earthquake", "headsmash", "liquidation", "stealthrock", "yawn"],
|
|
2983
|
-
randomBattleLevel: 86,
|
|
2984
|
-
randomDoubleBattleMoves: ["bodypress", "headsmash", "liquidation", "stealthrock", "yawn"],
|
|
2985
|
-
randomDoubleBattleLevel: 88,
|
|
2986
2299
|
tier: "(PU)",
|
|
2987
2300
|
doublesTier: "(DUU)",
|
|
2988
2301
|
natDexTier: "RU",
|
|
@@ -2999,10 +2312,6 @@ exports.FormatsData = {
|
|
|
2999
2312
|
tier: "NFE",
|
|
3000
2313
|
},
|
|
3001
2314
|
salamence: {
|
|
3002
|
-
randomBattleMoves: ["dragondance", "dualwingbeat", "earthquake", "outrage", "roost"],
|
|
3003
|
-
randomBattleLevel: 76,
|
|
3004
|
-
randomDoubleBattleMoves: ["dragonclaw", "fireblast", "hurricane", "protect", "tailwind"],
|
|
3005
|
-
randomDoubleBattleLevel: 79,
|
|
3006
2315
|
tier: "UU",
|
|
3007
2316
|
doublesTier: "(DUU)",
|
|
3008
2317
|
natDexTier: "UU",
|
|
@@ -3019,10 +2328,6 @@ exports.FormatsData = {
|
|
|
3019
2328
|
tier: "NFE",
|
|
3020
2329
|
},
|
|
3021
2330
|
metagross: {
|
|
3022
|
-
randomBattleMoves: ["agility", "bulletpunch", "earthquake", "explosion", "meteormash", "stealthrock", "thunderpunch"],
|
|
3023
|
-
randomBattleLevel: 79,
|
|
3024
|
-
randomDoubleBattleMoves: ["agility", "bulletpunch", "icepunch", "meteormash", "stompingtantrum", "trick", "zenheadbutt"],
|
|
3025
|
-
randomDoubleBattleLevel: 82,
|
|
3026
2331
|
tier: "RU",
|
|
3027
2332
|
doublesTier: "DOU",
|
|
3028
2333
|
natDexTier: "RU",
|
|
@@ -3033,37 +2338,21 @@ exports.FormatsData = {
|
|
|
3033
2338
|
natDexTier: "Uber",
|
|
3034
2339
|
},
|
|
3035
2340
|
regirock: {
|
|
3036
|
-
randomBattleMoves: ["bodypress", "curse", "earthquake", "explosion", "rest", "rockslide", "stoneedge"],
|
|
3037
|
-
randomBattleLevel: 85,
|
|
3038
|
-
randomDoubleBattleMoves: ["bodypress", "curse", "rest", "rockslide"],
|
|
3039
|
-
randomDoubleBattleLevel: 86,
|
|
3040
2341
|
tier: "PU",
|
|
3041
2342
|
doublesTier: "(DUU)",
|
|
3042
2343
|
natDexTier: "RU",
|
|
3043
2344
|
},
|
|
3044
2345
|
regice: {
|
|
3045
|
-
randomBattleMoves: ["focusblast", "icebeam", "rest", "rockpolish", "sleeptalk", "thunderbolt"],
|
|
3046
|
-
randomBattleLevel: 84,
|
|
3047
|
-
randomDoubleBattleMoves: ["focusblast", "icebeam", "icywind", "rockpolish", "thunderbolt"],
|
|
3048
|
-
randomDoubleBattleLevel: 87,
|
|
3049
2346
|
tier: "(PU)",
|
|
3050
2347
|
doublesTier: "(DUU)",
|
|
3051
2348
|
natDexTier: "RU",
|
|
3052
2349
|
},
|
|
3053
2350
|
registeel: {
|
|
3054
|
-
randomBattleMoves: ["bodypress", "curse", "ironhead", "protect", "rest", "sleeptalk", "stealthrock", "toxic"],
|
|
3055
|
-
randomBattleLevel: 83,
|
|
3056
|
-
randomDoubleBattleMoves: ["bodypress", "curse", "ironhead", "rest", "toxic"],
|
|
3057
|
-
randomDoubleBattleLevel: 86,
|
|
3058
2351
|
tier: "RU",
|
|
3059
2352
|
doublesTier: "(DUU)",
|
|
3060
2353
|
natDexTier: "RU",
|
|
3061
2354
|
},
|
|
3062
2355
|
latias: {
|
|
3063
|
-
randomBattleMoves: ["calmmind", "dracometeor", "healingwish", "mysticalfire", "psychic", "roost"],
|
|
3064
|
-
randomBattleLevel: 80,
|
|
3065
|
-
randomDoubleBattleMoves: ["calmmind", "dracometeor", "healpulse", "mysticalfire", "psyshock", "roost", "tailwind"],
|
|
3066
|
-
randomDoubleBattleLevel: 82,
|
|
3067
2356
|
tier: "UUBL",
|
|
3068
2357
|
doublesTier: "(DUU)",
|
|
3069
2358
|
natDexTier: "UUBL",
|
|
@@ -3074,10 +2363,6 @@ exports.FormatsData = {
|
|
|
3074
2363
|
natDexTier: "UUBL",
|
|
3075
2364
|
},
|
|
3076
2365
|
latios: {
|
|
3077
|
-
randomBattleMoves: ["calmmind", "dracometeor", "mysticalfire", "psyshock", "roost", "trick"],
|
|
3078
|
-
randomBattleLevel: 78,
|
|
3079
|
-
randomDoubleBattleMoves: ["dracometeor", "mysticalfire", "psychic", "psyshock", "roost", "tailwind", "trick"],
|
|
3080
|
-
randomDoubleBattleLevel: 80,
|
|
3081
2366
|
tier: "UUBL",
|
|
3082
2367
|
doublesTier: "(DUU)",
|
|
3083
2368
|
natDexTier: "UUBL",
|
|
@@ -3088,10 +2373,6 @@ exports.FormatsData = {
|
|
|
3088
2373
|
natDexTier: "UUBL",
|
|
3089
2374
|
},
|
|
3090
2375
|
kyogre: {
|
|
3091
|
-
randomBattleMoves: ["calmmind", "icebeam", "originpulse", "thunder", "waterspout"],
|
|
3092
|
-
randomBattleLevel: 72,
|
|
3093
|
-
randomDoubleBattleMoves: ["icebeam", "originpulse", "thunder", "waterspout"],
|
|
3094
|
-
randomDoubleBattleLevel: 69,
|
|
3095
2376
|
tier: "Uber",
|
|
3096
2377
|
doublesTier: "DUber",
|
|
3097
2378
|
natDexTier: "Uber",
|
|
@@ -3102,11 +2383,6 @@ exports.FormatsData = {
|
|
|
3102
2383
|
natDexTier: "Uber",
|
|
3103
2384
|
},
|
|
3104
2385
|
groudon: {
|
|
3105
|
-
randomBattleMoves: ["heatcrash", "heavyslam", "precipiceblades", "stealthrock", "stoneedge", "swordsdance", "thunderwave"],
|
|
3106
|
-
randomBattleLevel: 73,
|
|
3107
|
-
randomDoubleBattleMoves: ["heatcrash", "precipiceblades", "rockpolish", "stoneedge", "swordsdance"],
|
|
3108
|
-
randomDoubleBattleLevel: 72,
|
|
3109
|
-
randomBattleNoDynamaxMoves: ["heatcrash", "precipiceblades", "stealthrock", "stoneedge", "swordsdance", "thunderwave"],
|
|
3110
2386
|
tier: "Uber",
|
|
3111
2387
|
doublesTier: "DUber",
|
|
3112
2388
|
natDexTier: "Uber",
|
|
@@ -3117,11 +2393,6 @@ exports.FormatsData = {
|
|
|
3117
2393
|
natDexTier: "Uber",
|
|
3118
2394
|
},
|
|
3119
2395
|
rayquaza: {
|
|
3120
|
-
randomBattleMoves: ["dracometeor", "dragonascent", "dragondance", "earthquake", "extremespeed", "swordsdance", "vcreate"],
|
|
3121
|
-
randomBattleLevel: 74,
|
|
3122
|
-
randomDoubleBattleMoves: ["dracometeor", "dragonascent", "dragonclaw", "dragondance", "earthpower", "extremespeed", "vcreate"],
|
|
3123
|
-
randomDoubleBattleLevel: 74,
|
|
3124
|
-
randomBattleNoDynamaxMoves: ["dracometeor", "dragonascent", "dragondance", "earthquake", "extremespeed", "vcreate"],
|
|
3125
2396
|
tier: "Uber",
|
|
3126
2397
|
doublesTier: "DUber",
|
|
3127
2398
|
natDexTier: "Uber",
|
|
@@ -3132,10 +2403,6 @@ exports.FormatsData = {
|
|
|
3132
2403
|
natDexTier: "Uber",
|
|
3133
2404
|
},
|
|
3134
2405
|
jirachi: {
|
|
3135
|
-
randomBattleMoves: ["bodyslam", "firepunch", "ironhead", "stealthrock", "toxic", "trick", "uturn"],
|
|
3136
|
-
randomBattleLevel: 79,
|
|
3137
|
-
randomDoubleBattleMoves: ["firepunch", "followme", "ironhead", "lifedew", "protect", "thunderwave"],
|
|
3138
|
-
randomDoubleBattleLevel: 77,
|
|
3139
2406
|
tier: "UU",
|
|
3140
2407
|
doublesTier: "DUber",
|
|
3141
2408
|
natDexTier: "UUBL",
|
|
@@ -3247,10 +2514,6 @@ exports.FormatsData = {
|
|
|
3247
2514
|
tier: "NFE",
|
|
3248
2515
|
},
|
|
3249
2516
|
luxray: {
|
|
3250
|
-
randomBattleMoves: ["agility", "crunch", "facade", "superpower", "voltswitch", "wildcharge"],
|
|
3251
|
-
randomBattleLevel: 84,
|
|
3252
|
-
randomDoubleBattleMoves: ["playrough", "protect", "superpower", "voltswitch", "wildcharge"],
|
|
3253
|
-
randomDoubleBattleLevel: 84,
|
|
3254
2517
|
tier: "(PU)",
|
|
3255
2518
|
doublesTier: "(DUU)",
|
|
3256
2519
|
natDexTier: "RU",
|
|
@@ -3304,10 +2567,6 @@ exports.FormatsData = {
|
|
|
3304
2567
|
tier: "LC",
|
|
3305
2568
|
},
|
|
3306
2569
|
vespiquen: {
|
|
3307
|
-
randomBattleMoves: ["airslash", "defog", "roost", "toxic", "uturn"],
|
|
3308
|
-
randomBattleLevel: 96,
|
|
3309
|
-
randomDoubleBattleMoves: ["airslash", "roost", "tailwind", "toxicspikes"],
|
|
3310
|
-
randomDoubleBattleLevel: 98,
|
|
3311
2570
|
tier: "(PU)",
|
|
3312
2571
|
doublesTier: "(DUU)",
|
|
3313
2572
|
natDexTier: "RU",
|
|
@@ -3332,26 +2591,15 @@ exports.FormatsData = {
|
|
|
3332
2591
|
natDexTier: "LC",
|
|
3333
2592
|
},
|
|
3334
2593
|
cherrim: {
|
|
3335
|
-
randomBattleMoves: ["dazzlinggleam", "energyball", "healingwish", "petaldance", "pollenpuff"],
|
|
3336
|
-
randomBattleLevel: 93,
|
|
3337
|
-
randomDoubleBattleMoves: ["energyball", "healingwish", "helpinghand", "pollenpuff"],
|
|
3338
|
-
randomDoubleBattleLevel: 92,
|
|
3339
2594
|
tier: "(PU)",
|
|
3340
2595
|
doublesTier: "(DUU)",
|
|
3341
2596
|
natDexTier: "RU",
|
|
3342
2597
|
},
|
|
3343
|
-
cherrimsunshine: {
|
|
3344
|
-
randomDoubleBattleMoves: ["playrough", "solarblade", "sunnyday", "weatherball"],
|
|
3345
|
-
randomDoubleBattleLevel: 92,
|
|
3346
|
-
},
|
|
2598
|
+
cherrimsunshine: {},
|
|
3347
2599
|
shellos: {
|
|
3348
2600
|
tier: "LC",
|
|
3349
2601
|
},
|
|
3350
2602
|
gastrodon: {
|
|
3351
|
-
randomBattleMoves: ["clearsmog", "earthquake", "icebeam", "recover", "scald", "toxic"],
|
|
3352
|
-
randomBattleLevel: 84,
|
|
3353
|
-
randomDoubleBattleMoves: ["clearsmog", "earthpower", "icywind", "recover", "scald", "yawn"],
|
|
3354
|
-
randomDoubleBattleLevel: 80,
|
|
3355
2603
|
tier: "NU",
|
|
3356
2604
|
doublesTier: "DOU",
|
|
3357
2605
|
natDexTier: "RU",
|
|
@@ -3361,10 +2609,6 @@ exports.FormatsData = {
|
|
|
3361
2609
|
natDexTier: "LC",
|
|
3362
2610
|
},
|
|
3363
2611
|
drifblim: {
|
|
3364
|
-
randomBattleMoves: ["calmmind", "shadowball", "strengthsap", "thunderbolt"],
|
|
3365
|
-
randomBattleLevel: 84,
|
|
3366
|
-
randomDoubleBattleMoves: ["calmmind", "icywind", "shadowball", "strengthsap"],
|
|
3367
|
-
randomDoubleBattleLevel: 84,
|
|
3368
2612
|
tier: "(PU)",
|
|
3369
2613
|
doublesTier: "(DUU)",
|
|
3370
2614
|
natDexTier: "RU",
|
|
@@ -3373,10 +2617,6 @@ exports.FormatsData = {
|
|
|
3373
2617
|
tier: "LC",
|
|
3374
2618
|
},
|
|
3375
2619
|
lopunny: {
|
|
3376
|
-
randomBattleMoves: ["closecombat", "facade", "healingwish", "switcheroo"],
|
|
3377
|
-
randomBattleLevel: 90,
|
|
3378
|
-
randomDoubleBattleMoves: ["closecombat", "fakeout", "switcheroo", "uturn"],
|
|
3379
|
-
randomDoubleBattleLevel: 92,
|
|
3380
2620
|
tier: "(PU)",
|
|
3381
2621
|
doublesTier: "(DUU)",
|
|
3382
2622
|
natDexTier: "RU",
|
|
@@ -3400,10 +2640,6 @@ exports.FormatsData = {
|
|
|
3400
2640
|
tier: "LC",
|
|
3401
2641
|
},
|
|
3402
2642
|
skuntank: {
|
|
3403
|
-
randomBattleMoves: ["crunch", "defog", "fireblast", "poisonjab", "suckerpunch", "taunt", "toxic"],
|
|
3404
|
-
randomBattleLevel: 85,
|
|
3405
|
-
randomDoubleBattleMoves: ["crunch", "defog", "fireblast", "poisonjab", "suckerpunch", "taunt"],
|
|
3406
|
-
randomDoubleBattleLevel: 88,
|
|
3407
2643
|
tier: "(PU)",
|
|
3408
2644
|
doublesTier: "(DUU)",
|
|
3409
2645
|
natDexTier: "RU",
|
|
@@ -3412,10 +2648,6 @@ exports.FormatsData = {
|
|
|
3412
2648
|
tier: "LC",
|
|
3413
2649
|
},
|
|
3414
2650
|
bronzong: {
|
|
3415
|
-
randomBattleMoves: ["earthquake", "ironhead", "protect", "stealthrock", "toxic"],
|
|
3416
|
-
randomBattleLevel: 83,
|
|
3417
|
-
randomDoubleBattleMoves: ["allyswitch", "bodypress", "ironhead", "trickroom"],
|
|
3418
|
-
randomDoubleBattleLevel: 88,
|
|
3419
2651
|
tier: "RU",
|
|
3420
2652
|
doublesTier: "(DUU)",
|
|
3421
2653
|
natDexTier: "RU",
|
|
@@ -3426,10 +2658,6 @@ exports.FormatsData = {
|
|
|
3426
2658
|
natDexTier: "RU",
|
|
3427
2659
|
},
|
|
3428
2660
|
spiritomb: {
|
|
3429
|
-
randomBattleMoves: ["foulplay", "poltergeist", "shadowsneak", "suckerpunch", "trick"],
|
|
3430
|
-
randomBattleLevel: 88,
|
|
3431
|
-
randomDoubleBattleMoves: ["foulplay", "poltergeist", "protect", "snarl", "suckerpunch", "willowisp"],
|
|
3432
|
-
randomDoubleBattleLevel: 88,
|
|
3433
2661
|
tier: "(PU)",
|
|
3434
2662
|
doublesTier: "(DUU)",
|
|
3435
2663
|
natDexTier: "RU",
|
|
@@ -3441,10 +2669,6 @@ exports.FormatsData = {
|
|
|
3441
2669
|
tier: "NFE",
|
|
3442
2670
|
},
|
|
3443
2671
|
garchomp: {
|
|
3444
|
-
randomBattleMoves: ["earthquake", "fireblast", "firefang", "outrage", "stealthrock", "stoneedge", "swordsdance"],
|
|
3445
|
-
randomBattleLevel: 74,
|
|
3446
|
-
randomDoubleBattleMoves: ["dragonclaw", "earthquake", "fireblast", "protect", "rockslide", "swordsdance"],
|
|
3447
|
-
randomDoubleBattleLevel: 80,
|
|
3448
2672
|
tier: "OU",
|
|
3449
2673
|
doublesTier: "(DUU)",
|
|
3450
2674
|
natDexTier: "OU",
|
|
@@ -3458,10 +2682,6 @@ exports.FormatsData = {
|
|
|
3458
2682
|
tier: "LC",
|
|
3459
2683
|
},
|
|
3460
2684
|
lucario: {
|
|
3461
|
-
randomBattleMoves: ["closecombat", "extremespeed", "meteormash", "stoneedge", "swordsdance"],
|
|
3462
|
-
randomBattleLevel: 82,
|
|
3463
|
-
randomDoubleBattleMoves: ["closecombat", "extremespeed", "icepunch", "meteormash", "protect", "swordsdance"],
|
|
3464
|
-
randomDoubleBattleLevel: 84,
|
|
3465
2685
|
tier: "RU",
|
|
3466
2686
|
doublesTier: "(DUU)",
|
|
3467
2687
|
natDexTier: "RU",
|
|
@@ -3475,10 +2695,6 @@ exports.FormatsData = {
|
|
|
3475
2695
|
tier: "LC",
|
|
3476
2696
|
},
|
|
3477
2697
|
hippowdon: {
|
|
3478
|
-
randomBattleMoves: ["earthquake", "slackoff", "stealthrock", "stoneedge", "toxic", "whirlwind"],
|
|
3479
|
-
randomBattleLevel: 80,
|
|
3480
|
-
randomDoubleBattleMoves: ["highhorsepower", "slackoff", "stealthrock", "whirlwind", "yawn"],
|
|
3481
|
-
randomDoubleBattleLevel: 88,
|
|
3482
2698
|
tier: "UU",
|
|
3483
2699
|
doublesTier: "(DUU)",
|
|
3484
2700
|
natDexTier: "UU",
|
|
@@ -3487,10 +2703,6 @@ exports.FormatsData = {
|
|
|
3487
2703
|
tier: "LC",
|
|
3488
2704
|
},
|
|
3489
2705
|
drapion: {
|
|
3490
|
-
randomBattleMoves: ["aquatail", "earthquake", "knockoff", "poisonjab", "swordsdance", "taunt", "toxicspikes"],
|
|
3491
|
-
randomBattleLevel: 82,
|
|
3492
|
-
randomDoubleBattleMoves: ["knockoff", "poisonjab", "protect", "swordsdance", "taunt"],
|
|
3493
|
-
randomDoubleBattleLevel: 88,
|
|
3494
2706
|
tier: "NU",
|
|
3495
2707
|
doublesTier: "(DUU)",
|
|
3496
2708
|
natDexTier: "RU",
|
|
@@ -3499,10 +2711,6 @@ exports.FormatsData = {
|
|
|
3499
2711
|
tier: "LC",
|
|
3500
2712
|
},
|
|
3501
2713
|
toxicroak: {
|
|
3502
|
-
randomBattleMoves: ["drainpunch", "gunkshot", "icepunch", "knockoff", "substitute", "suckerpunch", "swordsdance"],
|
|
3503
|
-
randomBattleLevel: 84,
|
|
3504
|
-
randomDoubleBattleMoves: ["drainpunch", "fakeout", "gunkshot", "protect", "suckerpunch", "swordsdance", "taunt"],
|
|
3505
|
-
randomDoubleBattleLevel: 86,
|
|
3506
2714
|
tier: "NU",
|
|
3507
2715
|
doublesTier: "(DUU)",
|
|
3508
2716
|
natDexTier: "RU",
|
|
@@ -3526,10 +2734,6 @@ exports.FormatsData = {
|
|
|
3526
2734
|
tier: "LC",
|
|
3527
2735
|
},
|
|
3528
2736
|
abomasnow: {
|
|
3529
|
-
randomBattleMoves: ["auroraveil", "blizzard", "earthquake", "iceshard", "woodhammer"],
|
|
3530
|
-
randomBattleLevel: 82,
|
|
3531
|
-
randomDoubleBattleMoves: ["auroraveil", "blizzard", "iceshard", "protect", "woodhammer"],
|
|
3532
|
-
randomDoubleBattleLevel: 88,
|
|
3533
2737
|
tier: "(PU)",
|
|
3534
2738
|
doublesTier: "(DUU)",
|
|
3535
2739
|
natDexTier: "RU",
|
|
@@ -3540,91 +2744,51 @@ exports.FormatsData = {
|
|
|
3540
2744
|
natDexTier: "RU",
|
|
3541
2745
|
},
|
|
3542
2746
|
rotom: {
|
|
3543
|
-
randomBattleMoves: ["nastyplot", "shadowball", "thunderbolt", "voltswitch", "willowisp"],
|
|
3544
|
-
randomBattleLevel: 84,
|
|
3545
|
-
randomDoubleBattleMoves: ["electroweb", "protect", "shadowball", "thunderbolt", "voltswitch", "willowisp"],
|
|
3546
|
-
randomDoubleBattleLevel: 88,
|
|
3547
2747
|
tier: "(PU)",
|
|
3548
2748
|
doublesTier: "(DUU)",
|
|
3549
2749
|
natDexTier: "RU",
|
|
3550
2750
|
},
|
|
3551
2751
|
rotomheat: {
|
|
3552
|
-
randomBattleMoves: ["defog", "nastyplot", "overheat", "thunderbolt", "voltswitch", "willowisp"],
|
|
3553
|
-
randomBattleLevel: 82,
|
|
3554
|
-
randomDoubleBattleMoves: ["electroweb", "overheat", "protect", "thunderbolt", "voltswitch", "willowisp"],
|
|
3555
|
-
randomDoubleBattleLevel: 84,
|
|
3556
2752
|
tier: "UU",
|
|
3557
2753
|
doublesTier: "(DUU)",
|
|
3558
2754
|
natDexTier: "UU",
|
|
3559
2755
|
},
|
|
3560
2756
|
rotomwash: {
|
|
3561
|
-
randomBattleMoves: ["hydropump", "thunderbolt", "trick", "voltswitch", "willowisp"],
|
|
3562
|
-
randomBattleLevel: 82,
|
|
3563
|
-
randomDoubleBattleMoves: ["hydropump", "protect", "thunderbolt", "thunderwave", "voltswitch", "willowisp"],
|
|
3564
|
-
randomDoubleBattleLevel: 84,
|
|
3565
2757
|
tier: "UU",
|
|
3566
2758
|
doublesTier: "(DUU)",
|
|
3567
2759
|
natDexTier: "UU",
|
|
3568
2760
|
},
|
|
3569
2761
|
rotomfrost: {
|
|
3570
|
-
randomBattleMoves: ["blizzard", "nastyplot", "thunderbolt", "voltswitch", "willowisp"],
|
|
3571
|
-
randomBattleLevel: 84,
|
|
3572
|
-
randomDoubleBattleMoves: ["blizzard", "nastyplot", "protect", "thunderbolt", "willowisp"],
|
|
3573
|
-
randomDoubleBattleLevel: 86,
|
|
3574
2762
|
tier: "(PU)",
|
|
3575
2763
|
doublesTier: "(DUU)",
|
|
3576
2764
|
natDexTier: "RU",
|
|
3577
2765
|
},
|
|
3578
2766
|
rotomfan: {
|
|
3579
|
-
randomBattleMoves: ["airslash", "nastyplot", "thunderbolt", "voltswitch", "willowisp"],
|
|
3580
|
-
randomBattleLevel: 84,
|
|
3581
|
-
randomDoubleBattleMoves: ["airslash", "nastyplot", "protect", "thunderbolt"],
|
|
3582
|
-
randomDoubleBattleLevel: 84,
|
|
3583
2767
|
tier: "(PU)",
|
|
3584
2768
|
doublesTier: "(DUU)",
|
|
3585
2769
|
natDexTier: "RU",
|
|
3586
2770
|
},
|
|
3587
2771
|
rotommow: {
|
|
3588
|
-
randomBattleMoves: ["leafstorm", "nastyplot", "thunderbolt", "trick", "voltswitch", "willowisp"],
|
|
3589
|
-
randomBattleLevel: 86,
|
|
3590
|
-
randomDoubleBattleMoves: ["electroweb", "leafstorm", "protect", "thunderbolt", "voltswitch", "willowisp"],
|
|
3591
|
-
randomDoubleBattleLevel: 88,
|
|
3592
2772
|
tier: "NU",
|
|
3593
2773
|
doublesTier: "(DUU)",
|
|
3594
2774
|
natDexTier: "RU",
|
|
3595
2775
|
},
|
|
3596
2776
|
uxie: {
|
|
3597
|
-
randomBattleMoves: ["healbell", "knockoff", "psychic", "stealthrock", "uturn", "yawn"],
|
|
3598
|
-
randomBattleLevel: 82,
|
|
3599
|
-
randomDoubleBattleMoves: ["helpinghand", "knockoff", "psychic", "stealthrock", "thunderwave", "u-turn", "yawn"],
|
|
3600
|
-
randomDoubleBattleLevel: 86,
|
|
3601
2777
|
tier: "(PU)",
|
|
3602
2778
|
doublesTier: "(DUU)",
|
|
3603
2779
|
natDexTier: "RU",
|
|
3604
2780
|
},
|
|
3605
2781
|
mesprit: {
|
|
3606
|
-
randomBattleMoves: ["energyball", "healingwish", "icebeam", "nastyplot", "psychic", "stealthrock", "thunderwave", "uturn"],
|
|
3607
|
-
randomBattleLevel: 84,
|
|
3608
|
-
randomDoubleBattleMoves: ["dazzlinggleam", "knockoff", "nastyplot", "psychic", "thunderbolt", "thunderwave"],
|
|
3609
|
-
randomDoubleBattleLevel: 86,
|
|
3610
2782
|
tier: "PU",
|
|
3611
2783
|
doublesTier: "(DUU)",
|
|
3612
2784
|
natDexTier: "RU",
|
|
3613
2785
|
},
|
|
3614
2786
|
azelf: {
|
|
3615
|
-
randomBattleMoves: ["dazzlinggleam", "fireblast", "nastyplot", "psychic", "psyshock", "stealthrock", "taunt", "uturn"],
|
|
3616
|
-
randomBattleLevel: 82,
|
|
3617
|
-
randomDoubleBattleMoves: ["energyball", "fireblast", "nastyplot", "psychic", "shadowball", "uturn"],
|
|
3618
|
-
randomDoubleBattleLevel: 84,
|
|
3619
2787
|
tier: "UU",
|
|
3620
2788
|
doublesTier: "(DUU)",
|
|
3621
2789
|
natDexTier: "RU",
|
|
3622
2790
|
},
|
|
3623
2791
|
dialga: {
|
|
3624
|
-
randomBattleMoves: ["dracometeor", "fireblast", "flashcannon", "stealthrock", "thunderbolt", "toxic"],
|
|
3625
|
-
randomBattleLevel: 74,
|
|
3626
|
-
randomDoubleBattleMoves: ["dracometeor", "earthpower", "fireblast", "flashcannon", "protect", "thunderbolt", "thunderwave"],
|
|
3627
|
-
randomDoubleBattleLevel: 74,
|
|
3628
2792
|
tier: "Uber",
|
|
3629
2793
|
doublesTier: "DUber",
|
|
3630
2794
|
natDexTier: "Uber",
|
|
@@ -3634,10 +2798,6 @@ exports.FormatsData = {
|
|
|
3634
2798
|
tier: "Illegal",
|
|
3635
2799
|
},
|
|
3636
2800
|
palkia: {
|
|
3637
|
-
randomBattleMoves: ["dracometeor", "fireblast", "hydropump", "spacialrend", "thunderwave"],
|
|
3638
|
-
randomBattleLevel: 74,
|
|
3639
|
-
randomDoubleBattleMoves: ["fireblast", "hydropump", "protect", "spacialrend", "thunderbolt", "thunderwave"],
|
|
3640
|
-
randomDoubleBattleLevel: 74,
|
|
3641
2801
|
tier: "Uber",
|
|
3642
2802
|
doublesTier: "DUber",
|
|
3643
2803
|
natDexTier: "Uber",
|
|
@@ -3647,47 +2807,26 @@ exports.FormatsData = {
|
|
|
3647
2807
|
tier: "Illegal",
|
|
3648
2808
|
},
|
|
3649
2809
|
heatran: {
|
|
3650
|
-
randomBattleMoves: ["earthpower", "flashcannon", "lavaplume", "protect", "stealthrock", "taunt", "toxic"],
|
|
3651
|
-
randomBattleLevel: 78,
|
|
3652
|
-
randomDoubleBattleMoves: ["earthpower", "eruption", "flashcannon", "heatwave", "protect"],
|
|
3653
|
-
randomDoubleBattleLevel: 80,
|
|
3654
2810
|
tier: "OU",
|
|
3655
2811
|
doublesTier: "DOU",
|
|
3656
2812
|
natDexTier: "OU",
|
|
3657
2813
|
},
|
|
3658
2814
|
regigigas: {
|
|
3659
|
-
randomBattleMoves: ["bodyslam", "protect", "substitute", "toxic"],
|
|
3660
|
-
randomBattleLevel: 82,
|
|
3661
|
-
randomDoubleBattleMoves: ["bodyslam", "knockoff", "protect", "thunderwave"],
|
|
3662
|
-
randomDoubleBattleLevel: 86,
|
|
3663
2815
|
tier: "(PU)",
|
|
3664
2816
|
doublesTier: "(DUU)",
|
|
3665
2817
|
natDexTier: "RU",
|
|
3666
2818
|
},
|
|
3667
2819
|
giratina: {
|
|
3668
|
-
randomBattleMoves: ["hex", "rest", "sleeptalk", "toxic", "willowisp"],
|
|
3669
|
-
randomBattleLevel: 74,
|
|
3670
|
-
randomDoubleBattleMoves: ["calmmind", "dragonpulse", "rest", "shadowball", "willowisp"],
|
|
3671
|
-
randomDoubleBattleLevel: 74,
|
|
3672
2820
|
tier: "Uber",
|
|
3673
2821
|
doublesTier: "DUber",
|
|
3674
2822
|
natDexTier: "Uber",
|
|
3675
2823
|
},
|
|
3676
2824
|
giratinaorigin: {
|
|
3677
|
-
randomBattleMoves: ["dualwingbeat", "honeclaws", "outrage", "poltergeist", "shadowsneak"],
|
|
3678
|
-
randomBattleLevel: 74,
|
|
3679
|
-
randomDoubleBattleMoves: ["dracometeor", "protect", "shadowball", "shadowsneak", "tailwind", "willowisp"],
|
|
3680
|
-
randomDoubleBattleLevel: 74,
|
|
3681
|
-
randomBattleNoDynamaxMoves: ["defog", "dracometeor", "earthquake", "poltergeist", "shadowsneak", "willowisp"],
|
|
3682
2825
|
tier: "Uber",
|
|
3683
2826
|
doublesTier: "DUber",
|
|
3684
2827
|
natDexTier: "Uber",
|
|
3685
2828
|
},
|
|
3686
2829
|
cresselia: {
|
|
3687
|
-
randomBattleMoves: ["calmmind", "moonblast", "moonlight", "psyshock", "thunderwave", "toxic"],
|
|
3688
|
-
randomBattleLevel: 80,
|
|
3689
|
-
randomDoubleBattleMoves: ["helpinghand", "icywind", "moonblast", "moonlight", "psychic", "thunderwave"],
|
|
3690
|
-
randomDoubleBattleLevel: 83,
|
|
3691
2830
|
tier: "NUBL",
|
|
3692
2831
|
doublesTier: "DUU",
|
|
3693
2832
|
natDexTier: "RU",
|
|
@@ -3774,10 +2913,6 @@ exports.FormatsData = {
|
|
|
3774
2913
|
isNonstandard: "Past",
|
|
3775
2914
|
},
|
|
3776
2915
|
victini: {
|
|
3777
|
-
randomBattleMoves: ["blueflare", "boltstrike", "energyball", "glaciate", "uturn", "vcreate", "zenheadbutt"],
|
|
3778
|
-
randomBattleLevel: 78,
|
|
3779
|
-
randomDoubleBattleMoves: ["boltstrike", "glaciate", "protect", "uturn", "vcreate", "zenheadbutt"],
|
|
3780
|
-
randomDoubleBattleLevel: 81,
|
|
3781
2916
|
tier: "OU",
|
|
3782
2917
|
doublesTier: "DUU",
|
|
3783
2918
|
natDexTier: "OU",
|
|
@@ -3848,10 +2983,6 @@ exports.FormatsData = {
|
|
|
3848
2983
|
tier: "NFE",
|
|
3849
2984
|
},
|
|
3850
2985
|
stoutland: {
|
|
3851
|
-
randomBattleMoves: ["crunch", "facade", "playrough", "superpower", "wildcharge"],
|
|
3852
|
-
randomBattleLevel: 86,
|
|
3853
|
-
randomDoubleBattleMoves: ["facade", "helpinghand", "superpower", "thunderwave"],
|
|
3854
|
-
randomDoubleBattleLevel: 90,
|
|
3855
2986
|
tier: "(PU)",
|
|
3856
2987
|
doublesTier: "(DUU)",
|
|
3857
2988
|
natDexTier: "RU",
|
|
@@ -3860,10 +2991,6 @@ exports.FormatsData = {
|
|
|
3860
2991
|
tier: "LC",
|
|
3861
2992
|
},
|
|
3862
2993
|
liepard: {
|
|
3863
|
-
randomBattleMoves: ["copycat", "encore", "knockoff", "playrough", "thunderwave", "uturn"],
|
|
3864
|
-
randomBattleLevel: 86,
|
|
3865
|
-
randomDoubleBattleMoves: ["copycat", "encore", "fakeout", "foulplay", "snarl", "taunt", "thunderwave"],
|
|
3866
|
-
randomDoubleBattleLevel: 88,
|
|
3867
2994
|
tier: "(PU)",
|
|
3868
2995
|
doublesTier: "(DUU)",
|
|
3869
2996
|
natDexTier: "RU",
|
|
@@ -3902,10 +3029,6 @@ exports.FormatsData = {
|
|
|
3902
3029
|
tier: "LC",
|
|
3903
3030
|
},
|
|
3904
3031
|
musharna: {
|
|
3905
|
-
randomBattleMoves: ["calmmind", "moonblast", "moonlight", "psychic", "thunderwave"],
|
|
3906
|
-
randomBattleLevel: 86,
|
|
3907
|
-
randomDoubleBattleMoves: ["helpinghand", "hypnosis", "moonblast", "psychic", "trickroom"],
|
|
3908
|
-
randomDoubleBattleLevel: 88,
|
|
3909
3032
|
tier: "(PU)",
|
|
3910
3033
|
doublesTier: "(DUU)",
|
|
3911
3034
|
natDexTier: "RU",
|
|
@@ -3917,10 +3040,6 @@ exports.FormatsData = {
|
|
|
3917
3040
|
tier: "NFE",
|
|
3918
3041
|
},
|
|
3919
3042
|
unfezant: {
|
|
3920
|
-
randomBattleMoves: ["bravebird", "defog", "nightslash", "roost", "uturn"],
|
|
3921
|
-
randomBattleLevel: 84,
|
|
3922
|
-
randomDoubleBattleMoves: ["bravebird", "nightslash", "quickattack", "tailwind", "uturn"],
|
|
3923
|
-
randomDoubleBattleLevel: 86,
|
|
3924
3043
|
tier: "(PU)",
|
|
3925
3044
|
doublesTier: "(DUU)",
|
|
3926
3045
|
natDexTier: "RU",
|
|
@@ -3942,10 +3061,6 @@ exports.FormatsData = {
|
|
|
3942
3061
|
tier: "NFE",
|
|
3943
3062
|
},
|
|
3944
3063
|
gigalith: {
|
|
3945
|
-
randomBattleMoves: ["earthquake", "explosion", "stealthrock", "stoneedge", "superpower"],
|
|
3946
|
-
randomBattleLevel: 82,
|
|
3947
|
-
randomDoubleBattleMoves: ["bodypress", "explosion", "protect", "rockslide", "stealthrock", "stompingtantrum", "stoneedge", "wideguard"],
|
|
3948
|
-
randomDoubleBattleLevel: 88,
|
|
3949
3064
|
tier: "PU",
|
|
3950
3065
|
doublesTier: "DUU",
|
|
3951
3066
|
natDexTier: "RU",
|
|
@@ -3955,10 +3070,6 @@ exports.FormatsData = {
|
|
|
3955
3070
|
natDexTier: "LC",
|
|
3956
3071
|
},
|
|
3957
3072
|
swoobat: {
|
|
3958
|
-
randomBattleMoves: ["airslash", "calmmind", "heatwave", "roost", "storedpower"],
|
|
3959
|
-
randomBattleLevel: 86,
|
|
3960
|
-
randomDoubleBattleMoves: ["airslash", "calmmind", "heatwave", "psychic"],
|
|
3961
|
-
randomDoubleBattleLevel: 86,
|
|
3962
3073
|
tier: "(PU)",
|
|
3963
3074
|
doublesTier: "(DUU)",
|
|
3964
3075
|
natDexTier: "RU",
|
|
@@ -3967,19 +3078,11 @@ exports.FormatsData = {
|
|
|
3967
3078
|
tier: "LC",
|
|
3968
3079
|
},
|
|
3969
3080
|
excadrill: {
|
|
3970
|
-
randomBattleMoves: ["earthquake", "ironhead", "rapidspin", "rockslide", "swordsdance"],
|
|
3971
|
-
randomBattleLevel: 78,
|
|
3972
|
-
randomDoubleBattleMoves: ["highhorsepower", "ironhead", "protect", "rapidspin", "rockslide", "swordsdance"],
|
|
3973
|
-
randomDoubleBattleLevel: 80,
|
|
3974
3081
|
tier: "UU",
|
|
3975
3082
|
doublesTier: "DUU",
|
|
3976
3083
|
natDexTier: "OU",
|
|
3977
3084
|
},
|
|
3978
3085
|
audino: {
|
|
3979
|
-
randomBattleMoves: ["healbell", "knockoff", "protect", "toxic", "wish"],
|
|
3980
|
-
randomBattleLevel: 91,
|
|
3981
|
-
randomDoubleBattleMoves: ["bodyslam", "healpulse", "helpinghand", "knockoff", "protect", "thunderwave"],
|
|
3982
|
-
randomDoubleBattleLevel: 90,
|
|
3983
3086
|
tier: "PU",
|
|
3984
3087
|
doublesTier: "(DUU)",
|
|
3985
3088
|
natDexTier: "RU",
|
|
@@ -3993,15 +3096,9 @@ exports.FormatsData = {
|
|
|
3993
3096
|
tier: "LC",
|
|
3994
3097
|
},
|
|
3995
3098
|
gurdurr: {
|
|
3996
|
-
randomBattleMoves: ["bulkup", "defog", "drainpunch", "knockoff", "machpunch"],
|
|
3997
|
-
randomBattleLevel: 83,
|
|
3998
3099
|
tier: "NFE",
|
|
3999
3100
|
},
|
|
4000
3101
|
conkeldurr: {
|
|
4001
|
-
randomBattleMoves: ["closecombat", "drainpunch", "facade", "knockoff", "machpunch"],
|
|
4002
|
-
randomBattleLevel: 80,
|
|
4003
|
-
randomDoubleBattleMoves: ["closecombat", "drainpunch", "icepunch", "knockoff", "machpunch", "protect"],
|
|
4004
|
-
randomDoubleBattleLevel: 84,
|
|
4005
3102
|
tier: "UU",
|
|
4006
3103
|
doublesTier: "(DUU)",
|
|
4007
3104
|
natDexTier: "RUBL",
|
|
@@ -4013,28 +3110,16 @@ exports.FormatsData = {
|
|
|
4013
3110
|
tier: "NFE",
|
|
4014
3111
|
},
|
|
4015
3112
|
seismitoad: {
|
|
4016
|
-
randomBattleMoves: ["earthquake", "liquidation", "raindance", "sludgebomb", "stealthrock"],
|
|
4017
|
-
randomBattleLevel: 84,
|
|
4018
|
-
randomDoubleBattleMoves: ["earthpower", "knockoff", "muddywater", "powerwhip", "protect", "raindance"],
|
|
4019
|
-
randomDoubleBattleLevel: 86,
|
|
4020
3113
|
tier: "RU",
|
|
4021
3114
|
doublesTier: "(DUU)",
|
|
4022
3115
|
natDexTier: "RU",
|
|
4023
3116
|
},
|
|
4024
3117
|
throh: {
|
|
4025
|
-
randomBattleMoves: ["bulkup", "circlethrow", "icepunch", "knockoff", "rest", "sleeptalk", "stormthrow"],
|
|
4026
|
-
randomBattleLevel: 86,
|
|
4027
|
-
randomDoubleBattleMoves: ["facade", "knockoff", "protect", "stoneedge", "stormthrow", "wideguard"],
|
|
4028
|
-
randomDoubleBattleLevel: 86,
|
|
4029
3118
|
tier: "(PU)",
|
|
4030
3119
|
doublesTier: "(DUU)",
|
|
4031
3120
|
natDexTier: "RU",
|
|
4032
3121
|
},
|
|
4033
3122
|
sawk: {
|
|
4034
|
-
randomBattleMoves: ["bulkup", "closecombat", "knockoff", "poisonjab", "stoneedge"],
|
|
4035
|
-
randomBattleLevel: 86,
|
|
4036
|
-
randomDoubleBattleMoves: ["closecombat", "helpinghand", "knockoff", "poisonjab", "protect", "rockslide"],
|
|
4037
|
-
randomDoubleBattleLevel: 86,
|
|
4038
3123
|
tier: "(PU)",
|
|
4039
3124
|
doublesTier: "(DUU)",
|
|
4040
3125
|
natDexTier: "RU",
|
|
@@ -4061,10 +3146,6 @@ exports.FormatsData = {
|
|
|
4061
3146
|
tier: "NFE",
|
|
4062
3147
|
},
|
|
4063
3148
|
scolipede: {
|
|
4064
|
-
randomBattleMoves: ["earthquake", "megahorn", "poisonjab", "protect", "spikes", "swordsdance", "toxicspikes"],
|
|
4065
|
-
randomBattleLevel: 80,
|
|
4066
|
-
randomDoubleBattleMoves: ["megahorn", "poisonjab", "protect", "rockslide", "superpower", "swordsdance"],
|
|
4067
|
-
randomDoubleBattleLevel: 84,
|
|
4068
3149
|
tier: "RUBL",
|
|
4069
3150
|
doublesTier: "(DUU)",
|
|
4070
3151
|
natDexTier: "RUBL",
|
|
@@ -4073,11 +3154,6 @@ exports.FormatsData = {
|
|
|
4073
3154
|
tier: "LC",
|
|
4074
3155
|
},
|
|
4075
3156
|
whimsicott: {
|
|
4076
|
-
randomBattleMoves: ["defog", "energyball", "leechseed", "moonblast", "stunspore", "taunt", "uturn"],
|
|
4077
|
-
randomBattleLevel: 84,
|
|
4078
|
-
randomDoubleBattleMoves: ["encore", "energyball", "helpinghand", "moonblast", "tailwind", "taunt"],
|
|
4079
|
-
randomDoubleBattleLevel: 82,
|
|
4080
|
-
randomBattleNoDynamaxMoves: ["defog", "encore", "energyball", "leechseed", "moonblast", "stunspore", "taunt", "uturn"],
|
|
4081
3157
|
tier: "PU",
|
|
4082
3158
|
doublesTier: "DOU",
|
|
4083
3159
|
natDexTier: "RU",
|
|
@@ -4086,10 +3162,6 @@ exports.FormatsData = {
|
|
|
4086
3162
|
tier: "LC",
|
|
4087
3163
|
},
|
|
4088
3164
|
lilligant: {
|
|
4089
|
-
randomBattleMoves: ["gigadrain", "petaldance", "pollenpuff", "quiverdance", "sleeppowder"],
|
|
4090
|
-
randomBattleLevel: 84,
|
|
4091
|
-
randomDoubleBattleMoves: ["energyball", "pollenpuff", "quiverdance", "sleeppowder"],
|
|
4092
|
-
randomDoubleBattleLevel: 84,
|
|
4093
3165
|
tier: "(PU)",
|
|
4094
3166
|
doublesTier: "(DUU)",
|
|
4095
3167
|
natDexTier: "RU",
|
|
@@ -4099,19 +3171,11 @@ exports.FormatsData = {
|
|
|
4099
3171
|
tier: "Illegal",
|
|
4100
3172
|
},
|
|
4101
3173
|
basculin: {
|
|
4102
|
-
randomBattleMoves: ["aquajet", "crunch", "flipturn", "liquidation", "psychicfangs", "superpower"],
|
|
4103
|
-
randomBattleLevel: 86,
|
|
4104
|
-
randomDoubleBattleMoves: ["flipturn", "liquidation", "muddywater", "protect", "superpower"],
|
|
4105
|
-
randomDoubleBattleLevel: 86,
|
|
4106
3174
|
tier: "(PU)",
|
|
4107
3175
|
doublesTier: "(DUU)",
|
|
4108
3176
|
natDexTier: "RU",
|
|
4109
3177
|
},
|
|
4110
3178
|
basculinbluestriped: {
|
|
4111
|
-
randomBattleMoves: ["aquajet", "crunch", "flipturn", "liquidation", "psychicfangs", "superpower"],
|
|
4112
|
-
randomBattleLevel: 86,
|
|
4113
|
-
randomDoubleBattleMoves: ["flipturn", "liquidation", "muddywater", "protect", "superpower"],
|
|
4114
|
-
randomDoubleBattleLevel: 86,
|
|
4115
3179
|
tier: "(PU)",
|
|
4116
3180
|
doublesTier: "(DUU)",
|
|
4117
3181
|
natDexTier: "RU",
|
|
@@ -4127,10 +3191,6 @@ exports.FormatsData = {
|
|
|
4127
3191
|
tier: "NFE",
|
|
4128
3192
|
},
|
|
4129
3193
|
krookodile: {
|
|
4130
|
-
randomBattleMoves: ["closecombat", "earthquake", "knockoff", "stealthrock", "stoneedge"],
|
|
4131
|
-
randomBattleLevel: 78,
|
|
4132
|
-
randomDoubleBattleMoves: ["closecombat", "highhorsepower", "knockoff", "protect", "rockslide", "taunt"],
|
|
4133
|
-
randomDoubleBattleLevel: 81,
|
|
4134
3194
|
tier: "UU",
|
|
4135
3195
|
doublesTier: "DUU",
|
|
4136
3196
|
natDexTier: "UU",
|
|
@@ -4142,10 +3202,6 @@ exports.FormatsData = {
|
|
|
4142
3202
|
tier: "LC",
|
|
4143
3203
|
},
|
|
4144
3204
|
darmanitan: {
|
|
4145
|
-
randomBattleMoves: ["earthquake", "flareblitz", "rockslide", "superpower", "uturn"],
|
|
4146
|
-
randomBattleLevel: 80,
|
|
4147
|
-
randomDoubleBattleMoves: ["earthquake", "flareblitz", "protect", "rockslide", "superpower", "uturn"],
|
|
4148
|
-
randomDoubleBattleLevel: 82,
|
|
4149
3205
|
tier: "UU",
|
|
4150
3206
|
doublesTier: "(DUU)",
|
|
4151
3207
|
natDexTier: "RU",
|
|
@@ -4156,26 +3212,16 @@ exports.FormatsData = {
|
|
|
4156
3212
|
natDexTier: "RU",
|
|
4157
3213
|
},
|
|
4158
3214
|
darmanitangalar: {
|
|
4159
|
-
randomBattleMoves: ["earthquake", "flareblitz", "iciclecrash", "superpower", "uturn"],
|
|
4160
|
-
randomBattleLevel: 78,
|
|
4161
|
-
randomDoubleBattleMoves: ["flareblitz", "iciclecrash", "rockslide", "superpower", "uturn"],
|
|
4162
|
-
randomDoubleBattleLevel: 80,
|
|
4163
3215
|
tier: "Uber",
|
|
4164
3216
|
doublesTier: "(DUU)",
|
|
4165
3217
|
natDexTier: "Uber",
|
|
4166
3218
|
},
|
|
4167
3219
|
darmanitangalarzen: {
|
|
4168
|
-
randomBattleMoves: ["bellydrum", "earthquake", "firepunch", "iciclecrash", "substitute"],
|
|
4169
|
-
randomBattleLevel: 78,
|
|
4170
3220
|
tier: "Uber",
|
|
4171
3221
|
doublesTier: "(DUU)",
|
|
4172
3222
|
natDexTier: "Uber",
|
|
4173
3223
|
},
|
|
4174
3224
|
maractus: {
|
|
4175
|
-
randomBattleMoves: ["energyball", "knockoff", "leechseed", "spikes", "spikyshield", "toxic"],
|
|
4176
|
-
randomBattleLevel: 95,
|
|
4177
|
-
randomDoubleBattleMoves: ["acupressure", "helpinghand", "leafstorm", "leechseed", "spikyshield"],
|
|
4178
|
-
randomDoubleBattleLevel: 96,
|
|
4179
3225
|
tier: "(PU)",
|
|
4180
3226
|
doublesTier: "(DUU)",
|
|
4181
3227
|
natDexTier: "RU",
|
|
@@ -4184,10 +3230,6 @@ exports.FormatsData = {
|
|
|
4184
3230
|
tier: "LC",
|
|
4185
3231
|
},
|
|
4186
3232
|
crustle: {
|
|
4187
|
-
randomBattleMoves: ["earthquake", "shellsmash", "spikes", "stealthrock", "stoneedge", "xscissor"],
|
|
4188
|
-
randomBattleLevel: 82,
|
|
4189
|
-
randomDoubleBattleMoves: ["knockoff", "protect", "rockslide", "shellsmash", "xscissor"],
|
|
4190
|
-
randomDoubleBattleLevel: 84,
|
|
4191
3233
|
tier: "(PU)",
|
|
4192
3234
|
doublesTier: "(DUU)",
|
|
4193
3235
|
natDexTier: "RU",
|
|
@@ -4197,19 +3239,11 @@ exports.FormatsData = {
|
|
|
4197
3239
|
natDexTier: "LC",
|
|
4198
3240
|
},
|
|
4199
3241
|
scrafty: {
|
|
4200
|
-
randomBattleMoves: ["closecombat", "dragondance", "icepunch", "knockoff", "poisonjab"],
|
|
4201
|
-
randomBattleLevel: 82,
|
|
4202
|
-
randomDoubleBattleMoves: ["closecombat", "coaching", "drainpunch", "fakeout", "icepunch", "knockoff"],
|
|
4203
|
-
randomDoubleBattleLevel: 84,
|
|
4204
3242
|
tier: "PUBL",
|
|
4205
3243
|
doublesTier: "DUU",
|
|
4206
3244
|
natDexTier: "RU",
|
|
4207
3245
|
},
|
|
4208
3246
|
sigilyph: {
|
|
4209
|
-
randomBattleMoves: ["airslash", "defog", "energyball", "heatwave", "psychic"],
|
|
4210
|
-
randomBattleLevel: 83,
|
|
4211
|
-
randomDoubleBattleMoves: ["airslash", "heatwave", "protect", "psychic", "tailwind"],
|
|
4212
|
-
randomDoubleBattleLevel: 86,
|
|
4213
3247
|
tier: "NUBL",
|
|
4214
3248
|
doublesTier: "(DUU)",
|
|
4215
3249
|
natDexTier: "RU",
|
|
@@ -4221,19 +3255,11 @@ exports.FormatsData = {
|
|
|
4221
3255
|
tier: "LC",
|
|
4222
3256
|
},
|
|
4223
3257
|
cofagrigus: {
|
|
4224
|
-
randomBattleMoves: ["bodypress", "memento", "shadowball", "toxicspikes", "willowisp"],
|
|
4225
|
-
randomBattleLevel: 86,
|
|
4226
|
-
randomDoubleBattleMoves: ["bodypress", "irondefense", "painsplit", "shadowball", "trickroom", "willowisp"],
|
|
4227
|
-
randomDoubleBattleLevel: 88,
|
|
4228
3258
|
tier: "(PU)",
|
|
4229
3259
|
doublesTier: "(DUU)",
|
|
4230
3260
|
natDexTier: "RU",
|
|
4231
3261
|
},
|
|
4232
3262
|
runerigus: {
|
|
4233
|
-
randomBattleMoves: ["earthquake", "haze", "poltergeist", "stealthrock", "toxicspikes", "willowisp"],
|
|
4234
|
-
randomBattleLevel: 84,
|
|
4235
|
-
randomDoubleBattleMoves: ["earthquake", "poltergeist", "protect", "toxicspikes", "trickroom", "willowisp"],
|
|
4236
|
-
randomDoubleBattleLevel: 88,
|
|
4237
3263
|
tier: "(PU)",
|
|
4238
3264
|
doublesTier: "(DUU)",
|
|
4239
3265
|
natDexTier: "RU",
|
|
@@ -4242,10 +3268,6 @@ exports.FormatsData = {
|
|
|
4242
3268
|
tier: "LC",
|
|
4243
3269
|
},
|
|
4244
3270
|
carracosta: {
|
|
4245
|
-
randomBattleMoves: ["aquajet", "hydropump", "shellsmash", "stoneedge", "superpower"],
|
|
4246
|
-
randomBattleLevel: 84,
|
|
4247
|
-
randomDoubleBattleMoves: ["aquajet", "liquidation", "shellsmash", "stoneedge", "superpower"],
|
|
4248
|
-
randomDoubleBattleLevel: 88,
|
|
4249
3271
|
tier: "(PU)",
|
|
4250
3272
|
doublesTier: "(DUU)",
|
|
4251
3273
|
natDexTier: "RU",
|
|
@@ -4254,10 +3276,6 @@ exports.FormatsData = {
|
|
|
4254
3276
|
tier: "LC",
|
|
4255
3277
|
},
|
|
4256
3278
|
archeops: {
|
|
4257
|
-
randomBattleMoves: ["dualwingbeat", "earthquake", "roost", "stoneedge", "uturn"],
|
|
4258
|
-
randomBattleLevel: 82,
|
|
4259
|
-
randomDoubleBattleMoves: ["aquatail", "dualwingbeat", "earthquake", "protect", "rockslide", "uturn"],
|
|
4260
|
-
randomDoubleBattleLevel: 86,
|
|
4261
3279
|
tier: "PU",
|
|
4262
3280
|
doublesTier: "(DUU)",
|
|
4263
3281
|
natDexTier: "RU",
|
|
@@ -4271,10 +3289,6 @@ exports.FormatsData = {
|
|
|
4271
3289
|
natDexTier: "RU",
|
|
4272
3290
|
},
|
|
4273
3291
|
garbodorgmax: {
|
|
4274
|
-
randomBattleMoves: ["explosion", "gunkshot", "painsplit", "spikes", "stompingtantrum", "toxicspikes"],
|
|
4275
|
-
randomBattleLevel: 87,
|
|
4276
|
-
randomDoubleBattleMoves: ["drainpunch", "explosion", "gunkshot", "protect", "toxicspikes"],
|
|
4277
|
-
randomDoubleBattleLevel: 90,
|
|
4278
3292
|
isNonstandard: "Gigantamax",
|
|
4279
3293
|
tier: "AG",
|
|
4280
3294
|
doublesTier: "(DUber)",
|
|
@@ -4288,8 +3302,6 @@ exports.FormatsData = {
|
|
|
4288
3302
|
tier: "Illegal",
|
|
4289
3303
|
},
|
|
4290
3304
|
zoroark: {
|
|
4291
|
-
randomBattleMoves: ["darkpulse", "flamethrower", "nastyplot", "sludgebomb", "trick"],
|
|
4292
|
-
randomDoubleBattleMoves: ["darkpulse", "flamethrower", "focusblast", "nastyplot", "protect", "sludgebomb"],
|
|
4293
3305
|
tier: "PUBL",
|
|
4294
3306
|
doublesTier: "(DUU)",
|
|
4295
3307
|
natDexTier: "RU",
|
|
@@ -4302,10 +3314,6 @@ exports.FormatsData = {
|
|
|
4302
3314
|
tier: "LC",
|
|
4303
3315
|
},
|
|
4304
3316
|
cinccino: {
|
|
4305
|
-
randomBattleMoves: ["bulletseed", "knockoff", "rockblast", "tailslap", "uturn"],
|
|
4306
|
-
randomBattleLevel: 84,
|
|
4307
|
-
randomDoubleBattleMoves: ["bulletseed", "knockoff", "protect", "rockblast", "tailslap", "tripleaxel", "uturn"],
|
|
4308
|
-
randomDoubleBattleLevel: 86,
|
|
4309
3317
|
tier: "PU",
|
|
4310
3318
|
doublesTier: "(DUU)",
|
|
4311
3319
|
natDexTier: "RU",
|
|
@@ -4318,10 +3326,6 @@ exports.FormatsData = {
|
|
|
4318
3326
|
tier: "NFE",
|
|
4319
3327
|
},
|
|
4320
3328
|
gothitelle: {
|
|
4321
|
-
randomBattleMoves: ["nastyplot", "psychic", "shadowball", "thunderbolt", "trick"],
|
|
4322
|
-
randomBattleLevel: 86,
|
|
4323
|
-
randomDoubleBattleMoves: ["fakeout", "healpulse", "helpinghand", "hypnosis", "protect", "psychic", "trickroom"],
|
|
4324
|
-
randomDoubleBattleLevel: 83,
|
|
4325
3329
|
tier: "(PU)",
|
|
4326
3330
|
doublesTier: "(DUU)",
|
|
4327
3331
|
natDexTier: "RU",
|
|
@@ -4333,10 +3337,6 @@ exports.FormatsData = {
|
|
|
4333
3337
|
tier: "NFE",
|
|
4334
3338
|
},
|
|
4335
3339
|
reuniclus: {
|
|
4336
|
-
randomBattleMoves: ["calmmind", "focusblast", "psychic", "recover", "shadowball", "trickroom"],
|
|
4337
|
-
randomBattleLevel: 84,
|
|
4338
|
-
randomDoubleBattleMoves: ["focusblast", "protect", "psychic", "shadowball", "trickroom"],
|
|
4339
|
-
randomDoubleBattleLevel: 84,
|
|
4340
3340
|
tier: "RU",
|
|
4341
3341
|
doublesTier: "(DUU)",
|
|
4342
3342
|
natDexTier: "RUBL",
|
|
@@ -4358,10 +3358,6 @@ exports.FormatsData = {
|
|
|
4358
3358
|
tier: "NFE",
|
|
4359
3359
|
},
|
|
4360
3360
|
vanilluxe: {
|
|
4361
|
-
randomBattleMoves: ["auroraveil", "blizzard", "explosion", "flashcannon", "freezedry"],
|
|
4362
|
-
randomBattleLevel: 82,
|
|
4363
|
-
randomDoubleBattleMoves: ["auroraveil", "blizzard", "explosion", "freezedry", "protect"],
|
|
4364
|
-
randomDoubleBattleLevel: 82,
|
|
4365
3361
|
tier: "PUBL",
|
|
4366
3362
|
doublesTier: "(DUU)",
|
|
4367
3363
|
natDexTier: "RU",
|
|
@@ -4377,10 +3373,6 @@ exports.FormatsData = {
|
|
|
4377
3373
|
natDexTier: "RU",
|
|
4378
3374
|
},
|
|
4379
3375
|
emolga: {
|
|
4380
|
-
randomBattleMoves: ["airslash", "defog", "energyball", "roost", "thunderbolt", "toxic", "uturn"],
|
|
4381
|
-
randomBattleLevel: 88,
|
|
4382
|
-
randomDoubleBattleMoves: ["acrobatics", "helpinghand", "nuzzle", "tailwind", "taunt", "voltswitch"],
|
|
4383
|
-
randomDoubleBattleLevel: 88,
|
|
4384
3376
|
tier: "(PU)",
|
|
4385
3377
|
doublesTier: "(DUU)",
|
|
4386
3378
|
natDexTier: "RU",
|
|
@@ -4389,10 +3381,6 @@ exports.FormatsData = {
|
|
|
4389
3381
|
tier: "LC",
|
|
4390
3382
|
},
|
|
4391
3383
|
escavalier: {
|
|
4392
|
-
randomBattleMoves: ["closecombat", "drillrun", "ironhead", "knockoff", "megahorn", "swordsdance"],
|
|
4393
|
-
randomBattleLevel: 84,
|
|
4394
|
-
randomDoubleBattleMoves: ["closecombat", "drillrun", "ironhead", "knockoff", "megahorn", "protect", "swordsdance"],
|
|
4395
|
-
randomDoubleBattleLevel: 86,
|
|
4396
3384
|
tier: "NU",
|
|
4397
3385
|
doublesTier: "(DUU)",
|
|
4398
3386
|
natDexTier: "RU",
|
|
@@ -4401,10 +3389,6 @@ exports.FormatsData = {
|
|
|
4401
3389
|
tier: "LC",
|
|
4402
3390
|
},
|
|
4403
3391
|
amoonguss: {
|
|
4404
|
-
randomBattleMoves: ["gigadrain", "sludgebomb", "spore", "synthesis", "toxic"],
|
|
4405
|
-
randomBattleLevel: 84,
|
|
4406
|
-
randomDoubleBattleMoves: ["clearsmog", "pollenpuff", "protect", "ragepowder", "spore"],
|
|
4407
|
-
randomDoubleBattleLevel: 81,
|
|
4408
3392
|
tier: "UU",
|
|
4409
3393
|
doublesTier: "DOU",
|
|
4410
3394
|
natDexTier: "UU",
|
|
@@ -4413,10 +3397,6 @@ exports.FormatsData = {
|
|
|
4413
3397
|
tier: "LC",
|
|
4414
3398
|
},
|
|
4415
3399
|
jellicent: {
|
|
4416
|
-
randomBattleMoves: ["icebeam", "recover", "scald", "shadowball", "toxic", "willowisp"],
|
|
4417
|
-
randomBattleLevel: 84,
|
|
4418
|
-
randomDoubleBattleMoves: ["scald", "shadowball", "strengthsap", "trickroom", "willowisp"],
|
|
4419
|
-
randomDoubleBattleLevel: 84,
|
|
4420
3400
|
tier: "PU",
|
|
4421
3401
|
doublesTier: "(DUU)",
|
|
4422
3402
|
natDexTier: "RU",
|
|
@@ -4430,10 +3410,6 @@ exports.FormatsData = {
|
|
|
4430
3410
|
tier: "LC",
|
|
4431
3411
|
},
|
|
4432
3412
|
galvantula: {
|
|
4433
|
-
randomBattleMoves: ["bugbuzz", "gigadrain", "stickyweb", "thunder", "voltswitch"],
|
|
4434
|
-
randomBattleLevel: 82,
|
|
4435
|
-
randomDoubleBattleMoves: ["bugbuzz", "electroweb", "energyball", "protect", "stickyweb", "thunder"],
|
|
4436
|
-
randomDoubleBattleLevel: 85,
|
|
4437
3413
|
tier: "PU",
|
|
4438
3414
|
doublesTier: "(DUU)",
|
|
4439
3415
|
natDexTier: "RU",
|
|
@@ -4444,10 +3420,6 @@ exports.FormatsData = {
|
|
|
4444
3420
|
natDexTier: "LC",
|
|
4445
3421
|
},
|
|
4446
3422
|
ferrothorn: {
|
|
4447
|
-
randomBattleMoves: ["gyroball", "knockoff", "leechseed", "powerwhip", "protect", "spikes", "stealthrock"],
|
|
4448
|
-
randomBattleLevel: 78,
|
|
4449
|
-
randomDoubleBattleMoves: ["bodypress", "gyroball", "leechseed", "powerwhip", "protect", "toxic"],
|
|
4450
|
-
randomDoubleBattleLevel: 83,
|
|
4451
3423
|
tier: "OU",
|
|
4452
3424
|
doublesTier: "DUU",
|
|
4453
3425
|
natDexTier: "OU",
|
|
@@ -4459,10 +3431,6 @@ exports.FormatsData = {
|
|
|
4459
3431
|
tier: "NFE",
|
|
4460
3432
|
},
|
|
4461
3433
|
klinklang: {
|
|
4462
|
-
randomBattleMoves: ["geargrind", "shiftgear", "substitute", "wildcharge"],
|
|
4463
|
-
randomBattleLevel: 84,
|
|
4464
|
-
randomDoubleBattleMoves: ["geargrind", "protect", "shiftgear", "wildcharge"],
|
|
4465
|
-
randomDoubleBattleLevel: 88,
|
|
4466
3434
|
tier: "(PU)",
|
|
4467
3435
|
doublesTier: "(DUU)",
|
|
4468
3436
|
natDexTier: "RU",
|
|
@@ -4486,10 +3454,6 @@ exports.FormatsData = {
|
|
|
4486
3454
|
tier: "LC",
|
|
4487
3455
|
},
|
|
4488
3456
|
beheeyem: {
|
|
4489
|
-
randomBattleMoves: ["psychic", "shadowball", "thunderbolt", "trick", "trickroom"],
|
|
4490
|
-
randomBattleLevel: 86,
|
|
4491
|
-
randomDoubleBattleMoves: ["protect", "psychic", "shadowball", "thunderbolt", "trickroom"],
|
|
4492
|
-
randomDoubleBattleLevel: 88,
|
|
4493
3457
|
tier: "(PU)",
|
|
4494
3458
|
doublesTier: "(DUU)",
|
|
4495
3459
|
natDexTier: "RU",
|
|
@@ -4501,10 +3465,6 @@ exports.FormatsData = {
|
|
|
4501
3465
|
tier: "NFE",
|
|
4502
3466
|
},
|
|
4503
3467
|
chandelure: {
|
|
4504
|
-
randomBattleMoves: ["calmmind", "energyball", "fireblast", "shadowball", "substitute", "trick"],
|
|
4505
|
-
randomBattleLevel: 82,
|
|
4506
|
-
randomDoubleBattleMoves: ["calmmind", "energyball", "heatwave", "overheat", "protect", "shadowball", "trick"],
|
|
4507
|
-
randomDoubleBattleLevel: 80,
|
|
4508
3468
|
tier: "RU",
|
|
4509
3469
|
doublesTier: "(DUU)",
|
|
4510
3470
|
natDexTier: "UU",
|
|
@@ -4516,10 +3476,6 @@ exports.FormatsData = {
|
|
|
4516
3476
|
tier: "NFE",
|
|
4517
3477
|
},
|
|
4518
3478
|
haxorus: {
|
|
4519
|
-
randomBattleMoves: ["closecombat", "dragondance", "earthquake", "outrage", "poisonjab"],
|
|
4520
|
-
randomBattleLevel: 77,
|
|
4521
|
-
randomDoubleBattleMoves: ["closecombat", "dragonclaw", "dragondance", "poisonjab", "protect"],
|
|
4522
|
-
randomDoubleBattleLevel: 84,
|
|
4523
3479
|
tier: "RUBL",
|
|
4524
3480
|
doublesTier: "(DUU)",
|
|
4525
3481
|
natDexTier: "RUBL",
|
|
@@ -4528,19 +3484,11 @@ exports.FormatsData = {
|
|
|
4528
3484
|
tier: "LC",
|
|
4529
3485
|
},
|
|
4530
3486
|
beartic: {
|
|
4531
|
-
randomBattleMoves: ["aquajet", "iciclecrash", "stoneedge", "superpower", "swordsdance"],
|
|
4532
|
-
randomBattleLevel: 86,
|
|
4533
|
-
randomDoubleBattleMoves: ["aquajet", "iciclecrash", "protect", "superpower", "swordsdance"],
|
|
4534
|
-
randomDoubleBattleLevel: 86,
|
|
4535
3487
|
tier: "(PU)",
|
|
4536
3488
|
doublesTier: "(DUU)",
|
|
4537
3489
|
natDexTier: "RU",
|
|
4538
3490
|
},
|
|
4539
3491
|
cryogonal: {
|
|
4540
|
-
randomBattleMoves: ["freezedry", "haze", "rapidspin", "recover", "toxic"],
|
|
4541
|
-
randomBattleLevel: 86,
|
|
4542
|
-
randomDoubleBattleMoves: ["freezedry", "haze", "icebeam", "icywind", "rapidspin", "recover", "toxic"],
|
|
4543
|
-
randomDoubleBattleLevel: 88,
|
|
4544
3492
|
tier: "(PU)",
|
|
4545
3493
|
doublesTier: "(DUU)",
|
|
4546
3494
|
natDexTier: "RU",
|
|
@@ -4549,29 +3497,16 @@ exports.FormatsData = {
|
|
|
4549
3497
|
tier: "LC",
|
|
4550
3498
|
},
|
|
4551
3499
|
accelgor: {
|
|
4552
|
-
randomBattleMoves: ["bugbuzz", "energyball", "focusblast", "sludgebomb", "spikes", "toxic", "yawn"],
|
|
4553
|
-
randomBattleLevel: 86,
|
|
4554
|
-
randomDoubleBattleMoves: ["acidspray", "bugbuzz", "encore", "energyball", "focusblast"],
|
|
4555
|
-
randomDoubleBattleLevel: 88,
|
|
4556
|
-
randomBattleNoDynamaxMoves: ["bugbuzz", "encore", "energyball", "focusblast", "spikes", "toxic"],
|
|
4557
3500
|
tier: "(PU)",
|
|
4558
3501
|
doublesTier: "(DUU)",
|
|
4559
3502
|
natDexTier: "RU",
|
|
4560
3503
|
},
|
|
4561
3504
|
stunfisk: {
|
|
4562
|
-
randomBattleMoves: ["discharge", "earthpower", "foulplay", "sludgebomb", "stealthrock"],
|
|
4563
|
-
randomBattleLevel: 84,
|
|
4564
|
-
randomDoubleBattleMoves: ["earthpower", "electroweb", "foulplay", "stealthrock", "thunderbolt"],
|
|
4565
|
-
randomDoubleBattleLevel: 88,
|
|
4566
3505
|
tier: "(PU)",
|
|
4567
3506
|
doublesTier: "(DUU)",
|
|
4568
3507
|
natDexTier: "RU",
|
|
4569
3508
|
},
|
|
4570
3509
|
stunfiskgalar: {
|
|
4571
|
-
randomBattleMoves: ["earthquake", "painsplit", "stealthrock", "stoneedge", "thunderwave"],
|
|
4572
|
-
randomBattleLevel: 84,
|
|
4573
|
-
randomDoubleBattleMoves: ["earthquake", "stealthrock", "stoneedge", "thunderwave", "yawn"],
|
|
4574
|
-
randomDoubleBattleLevel: 88,
|
|
4575
3510
|
tier: "(PU)",
|
|
4576
3511
|
doublesTier: "(DUU)",
|
|
4577
3512
|
natDexTier: "RU",
|
|
@@ -4580,19 +3515,11 @@ exports.FormatsData = {
|
|
|
4580
3515
|
tier: "LC",
|
|
4581
3516
|
},
|
|
4582
3517
|
mienshao: {
|
|
4583
|
-
randomBattleMoves: ["closecombat", "fakeout", "knockoff", "poisonjab", "stoneedge", "swordsdance", "uturn"],
|
|
4584
|
-
randomBattleLevel: 82,
|
|
4585
|
-
randomDoubleBattleMoves: ["closecombat", "fakeout", "knockoff", "poisonjab", "protect", "uturn"],
|
|
4586
|
-
randomDoubleBattleLevel: 84,
|
|
4587
3518
|
tier: "UUBL",
|
|
4588
3519
|
doublesTier: "(DUU)",
|
|
4589
3520
|
natDexTier: "UU",
|
|
4590
3521
|
},
|
|
4591
3522
|
druddigon: {
|
|
4592
|
-
randomBattleMoves: ["earthquake", "glare", "gunkshot", "outrage", "stealthrock", "suckerpunch", "superpower"],
|
|
4593
|
-
randomBattleLevel: 84,
|
|
4594
|
-
randomDoubleBattleMoves: ["dragonclaw", "firepunch", "glare", "gunkshot", "protect", "suckerpunch"],
|
|
4595
|
-
randomDoubleBattleLevel: 87,
|
|
4596
3523
|
tier: "PU",
|
|
4597
3524
|
doublesTier: "(DUU)",
|
|
4598
3525
|
natDexTier: "RU",
|
|
@@ -4601,10 +3528,6 @@ exports.FormatsData = {
|
|
|
4601
3528
|
tier: "LC",
|
|
4602
3529
|
},
|
|
4603
3530
|
golurk: {
|
|
4604
|
-
randomBattleMoves: ["dynamicpunch", "earthquake", "poltergeist", "rockpolish", "stoneedge"],
|
|
4605
|
-
randomBattleLevel: 82,
|
|
4606
|
-
randomDoubleBattleMoves: ["dynamicpunch", "highhorsepower", "icepunch", "poltergeist", "protect"],
|
|
4607
|
-
randomDoubleBattleLevel: 86,
|
|
4608
3531
|
tier: "NU",
|
|
4609
3532
|
doublesTier: "(DUU)",
|
|
4610
3533
|
natDexTier: "RU",
|
|
@@ -4613,19 +3536,11 @@ exports.FormatsData = {
|
|
|
4613
3536
|
tier: "LC",
|
|
4614
3537
|
},
|
|
4615
3538
|
bisharp: {
|
|
4616
|
-
randomBattleMoves: ["ironhead", "knockoff", "stealthrock", "suckerpunch", "swordsdance"],
|
|
4617
|
-
randomBattleLevel: 80,
|
|
4618
|
-
randomDoubleBattleMoves: ["ironhead", "knockoff", "protect", "suckerpunch", "swordsdance"],
|
|
4619
|
-
randomDoubleBattleLevel: 84,
|
|
4620
3539
|
tier: "OU",
|
|
4621
3540
|
doublesTier: "(DUU)",
|
|
4622
3541
|
natDexTier: "RUBL",
|
|
4623
3542
|
},
|
|
4624
3543
|
bouffalant: {
|
|
4625
|
-
randomBattleMoves: ["closecombat", "earthquake", "headcharge", "megahorn", "swordsdance"],
|
|
4626
|
-
randomBattleLevel: 84,
|
|
4627
|
-
randomDoubleBattleMoves: ["closecombat", "headcharge", "lashout", "protect", "wildcharge"],
|
|
4628
|
-
randomDoubleBattleLevel: 86,
|
|
4629
3544
|
tier: "(PU)",
|
|
4630
3545
|
doublesTier: "(DUU)",
|
|
4631
3546
|
natDexTier: "RU",
|
|
@@ -4635,10 +3550,6 @@ exports.FormatsData = {
|
|
|
4635
3550
|
natDexTier: "LC",
|
|
4636
3551
|
},
|
|
4637
3552
|
braviary: {
|
|
4638
|
-
randomBattleMoves: ["bravebird", "bulkup", "closecombat", "roost"],
|
|
4639
|
-
randomBattleLevel: 82,
|
|
4640
|
-
randomDoubleBattleMoves: ["bravebird", "bulkup", "closecombat", "roost", "tailwind"],
|
|
4641
|
-
randomDoubleBattleLevel: 82,
|
|
4642
3553
|
tier: "NU",
|
|
4643
3554
|
doublesTier: "(DUU)",
|
|
4644
3555
|
natDexTier: "RU",
|
|
@@ -4652,28 +3563,16 @@ exports.FormatsData = {
|
|
|
4652
3563
|
natDexTier: "LC",
|
|
4653
3564
|
},
|
|
4654
3565
|
mandibuzz: {
|
|
4655
|
-
randomBattleMoves: ["bravebird", "defog", "foulplay", "roost", "toxic"],
|
|
4656
|
-
randomBattleLevel: 82,
|
|
4657
|
-
randomDoubleBattleMoves: ["foulplay", "roost", "snarl", "tailwind", "taunt"],
|
|
4658
|
-
randomDoubleBattleLevel: 88,
|
|
4659
3566
|
tier: "UU",
|
|
4660
3567
|
doublesTier: "(DUU)",
|
|
4661
3568
|
natDexTier: "UU",
|
|
4662
3569
|
},
|
|
4663
3570
|
heatmor: {
|
|
4664
|
-
randomBattleMoves: ["firelash", "gigadrain", "knockoff", "substitute", "suckerpunch", "superpower"],
|
|
4665
|
-
randomBattleLevel: 90,
|
|
4666
|
-
randomDoubleBattleMoves: ["firelash", "gigadrain", "incinerate", "protect", "suckerpunch", "superpower"],
|
|
4667
|
-
randomDoubleBattleLevel: 88,
|
|
4668
3571
|
tier: "(PU)",
|
|
4669
3572
|
doublesTier: "(DUU)",
|
|
4670
3573
|
natDexTier: "RU",
|
|
4671
3574
|
},
|
|
4672
3575
|
durant: {
|
|
4673
|
-
randomBattleMoves: ["firstimpression", "honeclaws", "ironhead", "rockslide", "superpower"],
|
|
4674
|
-
randomBattleLevel: 78,
|
|
4675
|
-
randomDoubleBattleMoves: ["firstimpression", "ironhead", "protect", "stompingtantrum", "superpower", "xscissor"],
|
|
4676
|
-
randomDoubleBattleLevel: 82,
|
|
4677
3576
|
tier: "RUBL",
|
|
4678
3577
|
doublesTier: "(DUU)",
|
|
4679
3578
|
natDexTier: "RUBL",
|
|
@@ -4685,10 +3584,6 @@ exports.FormatsData = {
|
|
|
4685
3584
|
tier: "NFE",
|
|
4686
3585
|
},
|
|
4687
3586
|
hydreigon: {
|
|
4688
|
-
randomBattleMoves: ["darkpulse", "dracometeor", "fireblast", "flashcannon", "nastyplot", "roost", "uturn"],
|
|
4689
|
-
randomBattleLevel: 80,
|
|
4690
|
-
randomDoubleBattleMoves: ["darkpulse", "dracometeor", "dragonpulse", "earthpower", "fireblast", "nastyplot", "protect", "tailwind"],
|
|
4691
|
-
randomDoubleBattleLevel: 84,
|
|
4692
3587
|
tier: "UU",
|
|
4693
3588
|
doublesTier: "(DUU)",
|
|
4694
3589
|
natDexTier: "UU",
|
|
@@ -4697,138 +3592,76 @@ exports.FormatsData = {
|
|
|
4697
3592
|
tier: "LC",
|
|
4698
3593
|
},
|
|
4699
3594
|
volcarona: {
|
|
4700
|
-
randomBattleMoves: ["bugbuzz", "fireblast", "gigadrain", "quiverdance", "roost"],
|
|
4701
|
-
randomBattleLevel: 76,
|
|
4702
|
-
randomDoubleBattleMoves: ["bugbuzz", "gigadrain", "heatwave", "protect", "quiverdance"],
|
|
4703
|
-
randomDoubleBattleLevel: 80,
|
|
4704
3595
|
tier: "OU",
|
|
4705
3596
|
doublesTier: "(DUU)",
|
|
4706
3597
|
natDexTier: "OU",
|
|
4707
3598
|
},
|
|
4708
3599
|
cobalion: {
|
|
4709
|
-
randomBattleMoves: ["closecombat", "ironhead", "stealthrock", "stoneedge", "swordsdance", "voltswitch"],
|
|
4710
|
-
randomBattleLevel: 78,
|
|
4711
|
-
randomDoubleBattleMoves: ["closecombat", "ironhead", "protect", "stoneedge", "swordsdance", "thunderwave"],
|
|
4712
|
-
randomDoubleBattleLevel: 84,
|
|
4713
3600
|
tier: "UU",
|
|
4714
3601
|
doublesTier: "(DUU)",
|
|
4715
3602
|
natDexTier: "RU",
|
|
4716
3603
|
},
|
|
4717
3604
|
terrakion: {
|
|
4718
|
-
randomBattleMoves: ["closecombat", "earthquake", "quickattack", "stoneedge", "swordsdance"],
|
|
4719
|
-
randomBattleLevel: 78,
|
|
4720
|
-
randomDoubleBattleMoves: ["closecombat", "protect", "rockslide", "swordsdance"],
|
|
4721
|
-
randomDoubleBattleLevel: 80,
|
|
4722
3605
|
tier: "UUBL",
|
|
4723
3606
|
doublesTier: "(DUU)",
|
|
4724
3607
|
natDexTier: "RUBL",
|
|
4725
3608
|
},
|
|
4726
3609
|
virizion: {
|
|
4727
|
-
randomBattleMoves: ["closecombat", "leafblade", "stoneedge", "swordsdance"],
|
|
4728
|
-
randomBattleLevel: 82,
|
|
4729
|
-
randomDoubleBattleMoves: ["closecombat", "coaching", "leafblade", "protect", "stoneedge", "swordsdance"],
|
|
4730
|
-
randomDoubleBattleLevel: 86,
|
|
4731
|
-
randomBattleNoDynamaxMoves: ["closecombat", "leafblade", "stoneedge", "swordsdance"],
|
|
4732
3610
|
tier: "PUBL",
|
|
4733
3611
|
doublesTier: "(DUU)",
|
|
4734
3612
|
natDexTier: "RU",
|
|
4735
3613
|
},
|
|
4736
3614
|
tornadus: {
|
|
4737
|
-
randomBattleMoves: ["defog", "grassknot", "heatwave", "hurricane", "nastyplot"],
|
|
4738
|
-
randomBattleLevel: 80,
|
|
4739
|
-
randomDoubleBattleMoves: ["heatwave", "hurricane", "nastyplot", "superpower", "tailwind", "taunt"],
|
|
4740
|
-
randomDoubleBattleLevel: 80,
|
|
4741
3615
|
tier: "NUBL",
|
|
4742
3616
|
doublesTier: "DUU",
|
|
4743
3617
|
natDexTier: "RUBL",
|
|
4744
3618
|
},
|
|
4745
3619
|
tornadustherian: {
|
|
4746
|
-
randomBattleMoves: ["defog", "hurricane", "knockoff", "superpower", "uturn"],
|
|
4747
|
-
randomBattleLevel: 78,
|
|
4748
|
-
randomDoubleBattleMoves: ["heatwave", "hurricane", "knockoff", "nastyplot", "protect", "uturn"],
|
|
4749
|
-
randomDoubleBattleLevel: 80,
|
|
4750
3620
|
tier: "OU",
|
|
4751
3621
|
doublesTier: "(DUU)",
|
|
4752
3622
|
natDexTier: "Uber",
|
|
4753
3623
|
},
|
|
4754
3624
|
thundurus: {
|
|
4755
|
-
randomBattleMoves: ["grassknot", "knockoff", "nastyplot", "sludgewave", "superpower", "thunderbolt", "thunderwave"],
|
|
4756
|
-
randomBattleLevel: 80,
|
|
4757
|
-
randomDoubleBattleMoves: ["grassknot", "knockoff", "nastyplot", "protect", "sludgebomb", "thunderbolt", "thunderwave"],
|
|
4758
|
-
randomDoubleBattleLevel: 82,
|
|
4759
3625
|
tier: "UUBL",
|
|
4760
3626
|
doublesTier: "(DUU)",
|
|
4761
3627
|
natDexTier: "UUBL",
|
|
4762
3628
|
},
|
|
4763
3629
|
thundurustherian: {
|
|
4764
|
-
randomBattleMoves: ["focusblast", "grassknot", "nastyplot", "psychic", "thunderbolt", "voltswitch"],
|
|
4765
|
-
randomBattleLevel: 80,
|
|
4766
|
-
randomDoubleBattleMoves: ["agility", "focusblast", "grassknot", "nastyplot", "sludgebomb", "thunderbolt", "voltswitch"],
|
|
4767
|
-
randomDoubleBattleLevel: 82,
|
|
4768
3630
|
tier: "UU",
|
|
4769
3631
|
doublesTier: "(DUU)",
|
|
4770
3632
|
natDexTier: "UUBL",
|
|
4771
3633
|
},
|
|
4772
3634
|
reshiram: {
|
|
4773
|
-
randomBattleMoves: ["blueflare", "defog", "dracometeor", "earthpower", "roost", "stoneedge", "toxic"],
|
|
4774
|
-
randomBattleLevel: 74,
|
|
4775
|
-
randomDoubleBattleMoves: ["blueflare", "dracometeor", "earthpower", "heatwave", "roost", "tailwind"],
|
|
4776
|
-
randomDoubleBattleLevel: 72,
|
|
4777
3635
|
tier: "Uber",
|
|
4778
3636
|
doublesTier: "DUber",
|
|
4779
3637
|
natDexTier: "Uber",
|
|
4780
3638
|
},
|
|
4781
3639
|
zekrom: {
|
|
4782
|
-
randomBattleMoves: ["boltstrike", "dragondance", "outrage", "roost"],
|
|
4783
|
-
randomBattleLevel: 69,
|
|
4784
|
-
randomDoubleBattleMoves: ["boltstrike", "dragonclaw", "dragondance", "roost"],
|
|
4785
|
-
randomDoubleBattleLevel: 72,
|
|
4786
3640
|
tier: "Uber",
|
|
4787
3641
|
doublesTier: "DUber",
|
|
4788
3642
|
natDexTier: "Uber",
|
|
4789
3643
|
},
|
|
4790
3644
|
landorus: {
|
|
4791
|
-
randomBattleMoves: ["earthpower", "focusblast", "knockoff", "rockpolish", "rockslide", "sludgewave", "stealthrock"],
|
|
4792
|
-
randomBattleLevel: 76,
|
|
4793
|
-
randomDoubleBattleMoves: ["calmmind", "earthpower", "focusblast", "protect", "psychic", "sludgebomb"],
|
|
4794
|
-
randomDoubleBattleLevel: 80,
|
|
4795
3645
|
tier: "Uber",
|
|
4796
3646
|
doublesTier: "DOU",
|
|
4797
3647
|
natDexTier: "Uber",
|
|
4798
3648
|
},
|
|
4799
3649
|
landorustherian: {
|
|
4800
|
-
randomBattleMoves: ["earthquake", "fly", "stealthrock", "stoneedge", "swordsdance", "uturn"],
|
|
4801
|
-
randomBattleLevel: 72,
|
|
4802
|
-
randomDoubleBattleMoves: ["earthquake", "fly", "knockoff", "stoneedge", "swordsdance", "uturn"],
|
|
4803
|
-
randomDoubleBattleLevel: 76,
|
|
4804
|
-
randomBattleNoDynamaxMoves: ["earthquake", "knockoff", "stealthrock", "stoneedge", "swordsdance", "uturn"],
|
|
4805
3650
|
tier: "OU",
|
|
4806
3651
|
doublesTier: "DOU",
|
|
4807
3652
|
natDexTier: "OU",
|
|
4808
3653
|
},
|
|
4809
3654
|
kyurem: {
|
|
4810
|
-
randomBattleMoves: ["dracometeor", "earthpower", "freezedry", "icebeam", "roost", "substitute"],
|
|
4811
|
-
randomBattleLevel: 80,
|
|
4812
|
-
randomDoubleBattleMoves: ["dracometeor", "earthpower", "freezedry", "glaciate", "protect", "roost"],
|
|
4813
|
-
randomDoubleBattleLevel: 78,
|
|
4814
3655
|
tier: "Uber",
|
|
4815
3656
|
doublesTier: "(DUU)",
|
|
4816
3657
|
natDexTier: "OU",
|
|
4817
3658
|
},
|
|
4818
3659
|
kyuremblack: {
|
|
4819
|
-
randomBattleMoves: ["dragondance", "fusionbolt", "iciclespear", "outrage"],
|
|
4820
|
-
randomBattleLevel: 73,
|
|
4821
|
-
randomDoubleBattleMoves: ["dragonclaw", "dragondance", "fusionbolt", "iciclespear", "protect"],
|
|
4822
|
-
randomDoubleBattleLevel: 75,
|
|
4823
3660
|
tier: "Uber",
|
|
4824
3661
|
doublesTier: "DOU",
|
|
4825
3662
|
natDexTier: "Uber",
|
|
4826
3663
|
},
|
|
4827
3664
|
kyuremwhite: {
|
|
4828
|
-
randomBattleMoves: ["dracometeor", "earthpower", "freezedry", "fusionflare", "icebeam", "roost"],
|
|
4829
|
-
randomBattleLevel: 74,
|
|
4830
|
-
randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "earthpower", "freezedry", "fusionflare", "icebeam", "protect", "roost"],
|
|
4831
|
-
randomDoubleBattleLevel: 72,
|
|
4832
3665
|
tier: "Uber",
|
|
4833
3666
|
doublesTier: "DUber",
|
|
4834
3667
|
natDexTier: "Uber",
|
|
@@ -4838,12 +3671,7 @@ exports.FormatsData = {
|
|
|
4838
3671
|
doublesTier: "(DUU)",
|
|
4839
3672
|
natDexTier: "RUBL",
|
|
4840
3673
|
},
|
|
4841
|
-
keldeoresolute: {
|
|
4842
|
-
randomBattleMoves: ["airslash", "calmmind", "hydropump", "icywind", "scald", "secretsword", "substitute"],
|
|
4843
|
-
randomBattleLevel: 79,
|
|
4844
|
-
randomDoubleBattleMoves: ["airslash", "calmmind", "icywind", "muddywater", "protect", "secretsword"],
|
|
4845
|
-
randomDoubleBattleLevel: 82,
|
|
4846
|
-
},
|
|
3674
|
+
keldeoresolute: {},
|
|
4847
3675
|
meloetta: {
|
|
4848
3676
|
isNonstandard: "Past",
|
|
4849
3677
|
tier: "Illegal",
|
|
@@ -4853,10 +3681,6 @@ exports.FormatsData = {
|
|
|
4853
3681
|
isNonstandard: "Past",
|
|
4854
3682
|
},
|
|
4855
3683
|
genesect: {
|
|
4856
|
-
randomBattleMoves: ["blazekick", "extremespeed", "ironhead", "leechlife", "shiftgear", "thunderbolt", "uturn"],
|
|
4857
|
-
randomBattleLevel: 74,
|
|
4858
|
-
randomDoubleBattleMoves: ["blazekick", "ironhead", "leechlife", "protect", "shiftgear", "thunderbolt", "uturn"],
|
|
4859
|
-
randomDoubleBattleLevel: 78,
|
|
4860
3684
|
tier: "Uber",
|
|
4861
3685
|
doublesTier: "DOU",
|
|
4862
3686
|
natDexTier: "Uber",
|
|
@@ -4872,8 +3696,6 @@ exports.FormatsData = {
|
|
|
4872
3696
|
natDexTier: "Uber",
|
|
4873
3697
|
},
|
|
4874
3698
|
genesectdouse: {
|
|
4875
|
-
randomBattleMoves: ["bugbuzz", "extremespeed", "flamethrower", "icebeam", "ironhead", "technoblast", "thunderbolt", "uturn"],
|
|
4876
|
-
randomBattleLevel: 74,
|
|
4877
3699
|
tier: "Uber",
|
|
4878
3700
|
doublesTier: "DOU",
|
|
4879
3701
|
natDexTier: "Uber",
|
|
@@ -4937,10 +3759,6 @@ exports.FormatsData = {
|
|
|
4937
3759
|
tier: "LC",
|
|
4938
3760
|
},
|
|
4939
3761
|
diggersby: {
|
|
4940
|
-
randomBattleMoves: ["bodyslam", "earthquake", "knockoff", "quickattack", "swordsdance", "uturn"],
|
|
4941
|
-
randomBattleLevel: 80,
|
|
4942
|
-
randomDoubleBattleMoves: ["bodyslam", "highhorsepower", "knockoff", "quickattack", "swordsdance", "uturn"],
|
|
4943
|
-
randomDoubleBattleLevel: 86,
|
|
4944
3762
|
tier: "RUBL",
|
|
4945
3763
|
doublesTier: "(DUU)",
|
|
4946
3764
|
natDexTier: "RUBL",
|
|
@@ -4952,10 +3770,6 @@ exports.FormatsData = {
|
|
|
4952
3770
|
tier: "NFE",
|
|
4953
3771
|
},
|
|
4954
3772
|
talonflame: {
|
|
4955
|
-
randomBattleMoves: ["bravebird", "defog", "flareblitz", "roost", "swordsdance", "uturn"],
|
|
4956
|
-
randomBattleLevel: 81,
|
|
4957
|
-
randomDoubleBattleMoves: ["bravebird", "defog", "incinerate", "overheat", "tailwind", "u-turn", "willowisp"],
|
|
4958
|
-
randomDoubleBattleLevel: 86,
|
|
4959
3773
|
tier: "NU",
|
|
4960
3774
|
doublesTier: "(DUU)",
|
|
4961
3775
|
natDexTier: "RU",
|
|
@@ -5024,10 +3838,6 @@ exports.FormatsData = {
|
|
|
5024
3838
|
tier: "LC",
|
|
5025
3839
|
},
|
|
5026
3840
|
pangoro: {
|
|
5027
|
-
randomBattleMoves: ["closecombat", "gunkshot", "icepunch", "knockoff", "partingshot"],
|
|
5028
|
-
randomBattleLevel: 84,
|
|
5029
|
-
randomDoubleBattleMoves: ["closecombat", "drainpunch", "gunkshot", "icepunch", "knockoff", "protect"],
|
|
5030
|
-
randomDoubleBattleLevel: 88,
|
|
5031
3841
|
tier: "NUBL",
|
|
5032
3842
|
doublesTier: "(DUU)",
|
|
5033
3843
|
natDexTier: "RU",
|
|
@@ -5041,19 +3851,11 @@ exports.FormatsData = {
|
|
|
5041
3851
|
tier: "LC",
|
|
5042
3852
|
},
|
|
5043
3853
|
meowstic: {
|
|
5044
|
-
randomBattleMoves: ["lightscreen", "psychic", "reflect", "thunderwave", "yawn"],
|
|
5045
|
-
randomBattleLevel: 84,
|
|
5046
|
-
randomDoubleBattleMoves: ["fakeout", "lightscreen", "psychic", "reflect", "thunderwave"],
|
|
5047
|
-
randomDoubleBattleLevel: 84,
|
|
5048
3854
|
tier: "(PU)",
|
|
5049
3855
|
doublesTier: "(DUU)",
|
|
5050
3856
|
natDexTier: "RU",
|
|
5051
3857
|
},
|
|
5052
3858
|
meowsticf: {
|
|
5053
|
-
randomBattleMoves: ["energyball", "nastyplot", "psychic", "shadowball", "thunderbolt"],
|
|
5054
|
-
randomBattleLevel: 86,
|
|
5055
|
-
randomDoubleBattleMoves: ["fakeout", "nastyplot", "psychic", "shadowball", "thunderbolt"],
|
|
5056
|
-
randomDoubleBattleLevel: 88,
|
|
5057
3859
|
tier: "(PU)",
|
|
5058
3860
|
doublesTier: "(DUU)",
|
|
5059
3861
|
natDexTier: "RU",
|
|
@@ -5062,26 +3864,16 @@ exports.FormatsData = {
|
|
|
5062
3864
|
tier: "LC",
|
|
5063
3865
|
},
|
|
5064
3866
|
doublade: {
|
|
5065
|
-
randomBattleMoves: ["closecombat", "ironhead", "shadowclaw", "shadowsneak", "swordsdance"],
|
|
5066
|
-
randomBattleLevel: 82,
|
|
5067
3867
|
tier: "PU",
|
|
5068
3868
|
doublesTier: "NFE",
|
|
5069
3869
|
natDexTier: "NFE",
|
|
5070
3870
|
},
|
|
5071
3871
|
aegislash: {
|
|
5072
|
-
randomBattleMoves: ["closecombat", "flashcannon", "kingsshield", "shadowball", "shadowsneak", "substitute", "toxic"],
|
|
5073
|
-
randomBattleLevel: 80,
|
|
5074
|
-
randomDoubleBattleMoves: ["flashcannon", "kingsshield", "shadowball", "shadowsneak"],
|
|
5075
|
-
randomDoubleBattleLevel: 84,
|
|
5076
3872
|
tier: "UUBL",
|
|
5077
3873
|
doublesTier: "(DUU)",
|
|
5078
3874
|
natDexTier: "UU",
|
|
5079
3875
|
},
|
|
5080
3876
|
aegislashblade: {
|
|
5081
|
-
randomBattleMoves: ["closecombat", "ironhead", "shadowclaw", "shadowsneak", "swordsdance"],
|
|
5082
|
-
randomBattleLevel: 80,
|
|
5083
|
-
randomDoubleBattleMoves: ["closecombat", "ironhead", "kingsshield", "shadowclaw", "shadowsneak", "swordsdance"],
|
|
5084
|
-
randomDoubleBattleLevel: 84,
|
|
5085
3877
|
tier: "UUBL",
|
|
5086
3878
|
doublesTier: "(DUU)",
|
|
5087
3879
|
natDexTier: "UU",
|
|
@@ -5090,10 +3882,6 @@ exports.FormatsData = {
|
|
|
5090
3882
|
tier: "LC",
|
|
5091
3883
|
},
|
|
5092
3884
|
aromatisse: {
|
|
5093
|
-
randomBattleMoves: ["calmmind", "moonblast", "protect", "toxic", "wish"],
|
|
5094
|
-
randomBattleLevel: 88,
|
|
5095
|
-
randomDoubleBattleMoves: ["healpulse", "moonblast", "protect", "trickroom", "wish"],
|
|
5096
|
-
randomDoubleBattleLevel: 86,
|
|
5097
3885
|
tier: "PU",
|
|
5098
3886
|
doublesTier: "(DUU)",
|
|
5099
3887
|
natDexTier: "RU",
|
|
@@ -5103,10 +3891,6 @@ exports.FormatsData = {
|
|
|
5103
3891
|
natDexTier: "LC",
|
|
5104
3892
|
},
|
|
5105
3893
|
slurpuff: {
|
|
5106
|
-
randomBattleMoves: ["bellydrum", "drainpunch", "facade", "playrough"],
|
|
5107
|
-
randomBattleLevel: 80,
|
|
5108
|
-
randomDoubleBattleMoves: ["faketears", "flamethrower", "helpinghand", "playrough", "stickyweb"],
|
|
5109
|
-
randomDoubleBattleLevel: 86,
|
|
5110
3894
|
tier: "NUBL",
|
|
5111
3895
|
doublesTier: "(DUU)",
|
|
5112
3896
|
natDexTier: "RU",
|
|
@@ -5115,10 +3899,6 @@ exports.FormatsData = {
|
|
|
5115
3899
|
tier: "LC",
|
|
5116
3900
|
},
|
|
5117
3901
|
malamar: {
|
|
5118
|
-
randomBattleMoves: ["knockoff", "psychocut", "rest", "sleeptalk", "substitute", "superpower"],
|
|
5119
|
-
randomBattleLevel: 80,
|
|
5120
|
-
randomDoubleBattleMoves: ["knockoff", "psychocut", "rest", "superpower"],
|
|
5121
|
-
randomDoubleBattleLevel: 84,
|
|
5122
3902
|
tier: "(PU)",
|
|
5123
3903
|
doublesTier: "(DUU)",
|
|
5124
3904
|
natDexTier: "RU",
|
|
@@ -5127,10 +3907,6 @@ exports.FormatsData = {
|
|
|
5127
3907
|
tier: "LC",
|
|
5128
3908
|
},
|
|
5129
3909
|
barbaracle: {
|
|
5130
|
-
randomBattleMoves: ["crosschop", "earthquake", "liquidation", "shellsmash", "stoneedge"],
|
|
5131
|
-
randomBattleLevel: 80,
|
|
5132
|
-
randomDoubleBattleMoves: ["liquidation", "protect", "rockslide", "shellsmash", "superpower"],
|
|
5133
|
-
randomDoubleBattleLevel: 84,
|
|
5134
3910
|
tier: "NUBL",
|
|
5135
3911
|
doublesTier: "(DUU)",
|
|
5136
3912
|
natDexTier: "RU",
|
|
@@ -5139,10 +3915,6 @@ exports.FormatsData = {
|
|
|
5139
3915
|
tier: "LC",
|
|
5140
3916
|
},
|
|
5141
3917
|
dragalge: {
|
|
5142
|
-
randomBattleMoves: ["dracometeor", "dragonpulse", "flipturn", "focusblast", "sludgewave", "toxicspikes"],
|
|
5143
|
-
randomBattleLevel: 86,
|
|
5144
|
-
randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "focusblast", "protect", "sludgebomb"],
|
|
5145
|
-
randomDoubleBattleLevel: 86,
|
|
5146
3918
|
tier: "NUBL",
|
|
5147
3919
|
doublesTier: "(DUU)",
|
|
5148
3920
|
natDexTier: "RU",
|
|
@@ -5151,10 +3923,6 @@ exports.FormatsData = {
|
|
|
5151
3923
|
tier: "LC",
|
|
5152
3924
|
},
|
|
5153
3925
|
clawitzer: {
|
|
5154
|
-
randomBattleMoves: ["aurasphere", "darkpulse", "icebeam", "scald", "uturn", "waterpulse"],
|
|
5155
|
-
randomBattleLevel: 84,
|
|
5156
|
-
randomDoubleBattleMoves: ["aurasphere", "darkpulse", "icebeam", "muddywater", "uturn"],
|
|
5157
|
-
randomDoubleBattleLevel: 84,
|
|
5158
3926
|
tier: "PUBL",
|
|
5159
3927
|
doublesTier: "(DUU)",
|
|
5160
3928
|
natDexTier: "RU",
|
|
@@ -5163,10 +3931,6 @@ exports.FormatsData = {
|
|
|
5163
3931
|
tier: "LC",
|
|
5164
3932
|
},
|
|
5165
3933
|
heliolisk: {
|
|
5166
|
-
randomBattleMoves: ["glare", "grassknot", "hypervoice", "surf", "thunderbolt", "voltswitch"],
|
|
5167
|
-
randomBattleLevel: 82,
|
|
5168
|
-
randomDoubleBattleMoves: ["glare", "grassknot", "hypervoice", "protect", "thunderbolt", "voltswitch"],
|
|
5169
|
-
randomDoubleBattleLevel: 88,
|
|
5170
3934
|
tier: "NU",
|
|
5171
3935
|
doublesTier: "(DUU)",
|
|
5172
3936
|
natDexTier: "RU",
|
|
@@ -5175,10 +3939,6 @@ exports.FormatsData = {
|
|
|
5175
3939
|
tier: "LC",
|
|
5176
3940
|
},
|
|
5177
3941
|
tyrantrum: {
|
|
5178
|
-
randomBattleMoves: ["closecombat", "dragondance", "earthquake", "headsmash", "outrage"],
|
|
5179
|
-
randomBattleLevel: 82,
|
|
5180
|
-
randomDoubleBattleMoves: ["closecombat", "dragonclaw", "dragondance", "headsmash", "highhorsepower"],
|
|
5181
|
-
randomDoubleBattleLevel: 86,
|
|
5182
3942
|
tier: "NU",
|
|
5183
3943
|
doublesTier: "(DUU)",
|
|
5184
3944
|
natDexTier: "RU",
|
|
@@ -5187,37 +3947,21 @@ exports.FormatsData = {
|
|
|
5187
3947
|
tier: "LC",
|
|
5188
3948
|
},
|
|
5189
3949
|
aurorus: {
|
|
5190
|
-
randomBattleMoves: ["ancientpower", "blizzard", "earthpower", "freezedry", "stealthrock", "thunderwave"],
|
|
5191
|
-
randomBattleLevel: 84,
|
|
5192
|
-
randomDoubleBattleMoves: ["auroraveil", "blizzard", "earthpower", "freezedry", "protect", "thunderwave"],
|
|
5193
|
-
randomDoubleBattleLevel: 88,
|
|
5194
3950
|
tier: "(PU)",
|
|
5195
3951
|
doublesTier: "(DUU)",
|
|
5196
3952
|
natDexTier: "RU",
|
|
5197
3953
|
},
|
|
5198
3954
|
hawlucha: {
|
|
5199
|
-
randomBattleMoves: ["bravebird", "closecombat", "roost", "stoneedge", "swordsdance", "throatchop"],
|
|
5200
|
-
randomBattleLevel: 80,
|
|
5201
|
-
randomDoubleBattleMoves: ["bravebird", "closecombat", "protect", "swordsdance"],
|
|
5202
|
-
randomDoubleBattleLevel: 80,
|
|
5203
3955
|
tier: "UUBL",
|
|
5204
3956
|
doublesTier: "(DUU)",
|
|
5205
3957
|
natDexTier: "UUBL",
|
|
5206
3958
|
},
|
|
5207
3959
|
dedenne: {
|
|
5208
|
-
randomBattleMoves: ["protect", "recycle", "thunderbolt", "toxic"],
|
|
5209
|
-
randomBattleLevel: 87,
|
|
5210
|
-
randomDoubleBattleMoves: ["eerieimpulse", "helpinghand", "nuzzle", "recycle", "superfang", "thunderbolt"],
|
|
5211
|
-
randomDoubleBattleLevel: 88,
|
|
5212
3960
|
tier: "(PU)",
|
|
5213
3961
|
doublesTier: "(DUU)",
|
|
5214
3962
|
natDexTier: "RU",
|
|
5215
3963
|
},
|
|
5216
3964
|
carbink: {
|
|
5217
|
-
randomBattleMoves: ["bodypress", "lightscreen", "moonblast", "reflect", "stealthrock"],
|
|
5218
|
-
randomBattleLevel: 86,
|
|
5219
|
-
randomDoubleBattleMoves: ["bodypress", "irondefense", "moonblast", "stealthrock"],
|
|
5220
|
-
randomDoubleBattleLevel: 90,
|
|
5221
3965
|
tier: "(PU)",
|
|
5222
3966
|
doublesTier: "(DUU)",
|
|
5223
3967
|
natDexTier: "RU",
|
|
@@ -5233,10 +3977,6 @@ exports.FormatsData = {
|
|
|
5233
3977
|
tier: "Illegal",
|
|
5234
3978
|
},
|
|
5235
3979
|
goodra: {
|
|
5236
|
-
randomBattleMoves: ["dracometeor", "earthquake", "fireblast", "powerwhip", "sludgebomb", "thunderbolt"],
|
|
5237
|
-
randomBattleLevel: 82,
|
|
5238
|
-
randomDoubleBattleMoves: ["breakingswipe", "dracometeor", "fireblast", "muddywater", "powerwhip", "protect", "sludgebomb", "thunderbolt"],
|
|
5239
|
-
randomDoubleBattleLevel: 85,
|
|
5240
3980
|
tier: "NUBL",
|
|
5241
3981
|
doublesTier: "(DUU)",
|
|
5242
3982
|
natDexTier: "RU",
|
|
@@ -5246,10 +3986,6 @@ exports.FormatsData = {
|
|
|
5246
3986
|
tier: "Illegal",
|
|
5247
3987
|
},
|
|
5248
3988
|
klefki: {
|
|
5249
|
-
randomBattleMoves: ["magnetrise", "playrough", "spikes", "thunderwave", "toxic"],
|
|
5250
|
-
randomBattleLevel: 82,
|
|
5251
|
-
randomDoubleBattleMoves: ["dazzlinggleam", "foulplay", "spikes", "thunderwave"],
|
|
5252
|
-
randomDoubleBattleLevel: 84,
|
|
5253
3989
|
tier: "RU",
|
|
5254
3990
|
doublesTier: "(DUU)",
|
|
5255
3991
|
natDexTier: "RU",
|
|
@@ -5258,10 +3994,6 @@ exports.FormatsData = {
|
|
|
5258
3994
|
tier: "LC",
|
|
5259
3995
|
},
|
|
5260
3996
|
trevenant: {
|
|
5261
|
-
randomBattleMoves: ["earthquake", "hornleech", "poltergeist", "rockslide", "trickroom", "woodhammer"],
|
|
5262
|
-
randomBattleLevel: 86,
|
|
5263
|
-
randomDoubleBattleMoves: ["poltergeist", "protect", "trickroom", "willowisp", "woodhammer"],
|
|
5264
|
-
randomDoubleBattleLevel: 88,
|
|
5265
3997
|
tier: "(PU)",
|
|
5266
3998
|
doublesTier: "(DUU)",
|
|
5267
3999
|
natDexTier: "RU",
|
|
@@ -5279,37 +4011,21 @@ exports.FormatsData = {
|
|
|
5279
4011
|
tier: "LC",
|
|
5280
4012
|
},
|
|
5281
4013
|
gourgeist: {
|
|
5282
|
-
randomBattleMoves: ["poltergeist", "powerwhip", "shadowsneak", "synthesis", "willowisp"],
|
|
5283
|
-
randomBattleLevel: 84,
|
|
5284
|
-
randomDoubleBattleMoves: ["leechseed", "poltergeist", "powerwhip", "substitute", "willowisp"],
|
|
5285
|
-
randomDoubleBattleLevel: 88,
|
|
5286
4014
|
tier: "(PU)",
|
|
5287
4015
|
doublesTier: "(DUU)",
|
|
5288
4016
|
natDexTier: "RU",
|
|
5289
4017
|
},
|
|
5290
4018
|
gourgeistsmall: {
|
|
5291
|
-
randomBattleMoves: ["leechseed", "poltergeist", "powerwhip", "substitute", "willowisp"],
|
|
5292
|
-
randomBattleLevel: 84,
|
|
5293
|
-
randomDoubleBattleMoves: ["leechseed", "poltergeist", "powerwhip", "substitute", "willowisp"],
|
|
5294
|
-
randomDoubleBattleLevel: 88,
|
|
5295
4019
|
tier: "(PU)",
|
|
5296
4020
|
doublesTier: "(DUU)",
|
|
5297
4021
|
natDexTier: "RU",
|
|
5298
4022
|
},
|
|
5299
4023
|
gourgeistlarge: {
|
|
5300
|
-
randomBattleMoves: ["poltergeist", "powerwhip", "shadowsneak", "synthesis", "willowisp"],
|
|
5301
|
-
randomBattleLevel: 84,
|
|
5302
|
-
randomDoubleBattleMoves: ["poltergeist", "powerwhip", "protect", "shadowsneak", "trickroom"],
|
|
5303
|
-
randomDoubleBattleLevel: 88,
|
|
5304
4024
|
tier: "(PU)",
|
|
5305
4025
|
doublesTier: "(DUU)",
|
|
5306
4026
|
natDexTier: "RU",
|
|
5307
4027
|
},
|
|
5308
4028
|
gourgeistsuper: {
|
|
5309
|
-
randomBattleMoves: ["poltergeist", "powerwhip", "rockslide", "shadowsneak", "trickroom"],
|
|
5310
|
-
randomBattleLevel: 84,
|
|
5311
|
-
randomDoubleBattleMoves: ["poltergeist", "powerwhip", "protect", "shadowsneak", "trickroom"],
|
|
5312
|
-
randomDoubleBattleLevel: 88,
|
|
5313
4029
|
tier: "(PU)",
|
|
5314
4030
|
doublesTier: "(DUU)",
|
|
5315
4031
|
natDexTier: "RU",
|
|
@@ -5318,10 +4034,6 @@ exports.FormatsData = {
|
|
|
5318
4034
|
tier: "LC",
|
|
5319
4035
|
},
|
|
5320
4036
|
avalugg: {
|
|
5321
|
-
randomBattleMoves: ["avalanche", "bodypress", "curse", "rapidspin", "recover"],
|
|
5322
|
-
randomBattleLevel: 86,
|
|
5323
|
-
randomDoubleBattleMoves: ["avalanche", "bodypress", "curse", "highhorsepower", "protect", "recover"],
|
|
5324
|
-
randomDoubleBattleLevel: 88,
|
|
5325
4037
|
tier: "(PU)",
|
|
5326
4038
|
doublesTier: "(DUU)",
|
|
5327
4039
|
natDexTier: "RU",
|
|
@@ -5334,19 +4046,11 @@ exports.FormatsData = {
|
|
|
5334
4046
|
tier: "LC",
|
|
5335
4047
|
},
|
|
5336
4048
|
noivern: {
|
|
5337
|
-
randomBattleMoves: ["defog", "dracometeor", "flamethrower", "hurricane", "roost", "switcheroo"],
|
|
5338
|
-
randomBattleLevel: 82,
|
|
5339
|
-
randomDoubleBattleMoves: ["boomburst", "dracometeor", "flamethrower", "hurricane", "protect", "tailwind"],
|
|
5340
|
-
randomDoubleBattleLevel: 84,
|
|
5341
4049
|
tier: "RU",
|
|
5342
4050
|
doublesTier: "(DUU)",
|
|
5343
4051
|
natDexTier: "RU",
|
|
5344
4052
|
},
|
|
5345
4053
|
xerneas: {
|
|
5346
|
-
randomBattleMoves: ["focusblast", "geomancy", "moonblast", "psyshock", "thunderbolt"],
|
|
5347
|
-
randomBattleLevel: 67,
|
|
5348
|
-
randomDoubleBattleMoves: ["dazzlinggleam", "focusblast", "geomancy", "moonblast", "thunderbolt"],
|
|
5349
|
-
randomDoubleBattleLevel: 70,
|
|
5350
4054
|
tier: "Uber",
|
|
5351
4055
|
doublesTier: "DUber",
|
|
5352
4056
|
natDexTier: "Uber",
|
|
@@ -5356,28 +4060,16 @@ exports.FormatsData = {
|
|
|
5356
4060
|
tier: "Illegal",
|
|
5357
4061
|
},
|
|
5358
4062
|
yveltal: {
|
|
5359
|
-
randomBattleMoves: ["defog", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "taunt"],
|
|
5360
|
-
randomBattleLevel: 69,
|
|
5361
|
-
randomDoubleBattleMoves: ["darkpulse", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "tailwind"],
|
|
5362
|
-
randomDoubleBattleLevel: 71,
|
|
5363
4063
|
tier: "Uber",
|
|
5364
4064
|
doublesTier: "DUber",
|
|
5365
4065
|
natDexTier: "Uber",
|
|
5366
4066
|
},
|
|
5367
4067
|
zygarde: {
|
|
5368
|
-
randomBattleMoves: ["dragondance", "outrage", "substitute", "thousandarrows"],
|
|
5369
|
-
randomBattleLevel: 70,
|
|
5370
|
-
randomDoubleBattleMoves: ["coil", "dragondance", "extremespeed", "glare", "irontail", "thousandarrows"],
|
|
5371
|
-
randomDoubleBattleLevel: 72,
|
|
5372
4068
|
tier: "Uber",
|
|
5373
4069
|
doublesTier: "DOU",
|
|
5374
4070
|
natDexTier: "Uber",
|
|
5375
4071
|
},
|
|
5376
4072
|
zygarde10: {
|
|
5377
|
-
randomBattleMoves: ["coil", "extremespeed", "irontail", "outrage", "thousandarrows"],
|
|
5378
|
-
randomBattleLevel: 82,
|
|
5379
|
-
randomDoubleBattleMoves: ["dragondance", "extremespeed", "irontail", "protect", "stoneedge", "thousandarrows"],
|
|
5380
|
-
randomDoubleBattleLevel: 77,
|
|
5381
4073
|
tier: "UU",
|
|
5382
4074
|
doublesTier: "(DUU)",
|
|
5383
4075
|
natDexTier: "RU",
|
|
@@ -5388,10 +4080,6 @@ exports.FormatsData = {
|
|
|
5388
4080
|
natDexTier: "Uber",
|
|
5389
4081
|
},
|
|
5390
4082
|
diancie: {
|
|
5391
|
-
randomBattleMoves: ["bodypress", "diamondstorm", "earthpower", "moonblast", "stealthrock", "toxic"],
|
|
5392
|
-
randomBattleLevel: 82,
|
|
5393
|
-
randomDoubleBattleMoves: ["bodypress", "diamondstorm", "earthpower", "moonblast"],
|
|
5394
|
-
randomDoubleBattleLevel: 80,
|
|
5395
4083
|
tier: "NU",
|
|
5396
4084
|
doublesTier: "DOU",
|
|
5397
4085
|
natDexTier: "RU",
|
|
@@ -5412,10 +4100,6 @@ exports.FormatsData = {
|
|
|
5412
4100
|
natDexTier: "UUBL",
|
|
5413
4101
|
},
|
|
5414
4102
|
volcanion: {
|
|
5415
|
-
randomBattleMoves: ["defog", "earthpower", "flamethrower", "sludgebomb", "steameruption"],
|
|
5416
|
-
randomBattleLevel: 80,
|
|
5417
|
-
randomDoubleBattleMoves: ["earthpower", "heatwave", "protect", "sludgebomb", "steameruption"],
|
|
5418
|
-
randomDoubleBattleLevel: 80,
|
|
5419
4103
|
tier: "OU",
|
|
5420
4104
|
doublesTier: "DOU",
|
|
5421
4105
|
natDexTier: "RU",
|
|
@@ -5427,11 +4111,6 @@ exports.FormatsData = {
|
|
|
5427
4111
|
tier: "NFE",
|
|
5428
4112
|
},
|
|
5429
4113
|
decidueye: {
|
|
5430
|
-
randomBattleMoves: ["bravebird", "leafblade", "poltergeist", "roost", "shadowsneak", "swordsdance"],
|
|
5431
|
-
randomBattleLevel: 86,
|
|
5432
|
-
randomDoubleBattleMoves: ["bravebird", "leafblade", "protect", "shadowsneak", "spiritshackle", "swordsdance"],
|
|
5433
|
-
randomDoubleBattleLevel: 88,
|
|
5434
|
-
randomBattleNoDynamaxMoves: ["leafblade", "roost", "shadowsneak", "spiritshackle", "swordsdance", "uturn"],
|
|
5435
4114
|
tier: "NU",
|
|
5436
4115
|
doublesTier: "(DUU)",
|
|
5437
4116
|
natDexTier: "RU",
|
|
@@ -5447,10 +4126,6 @@ exports.FormatsData = {
|
|
|
5447
4126
|
tier: "NFE",
|
|
5448
4127
|
},
|
|
5449
4128
|
incineroar: {
|
|
5450
|
-
randomBattleMoves: ["earthquake", "flareblitz", "knockoff", "partingshot", "uturn", "willowisp"],
|
|
5451
|
-
randomBattleLevel: 80,
|
|
5452
|
-
randomDoubleBattleMoves: ["fakeout", "flareblitz", "knockoff", "partingshot", "uturn"],
|
|
5453
|
-
randomDoubleBattleLevel: 80,
|
|
5454
4129
|
tier: "RU",
|
|
5455
4130
|
doublesTier: "DOU",
|
|
5456
4131
|
natDexTier: "RU",
|
|
@@ -5462,10 +4137,6 @@ exports.FormatsData = {
|
|
|
5462
4137
|
tier: "NFE",
|
|
5463
4138
|
},
|
|
5464
4139
|
primarina: {
|
|
5465
|
-
randomBattleMoves: ["energyball", "hydropump", "moonblast", "psychic", "sparklingaria"],
|
|
5466
|
-
randomBattleLevel: 82,
|
|
5467
|
-
randomDoubleBattleMoves: ["dazzlinggleam", "flipturn", "hypervoice", "moonblast", "protect", "psychic"],
|
|
5468
|
-
randomDoubleBattleLevel: 82,
|
|
5469
4140
|
tier: "UU",
|
|
5470
4141
|
doublesTier: "DUU",
|
|
5471
4142
|
natDexTier: "RUBL",
|
|
@@ -5507,10 +4178,6 @@ exports.FormatsData = {
|
|
|
5507
4178
|
tier: "NFE",
|
|
5508
4179
|
},
|
|
5509
4180
|
vikavolt: {
|
|
5510
|
-
randomBattleMoves: ["bugbuzz", "energyball", "roost", "stickyweb", "thunderbolt", "voltswitch"],
|
|
5511
|
-
randomBattleLevel: 82,
|
|
5512
|
-
randomDoubleBattleMoves: ["bugbuzz", "energyball", "protect", "stickyweb", "thunderbolt", "voltswitch"],
|
|
5513
|
-
randomDoubleBattleLevel: 86,
|
|
5514
4181
|
tier: "(PU)",
|
|
5515
4182
|
doublesTier: "(DUU)",
|
|
5516
4183
|
natDexTier: "RU",
|
|
@@ -5555,10 +4222,6 @@ exports.FormatsData = {
|
|
|
5555
4222
|
natDexTier: "LC",
|
|
5556
4223
|
},
|
|
5557
4224
|
ribombee: {
|
|
5558
|
-
randomBattleMoves: ["moonblast", "psychic", "stickyweb", "stunspore", "uturn"],
|
|
5559
|
-
randomBattleLevel: 82,
|
|
5560
|
-
randomDoubleBattleMoves: ["helpinghand", "moonblast", "pollenpuff", "speedswap", "stickyweb", "tailwind"],
|
|
5561
|
-
randomDoubleBattleLevel: 84,
|
|
5562
4225
|
tier: "PU",
|
|
5563
4226
|
doublesTier: "(DUU)",
|
|
5564
4227
|
natDexTier: "RU",
|
|
@@ -5575,28 +4238,16 @@ exports.FormatsData = {
|
|
|
5575
4238
|
tier: "LC",
|
|
5576
4239
|
},
|
|
5577
4240
|
lycanroc: {
|
|
5578
|
-
randomBattleMoves: ["accelerock", "closecombat", "psychicfangs", "stoneedge", "swordsdance"],
|
|
5579
|
-
randomBattleLevel: 80,
|
|
5580
|
-
randomDoubleBattleMoves: ["accelerock", "closecombat", "drillrun", "protect", "rockslide", "swordsdance"],
|
|
5581
|
-
randomDoubleBattleLevel: 84,
|
|
5582
4241
|
tier: "PU",
|
|
5583
4242
|
doublesTier: "(DUU)",
|
|
5584
4243
|
natDexTier: "RU",
|
|
5585
4244
|
},
|
|
5586
4245
|
lycanrocmidnight: {
|
|
5587
|
-
randomBattleMoves: ["closecombat", "irontail", "stealthrock", "stoneedge", "suckerpunch", "swordsdance"],
|
|
5588
|
-
randomBattleLevel: 82,
|
|
5589
|
-
randomDoubleBattleMoves: ["closecombat", "irontail", "protect", "stoneedge", "suckerpunch", "swordsdance"],
|
|
5590
|
-
randomDoubleBattleLevel: 88,
|
|
5591
4246
|
tier: "(PU)",
|
|
5592
4247
|
doublesTier: "(DUU)",
|
|
5593
4248
|
natDexTier: "RU",
|
|
5594
4249
|
},
|
|
5595
4250
|
lycanrocdusk: {
|
|
5596
|
-
randomBattleMoves: ["accelerock", "closecombat", "psychicfangs", "stoneedge", "swordsdance"],
|
|
5597
|
-
randomBattleLevel: 80,
|
|
5598
|
-
randomDoubleBattleMoves: ["accelerock", "closecombat", "drillrun", "protect", "rockslide", "swordsdance"],
|
|
5599
|
-
randomDoubleBattleLevel: 81,
|
|
5600
4251
|
tier: "UU",
|
|
5601
4252
|
doublesTier: "(DUU)",
|
|
5602
4253
|
natDexTier: "RUBL",
|
|
@@ -5606,20 +4257,11 @@ exports.FormatsData = {
|
|
|
5606
4257
|
doublesTier: "(DUU)",
|
|
5607
4258
|
natDexTier: "RU",
|
|
5608
4259
|
},
|
|
5609
|
-
wishiwashischool: {
|
|
5610
|
-
randomBattleMoves: ["earthquake", "hydropump", "icebeam", "scald", "uturn"],
|
|
5611
|
-
randomBattleLevel: 84,
|
|
5612
|
-
randomDoubleBattleMoves: ["earthquake", "helpinghand", "hydropump", "icebeam", "muddywater", "protect"],
|
|
5613
|
-
randomDoubleBattleLevel: 88,
|
|
5614
|
-
},
|
|
4260
|
+
wishiwashischool: {},
|
|
5615
4261
|
mareanie: {
|
|
5616
4262
|
tier: "LC",
|
|
5617
4263
|
},
|
|
5618
4264
|
toxapex: {
|
|
5619
|
-
randomBattleMoves: ["banefulbunker", "haze", "recover", "scald", "toxic", "toxicspikes"],
|
|
5620
|
-
randomBattleLevel: 82,
|
|
5621
|
-
randomDoubleBattleMoves: ["banefulbunker", "haze", "recover", "scald", "toxic", "toxicspikes"],
|
|
5622
|
-
randomDoubleBattleLevel: 90,
|
|
5623
4265
|
tier: "OU",
|
|
5624
4266
|
doublesTier: "(DUU)",
|
|
5625
4267
|
natDexTier: "OU",
|
|
@@ -5628,10 +4270,6 @@ exports.FormatsData = {
|
|
|
5628
4270
|
tier: "LC",
|
|
5629
4271
|
},
|
|
5630
4272
|
mudsdale: {
|
|
5631
|
-
randomBattleMoves: ["bodypress", "earthquake", "heavyslam", "rockslide", "stealthrock"],
|
|
5632
|
-
randomBattleLevel: 82,
|
|
5633
|
-
randomDoubleBattleMoves: ["bodypress", "heavyslam", "highhorsepower", "protect", "rest", "rocktomb"],
|
|
5634
|
-
randomDoubleBattleLevel: 86,
|
|
5635
4273
|
tier: "NU",
|
|
5636
4274
|
doublesTier: "(DUU)",
|
|
5637
4275
|
natDexTier: "RU",
|
|
@@ -5640,10 +4278,6 @@ exports.FormatsData = {
|
|
|
5640
4278
|
tier: "LC",
|
|
5641
4279
|
},
|
|
5642
4280
|
araquanid: {
|
|
5643
|
-
randomBattleMoves: ["leechlife", "liquidation", "mirrorcoat", "stickyweb", "toxic"],
|
|
5644
|
-
randomBattleLevel: 80,
|
|
5645
|
-
randomDoubleBattleMoves: ["leechlife", "liquidation", "lunge", "protect", "stickyweb", "wideguard"],
|
|
5646
|
-
randomDoubleBattleLevel: 84,
|
|
5647
4281
|
tier: "PUBL",
|
|
5648
4282
|
doublesTier: "(DUU)",
|
|
5649
4283
|
natDexTier: "RU",
|
|
@@ -5657,10 +4291,6 @@ exports.FormatsData = {
|
|
|
5657
4291
|
tier: "LC",
|
|
5658
4292
|
},
|
|
5659
4293
|
lurantis: {
|
|
5660
|
-
randomBattleMoves: ["defog", "knockoff", "leafstorm", "superpower", "synthesis"],
|
|
5661
|
-
randomBattleLevel: 86,
|
|
5662
|
-
randomDoubleBattleMoves: ["defog", "knockoff", "leafstorm", "protect", "superpower"],
|
|
5663
|
-
randomDoubleBattleLevel: 88,
|
|
5664
4294
|
tier: "(PU)",
|
|
5665
4295
|
doublesTier: "(DUU)",
|
|
5666
4296
|
natDexTier: "RU",
|
|
@@ -5674,10 +4304,6 @@ exports.FormatsData = {
|
|
|
5674
4304
|
tier: "LC",
|
|
5675
4305
|
},
|
|
5676
4306
|
shiinotic: {
|
|
5677
|
-
randomBattleMoves: ["energyball", "leechseed", "moonblast", "spore", "strengthsap"],
|
|
5678
|
-
randomBattleLevel: 86,
|
|
5679
|
-
randomDoubleBattleMoves: ["energyball", "moonblast", "protect", "spore", "strengthsap"],
|
|
5680
|
-
randomDoubleBattleLevel: 88,
|
|
5681
4307
|
tier: "(PU)",
|
|
5682
4308
|
doublesTier: "(DUU)",
|
|
5683
4309
|
natDexTier: "RU",
|
|
@@ -5686,10 +4312,6 @@ exports.FormatsData = {
|
|
|
5686
4312
|
tier: "LC",
|
|
5687
4313
|
},
|
|
5688
4314
|
salazzle: {
|
|
5689
|
-
randomBattleMoves: ["flamethrower", "protect", "substitute", "toxic"],
|
|
5690
|
-
randomBattleLevel: 82,
|
|
5691
|
-
randomDoubleBattleMoves: ["encore", "fakeout", "fireblast", "nastyplot", "protect", "sludgebomb"],
|
|
5692
|
-
randomDoubleBattleLevel: 88,
|
|
5693
4315
|
tier: "NU",
|
|
5694
4316
|
doublesTier: "(DUU)",
|
|
5695
4317
|
natDexTier: "RU",
|
|
@@ -5703,10 +4325,6 @@ exports.FormatsData = {
|
|
|
5703
4325
|
tier: "LC",
|
|
5704
4326
|
},
|
|
5705
4327
|
bewear: {
|
|
5706
|
-
randomBattleMoves: ["closecombat", "darkestlariat", "doubleedge", "icepunch", "swordsdance"],
|
|
5707
|
-
randomBattleLevel: 82,
|
|
5708
|
-
randomDoubleBattleMoves: ["closecombat", "darkestlariat", "doubleedge", "drainpunch", "icepunch", "protect", "wideguard"],
|
|
5709
|
-
randomDoubleBattleLevel: 88,
|
|
5710
4328
|
tier: "NUBL",
|
|
5711
4329
|
doublesTier: "(DUU)",
|
|
5712
4330
|
natDexTier: "RU",
|
|
@@ -5718,37 +4336,21 @@ exports.FormatsData = {
|
|
|
5718
4336
|
tier: "NFE",
|
|
5719
4337
|
},
|
|
5720
4338
|
tsareena: {
|
|
5721
|
-
randomBattleMoves: ["highjumpkick", "knockoff", "powerwhip", "rapidspin", "synthesis", "tripleaxel", "uturn"],
|
|
5722
|
-
randomBattleLevel: 84,
|
|
5723
|
-
randomDoubleBattleMoves: ["highjumpkick", "knockoff", "playrough", "powerwhip", "rapidspin", "tripleaxel", "uturn"],
|
|
5724
|
-
randomDoubleBattleLevel: 88,
|
|
5725
4339
|
tier: "NU",
|
|
5726
4340
|
doublesTier: "DOU",
|
|
5727
4341
|
natDexTier: "RU",
|
|
5728
4342
|
},
|
|
5729
4343
|
comfey: {
|
|
5730
|
-
randomBattleMoves: ["calmmind", "drainingkiss", "gigadrain", "storedpower", "trick", "uturn"],
|
|
5731
|
-
randomBattleLevel: 86,
|
|
5732
|
-
randomDoubleBattleMoves: ["drainingkiss", "floralhealing", "gigadrain", "helpinghand", "protect"],
|
|
5733
|
-
randomDoubleBattleLevel: 89,
|
|
5734
4344
|
tier: "PU",
|
|
5735
4345
|
doublesTier: "DUU",
|
|
5736
4346
|
natDexTier: "RU",
|
|
5737
4347
|
},
|
|
5738
4348
|
oranguru: {
|
|
5739
|
-
randomBattleMoves: ["focusblast", "nastyplot", "psychic", "thunderbolt", "trickroom"],
|
|
5740
|
-
randomBattleLevel: 86,
|
|
5741
|
-
randomDoubleBattleMoves: ["allyswitch", "focusblast", "instruct", "psychic", "trickroom"],
|
|
5742
|
-
randomDoubleBattleLevel: 88,
|
|
5743
4349
|
tier: "(PU)",
|
|
5744
4350
|
doublesTier: "(DUU)",
|
|
5745
4351
|
natDexTier: "RU",
|
|
5746
4352
|
},
|
|
5747
4353
|
passimian: {
|
|
5748
|
-
randomBattleMoves: ["closecombat", "earthquake", "gunkshot", "knockoff", "rockslide", "uturn"],
|
|
5749
|
-
randomBattleLevel: 82,
|
|
5750
|
-
randomDoubleBattleMoves: ["closecombat", "gunkshot", "knockoff", "rockslide", "uturn"],
|
|
5751
|
-
randomDoubleBattleLevel: 84,
|
|
5752
4354
|
tier: "NU",
|
|
5753
4355
|
doublesTier: "(DUU)",
|
|
5754
4356
|
natDexTier: "RU",
|
|
@@ -5757,10 +4359,6 @@ exports.FormatsData = {
|
|
|
5757
4359
|
tier: "LC",
|
|
5758
4360
|
},
|
|
5759
4361
|
golisopod: {
|
|
5760
|
-
randomBattleMoves: ["firstimpression", "knockoff", "leechlife", "liquidation", "spikes"],
|
|
5761
|
-
randomBattleLevel: 84,
|
|
5762
|
-
randomDoubleBattleMoves: ["aquajet", "firstimpression", "knockoff", "leechlife", "liquidation", "protect", "wideguard"],
|
|
5763
|
-
randomDoubleBattleLevel: 88,
|
|
5764
4362
|
tier: "RU",
|
|
5765
4363
|
doublesTier: "(DUU)",
|
|
5766
4364
|
natDexTier: "RU",
|
|
@@ -5769,186 +4367,104 @@ exports.FormatsData = {
|
|
|
5769
4367
|
tier: "LC",
|
|
5770
4368
|
},
|
|
5771
4369
|
palossand: {
|
|
5772
|
-
randomBattleMoves: ["earthpower", "scorchingsands", "shadowball", "shoreup", "stealthrock", "toxic"],
|
|
5773
|
-
randomBattleLevel: 86,
|
|
5774
|
-
randomDoubleBattleMoves: ["hypnosis", "protect", "scorchingsands", "shadowball", "shoreup", "stealthrock"],
|
|
5775
|
-
randomDoubleBattleLevel: 88,
|
|
5776
4370
|
tier: "(PU)",
|
|
5777
4371
|
doublesTier: "(DUU)",
|
|
5778
4372
|
natDexTier: "RU",
|
|
5779
4373
|
},
|
|
5780
4374
|
pyukumuku: {
|
|
5781
|
-
randomBattleMoves: ["counter", "mirrorcoat", "recover", "toxic"],
|
|
5782
|
-
randomBattleLevel: 84,
|
|
5783
|
-
randomDoubleBattleMoves: ["helpinghand", "lightscreen", "memento", "reflect"],
|
|
5784
|
-
randomDoubleBattleLevel: 100,
|
|
5785
4375
|
tier: "(PU)",
|
|
5786
4376
|
doublesTier: "(DUU)",
|
|
5787
4377
|
natDexTier: "RU",
|
|
5788
4378
|
},
|
|
5789
4379
|
typenull: {
|
|
5790
|
-
randomBattleMoves: ["crushclaw", "payback", "rest", "sleeptalk", "swordsdance"],
|
|
5791
|
-
randomBattleLevel: 86,
|
|
5792
4380
|
tier: "NFE",
|
|
5793
4381
|
},
|
|
5794
4382
|
silvally: {
|
|
5795
|
-
randomBattleMoves: ["crunch", "explosion", "flamecharge", "flamethrower", "multiattack", "swordsdance", "uturn"],
|
|
5796
|
-
randomBattleLevel: 84,
|
|
5797
|
-
randomDoubleBattleMoves: ["crunch", "explosion", "flamethrower", "multiattack", "protect", "tailwind"],
|
|
5798
|
-
randomDoubleBattleLevel: 88,
|
|
5799
4383
|
tier: "(PU)",
|
|
5800
4384
|
doublesTier: "(DUU)",
|
|
5801
4385
|
natDexTier: "RU",
|
|
5802
4386
|
},
|
|
5803
4387
|
silvallybug: {
|
|
5804
|
-
randomBattleMoves: ["flamethrower", "multiattack", "partingshot", "psychicfangs", "thunderbolt"],
|
|
5805
|
-
randomBattleLevel: 84,
|
|
5806
|
-
randomDoubleBattleMoves: ["flamethrower", "multiattack", "psychicfangs", "tailwind", "uturn"],
|
|
5807
|
-
randomDoubleBattleLevel: 88,
|
|
5808
4388
|
tier: "(PU)",
|
|
5809
4389
|
doublesTier: "(DUU)",
|
|
5810
4390
|
natDexTier: "RU",
|
|
5811
4391
|
},
|
|
5812
4392
|
silvallydark: {
|
|
5813
|
-
randomBattleMoves: ["ironhead", "multiattack", "partingshot", "psychicfangs", "swordsdance"],
|
|
5814
|
-
randomBattleLevel: 84,
|
|
5815
|
-
randomDoubleBattleMoves: ["ironhead", "multiattack", "psychicfangs", "swordsdance", "tailwind"],
|
|
5816
|
-
randomDoubleBattleLevel: 86,
|
|
5817
4393
|
tier: "(PU)",
|
|
5818
4394
|
doublesTier: "(DUU)",
|
|
5819
4395
|
natDexTier: "RU",
|
|
5820
4396
|
},
|
|
5821
4397
|
silvallydragon: {
|
|
5822
|
-
randomBattleMoves: ["flamecharge", "ironhead", "multiattack", "partingshot", "swordsdance"],
|
|
5823
|
-
randomBattleLevel: 84,
|
|
5824
|
-
randomDoubleBattleMoves: ["firefang", "ironhead", "multiattack", "swordsdance", "tailwind"],
|
|
5825
|
-
randomDoubleBattleLevel: 88,
|
|
5826
4398
|
tier: "(PU)",
|
|
5827
4399
|
doublesTier: "(DUU)",
|
|
5828
4400
|
natDexTier: "RU",
|
|
5829
4401
|
},
|
|
5830
4402
|
silvallyelectric: {
|
|
5831
|
-
randomBattleMoves: ["flamethrower", "icebeam", "multiattack", "partingshot", "toxic"],
|
|
5832
|
-
randomBattleLevel: 84,
|
|
5833
|
-
randomDoubleBattleMoves: ["flamethrower", "grasspledge", "icebeam", "multiattack", "tailwind"],
|
|
5834
|
-
randomDoubleBattleLevel: 88,
|
|
5835
4403
|
tier: "(PU)",
|
|
5836
4404
|
doublesTier: "(DUU)",
|
|
5837
4405
|
natDexTier: "RU",
|
|
5838
4406
|
},
|
|
5839
4407
|
silvallyfairy: {
|
|
5840
|
-
randomBattleMoves: ["flamecharge", "multiattack", "psychicfangs", "swordsdance"],
|
|
5841
|
-
randomBattleLevel: 84,
|
|
5842
|
-
randomDoubleBattleMoves: ["flamethrower", "multiattack", "partingshot", "tailwind"],
|
|
5843
|
-
randomDoubleBattleLevel: 88,
|
|
5844
4408
|
tier: "PU",
|
|
5845
4409
|
doublesTier: "(DUU)",
|
|
5846
4410
|
natDexTier: "RU",
|
|
5847
4411
|
},
|
|
5848
4412
|
silvallyfighting: {
|
|
5849
|
-
randomBattleMoves: ["crunch", "ironhead", "multiattack", "swordsdance", "uturn"],
|
|
5850
|
-
randomBattleLevel: 84,
|
|
5851
|
-
randomDoubleBattleMoves: ["crunch", "multiattack", "rockslide", "swordsdance", "tailwind"],
|
|
5852
|
-
randomDoubleBattleLevel: 88,
|
|
5853
4413
|
tier: "(PU)",
|
|
5854
4414
|
doublesTier: "(DUU)",
|
|
5855
4415
|
natDexTier: "RU",
|
|
5856
4416
|
},
|
|
5857
4417
|
silvallyfire: {
|
|
5858
|
-
randomBattleMoves: ["crunch", "ironhead", "multiattack", "swordsdance"],
|
|
5859
|
-
randomBattleLevel: 84,
|
|
5860
|
-
randomDoubleBattleMoves: ["heatwave", "icebeam", "multiattack", "tailwind", "thunderbolt"],
|
|
5861
|
-
randomDoubleBattleLevel: 88,
|
|
5862
4418
|
tier: "(PU)",
|
|
5863
4419
|
doublesTier: "(DUU)",
|
|
5864
4420
|
natDexTier: "RU",
|
|
5865
4421
|
},
|
|
5866
4422
|
silvallyflying: {
|
|
5867
|
-
randomBattleMoves: ["flamecharge", "ironhead", "multiattack", "rockslide", "swordsdance"],
|
|
5868
|
-
randomBattleLevel: 84,
|
|
5869
|
-
randomDoubleBattleMoves: ["firefang", "ironhead", "multiattack", "swordsdance", "tailwind"],
|
|
5870
|
-
randomDoubleBattleLevel: 86,
|
|
5871
4423
|
tier: "(PU)",
|
|
5872
4424
|
doublesTier: "(DUU)",
|
|
5873
4425
|
natDexTier: "RU",
|
|
5874
4426
|
},
|
|
5875
4427
|
silvallyghost: {
|
|
5876
|
-
randomBattleMoves: ["flamecharge", "multiattack", "partingshot", "swordsdance", "xscissor"],
|
|
5877
|
-
randomBattleLevel: 84,
|
|
5878
|
-
randomDoubleBattleMoves: ["multiattack", "swordsdance", "tailwind", "xscissor"],
|
|
5879
|
-
randomDoubleBattleLevel: 88,
|
|
5880
4428
|
tier: "PU",
|
|
5881
4429
|
doublesTier: "(DUU)",
|
|
5882
4430
|
natDexTier: "RU",
|
|
5883
4431
|
},
|
|
5884
4432
|
silvallygrass: {
|
|
5885
|
-
randomBattleMoves: ["defog", "flamethrower", "icebeam", "multiattack", "partingshot"],
|
|
5886
|
-
randomBattleLevel: 84,
|
|
5887
|
-
randomDoubleBattleMoves: ["flamethrower", "icebeam", "multiattack", "partingshot", "tailwind"],
|
|
5888
|
-
randomDoubleBattleLevel: 88,
|
|
5889
4433
|
tier: "(PU)",
|
|
5890
4434
|
doublesTier: "(DUU)",
|
|
5891
4435
|
natDexTier: "RU",
|
|
5892
4436
|
},
|
|
5893
4437
|
silvallyground: {
|
|
5894
|
-
randomBattleMoves: ["defog", "flamethrower", "icebeam", "multiattack", "partingshot", "toxic"],
|
|
5895
|
-
randomBattleLevel: 84,
|
|
5896
|
-
randomDoubleBattleMoves: ["multiattack", "rockslide", "swordsdance", "tailwind"],
|
|
5897
|
-
randomDoubleBattleLevel: 89,
|
|
5898
4438
|
tier: "NU",
|
|
5899
4439
|
doublesTier: "(DUU)",
|
|
5900
4440
|
natDexTier: "RU",
|
|
5901
4441
|
},
|
|
5902
4442
|
silvallyice: {
|
|
5903
|
-
randomBattleMoves: ["flamecharge", "multiattack", "psychicfangs", "swordsdance"],
|
|
5904
|
-
randomBattleLevel: 84,
|
|
5905
|
-
randomDoubleBattleMoves: ["flamethrower", "multiattack", "partingshot", "tailwind", "thunderbolt"],
|
|
5906
|
-
randomDoubleBattleLevel: 88,
|
|
5907
4443
|
tier: "(PU)",
|
|
5908
4444
|
doublesTier: "(DUU)",
|
|
5909
4445
|
natDexTier: "RU",
|
|
5910
4446
|
},
|
|
5911
4447
|
silvallypoison: {
|
|
5912
|
-
randomBattleMoves: ["defog", "flamethrower", "grasspledge", "multiattack", "partingshot", "toxic"],
|
|
5913
|
-
randomBattleLevel: 84,
|
|
5914
|
-
randomDoubleBattleMoves: ["flamethrower", "grasspledge", "multiattack", "partingshot", "snarl", "tailwind"],
|
|
5915
|
-
randomDoubleBattleLevel: 88,
|
|
5916
4448
|
tier: "(PU)",
|
|
5917
4449
|
doublesTier: "(DUU)",
|
|
5918
4450
|
natDexTier: "RU",
|
|
5919
4451
|
},
|
|
5920
4452
|
silvallypsychic: {
|
|
5921
|
-
randomBattleMoves: ["crunch", "multiattack", "swordsdance", "uturn"],
|
|
5922
|
-
randomBattleLevel: 84,
|
|
5923
|
-
randomDoubleBattleMoves: ["flamethrower", "multiattack", "partingshot", "tailwind", "xscissor"],
|
|
5924
|
-
randomDoubleBattleLevel: 88,
|
|
5925
4453
|
tier: "(PU)",
|
|
5926
4454
|
doublesTier: "(DUU)",
|
|
5927
4455
|
natDexTier: "RU",
|
|
5928
4456
|
},
|
|
5929
4457
|
silvallyrock: {
|
|
5930
|
-
randomBattleMoves: ["flamecharge", "multiattack", "partingshot", "psychicfangs", "swordsdance"],
|
|
5931
|
-
randomBattleLevel: 84,
|
|
5932
|
-
randomDoubleBattleMoves: ["flamethrower", "multiattack", "partingshot", "psychicfangs", "tailwind"],
|
|
5933
|
-
randomDoubleBattleLevel: 88,
|
|
5934
4458
|
tier: "(PU)",
|
|
5935
4459
|
doublesTier: "(DUU)",
|
|
5936
4460
|
natDexTier: "RU",
|
|
5937
4461
|
},
|
|
5938
4462
|
silvallysteel: {
|
|
5939
|
-
randomBattleMoves: ["defog", "flamethrower", "multiattack", "partingshot", "thunderbolt", "toxic"],
|
|
5940
|
-
randomBattleLevel: 84,
|
|
5941
|
-
randomDoubleBattleMoves: ["flamethrower", "multiattack", "partingshot", "tailwind", "thunderbolt"],
|
|
5942
|
-
randomDoubleBattleLevel: 87,
|
|
5943
4463
|
tier: "PU",
|
|
5944
4464
|
doublesTier: "(DUU)",
|
|
5945
4465
|
natDexTier: "RU",
|
|
5946
4466
|
},
|
|
5947
4467
|
silvallywater: {
|
|
5948
|
-
randomBattleMoves: ["defog", "icebeam", "multiattack", "partingshot", "thunderbolt", "toxic"],
|
|
5949
|
-
randomBattleLevel: 84,
|
|
5950
|
-
randomDoubleBattleMoves: ["icebeam", "multiattack", "partingshot", "tailwind", "thunderbolt"],
|
|
5951
|
-
randomDoubleBattleLevel: 88,
|
|
5952
4468
|
tier: "(PU)",
|
|
5953
4469
|
doublesTier: "(DUU)",
|
|
5954
4470
|
natDexTier: "RU",
|
|
@@ -5967,19 +4483,11 @@ exports.FormatsData = {
|
|
|
5967
4483
|
natDexTier: "RU",
|
|
5968
4484
|
},
|
|
5969
4485
|
turtonator: {
|
|
5970
|
-
randomBattleMoves: ["bodypress", "dracometeor", "earthquake", "fireblast", "rapidspin", "shellsmash", "willowisp"],
|
|
5971
|
-
randomBattleLevel: 84,
|
|
5972
|
-
randomDoubleBattleMoves: ["dragonpulse", "fireblast", "protect", "scorchingsands", "shellsmash"],
|
|
5973
|
-
randomDoubleBattleLevel: 84,
|
|
5974
4486
|
tier: "(PU)",
|
|
5975
4487
|
doublesTier: "(DUU)",
|
|
5976
4488
|
natDexTier: "RU",
|
|
5977
4489
|
},
|
|
5978
4490
|
togedemaru: {
|
|
5979
|
-
randomBattleMoves: ["ironhead", "nuzzle", "spikyshield", "uturn", "wish", "zingzap"],
|
|
5980
|
-
randomBattleLevel: 86,
|
|
5981
|
-
randomDoubleBattleMoves: ["encore", "fakeout", "ironhead", "nuzzle", "spikyshield", "zingzap"],
|
|
5982
|
-
randomDoubleBattleLevel: 88,
|
|
5983
4491
|
tier: "PU",
|
|
5984
4492
|
doublesTier: "(DUU)",
|
|
5985
4493
|
natDexTier: "RU",
|
|
@@ -5990,10 +4498,6 @@ exports.FormatsData = {
|
|
|
5990
4498
|
natDexTier: "RU",
|
|
5991
4499
|
},
|
|
5992
4500
|
mimikyu: {
|
|
5993
|
-
randomBattleMoves: ["drainpunch", "playrough", "shadowclaw", "shadowsneak", "swordsdance"],
|
|
5994
|
-
randomBattleLevel: 76,
|
|
5995
|
-
randomDoubleBattleMoves: ["playrough", "shadowclaw", "shadowsneak", "swordsdance"],
|
|
5996
|
-
randomDoubleBattleLevel: 84,
|
|
5997
4501
|
tier: "RU",
|
|
5998
4502
|
doublesTier: "(DUU)",
|
|
5999
4503
|
natDexTier: "RU",
|
|
@@ -6014,19 +4518,11 @@ exports.FormatsData = {
|
|
|
6014
4518
|
natDexTier: "RU",
|
|
6015
4519
|
},
|
|
6016
4520
|
drampa: {
|
|
6017
|
-
randomBattleMoves: ["dracometeor", "fireblast", "glare", "hypervoice", "roost", "thunderbolt"],
|
|
6018
|
-
randomBattleLevel: 86,
|
|
6019
|
-
randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "heatwave", "hypervoice"],
|
|
6020
|
-
randomDoubleBattleLevel: 88,
|
|
6021
4521
|
tier: "PUBL",
|
|
6022
4522
|
doublesTier: "(DUU)",
|
|
6023
4523
|
natDexTier: "RU",
|
|
6024
4524
|
},
|
|
6025
4525
|
dhelmise: {
|
|
6026
|
-
randomBattleMoves: ["anchorshot", "earthquake", "poltergeist", "powerwhip", "rapidspin", "swordsdance"],
|
|
6027
|
-
randomBattleLevel: 86,
|
|
6028
|
-
randomDoubleBattleMoves: ["anchorshot", "knockoff", "powerwhip", "protect"],
|
|
6029
|
-
randomDoubleBattleLevel: 88,
|
|
6030
4526
|
tier: "NU",
|
|
6031
4527
|
doublesTier: "(DUU)",
|
|
6032
4528
|
natDexTier: "RU",
|
|
@@ -6038,10 +4534,6 @@ exports.FormatsData = {
|
|
|
6038
4534
|
tier: "NFE",
|
|
6039
4535
|
},
|
|
6040
4536
|
kommoo: {
|
|
6041
|
-
randomBattleMoves: ["clangingscales", "clangoroussoul", "closecombat", "poisonjab", "stealthrock"],
|
|
6042
|
-
randomBattleLevel: 80,
|
|
6043
|
-
randomDoubleBattleMoves: ["bodypress", "dracometeor", "irondefense", "protect"],
|
|
6044
|
-
randomDoubleBattleLevel: 80,
|
|
6045
4537
|
tier: "UUBL",
|
|
6046
4538
|
doublesTier: "(DUU)",
|
|
6047
4539
|
natDexTier: "OU",
|
|
@@ -6052,37 +4544,21 @@ exports.FormatsData = {
|
|
|
6052
4544
|
natDexTier: "OU",
|
|
6053
4545
|
},
|
|
6054
4546
|
tapukoko: {
|
|
6055
|
-
randomBattleMoves: ["calmmind", "dazzlinggleam", "grassknot", "substitute", "thunderbolt", "voltswitch"],
|
|
6056
|
-
randomBattleLevel: 78,
|
|
6057
|
-
randomDoubleBattleMoves: ["bravebird", "dazzlinggleam", "grassknot", "taunt", "thunderbolt", "uturn"],
|
|
6058
|
-
randomDoubleBattleLevel: 80,
|
|
6059
4547
|
tier: "OU",
|
|
6060
4548
|
doublesTier: "DOU",
|
|
6061
4549
|
natDexTier: "OU",
|
|
6062
4550
|
},
|
|
6063
4551
|
tapulele: {
|
|
6064
|
-
randomBattleMoves: ["calmmind", "focusblast", "moonblast", "psychic", "psyshock", "shadowball"],
|
|
6065
|
-
randomBattleLevel: 79,
|
|
6066
|
-
randomDoubleBattleMoves: ["calmmind", "dazzlinggleam", "focusblast", "moonblast", "protect", "psyshock"],
|
|
6067
|
-
randomDoubleBattleLevel: 80,
|
|
6068
4552
|
tier: "OU",
|
|
6069
4553
|
doublesTier: "DOU",
|
|
6070
4554
|
natDexTier: "OU",
|
|
6071
4555
|
},
|
|
6072
4556
|
tapubulu: {
|
|
6073
|
-
randomBattleMoves: ["closecombat", "hornleech", "megahorn", "stoneedge", "swordsdance", "woodhammer"],
|
|
6074
|
-
randomBattleLevel: 82,
|
|
6075
|
-
randomDoubleBattleMoves: ["closecombat", "hornleech", "protect", "stoneedge", "swordsdance", "woodhammer"],
|
|
6076
|
-
randomDoubleBattleLevel: 83,
|
|
6077
4557
|
tier: "UU",
|
|
6078
4558
|
doublesTier: "DUU",
|
|
6079
4559
|
natDexTier: "RUBL",
|
|
6080
4560
|
},
|
|
6081
4561
|
tapufini: {
|
|
6082
|
-
randomBattleMoves: ["calmmind", "defog", "moonblast", "surf", "taunt"],
|
|
6083
|
-
randomBattleLevel: 78,
|
|
6084
|
-
randomDoubleBattleMoves: ["haze", "healpulse", "moonblast", "muddywater", "naturesmadness", "protect", "taunt"],
|
|
6085
|
-
randomDoubleBattleLevel: 80,
|
|
6086
4562
|
tier: "OU",
|
|
6087
4563
|
doublesTier: "DOU",
|
|
6088
4564
|
natDexTier: "OU",
|
|
@@ -6094,111 +4570,61 @@ exports.FormatsData = {
|
|
|
6094
4570
|
tier: "NFE",
|
|
6095
4571
|
},
|
|
6096
4572
|
solgaleo: {
|
|
6097
|
-
randomBattleMoves: ["closecombat", "flamecharge", "flareblitz", "knockoff", "psychicfangs", "sunsteelstrike"],
|
|
6098
|
-
randomBattleLevel: 72,
|
|
6099
|
-
randomDoubleBattleMoves: ["closecombat", "flareblitz", "morningsun", "protect", "psychicfangs", "stoneedge", "sunsteelstrike"],
|
|
6100
|
-
randomDoubleBattleLevel: 76,
|
|
6101
4573
|
tier: "Uber",
|
|
6102
4574
|
doublesTier: "DUber",
|
|
6103
4575
|
natDexTier: "Uber",
|
|
6104
4576
|
},
|
|
6105
4577
|
lunala: {
|
|
6106
|
-
randomBattleMoves: ["calmmind", "moonblast", "moongeistbeam", "psyshock", "roost"],
|
|
6107
|
-
randomBattleLevel: 72,
|
|
6108
|
-
randomDoubleBattleMoves: ["calmmind", "moonblast", "moongeistbeam", "protect", "psyshock", "roost"],
|
|
6109
|
-
randomDoubleBattleLevel: 74,
|
|
6110
4578
|
tier: "Uber",
|
|
6111
4579
|
doublesTier: "DUber",
|
|
6112
4580
|
natDexTier: "Uber",
|
|
6113
4581
|
},
|
|
6114
4582
|
nihilego: {
|
|
6115
|
-
randomBattleMoves: ["grassknot", "powergem", "sludgewave", "stealthrock", "thunderbolt", "toxicspikes"],
|
|
6116
|
-
randomBattleLevel: 79,
|
|
6117
|
-
randomDoubleBattleMoves: ["grassknot", "meteorbeam", "protect", "sludgebomb", "thunderbolt"],
|
|
6118
|
-
randomDoubleBattleLevel: 81,
|
|
6119
4583
|
tier: "UU",
|
|
6120
4584
|
doublesTier: "(DUU)",
|
|
6121
4585
|
natDexTier: "UU",
|
|
6122
4586
|
},
|
|
6123
4587
|
buzzwole: {
|
|
6124
|
-
randomBattleMoves: ["closecombat", "darkestlariat", "dualwingbeat", "ironhead", "leechlife", "stoneedge"],
|
|
6125
|
-
randomBattleLevel: 77,
|
|
6126
|
-
randomDoubleBattleMoves: ["closecombat", "darkestlariat", "dualwingbeat", "ironhead", "leechlife", "stoneedge"],
|
|
6127
|
-
randomDoubleBattleLevel: 80,
|
|
6128
|
-
randomBattleNoDynamaxMoves: ["bulkup", "closecombat", "darkestlariat", "leechlife", "poisonjab", "roost", "stoneedge"],
|
|
6129
4588
|
tier: "OU",
|
|
6130
4589
|
doublesTier: "(DUU)",
|
|
6131
4590
|
natDexTier: "RUBL",
|
|
6132
4591
|
},
|
|
6133
4592
|
pheromosa: {
|
|
6134
|
-
randomBattleMoves: ["closecombat", "icebeam", "poisonjab", "throatchop", "uturn"],
|
|
6135
|
-
randomBattleLevel: 75,
|
|
6136
|
-
randomDoubleBattleMoves: ["closecombat", "icebeam", "poisonjab", "protect", "throatchop", "uturn"],
|
|
6137
|
-
randomDoubleBattleLevel: 78,
|
|
6138
4593
|
tier: "Uber",
|
|
6139
4594
|
doublesTier: "(DUU)",
|
|
6140
4595
|
natDexTier: "Uber",
|
|
6141
4596
|
},
|
|
6142
4597
|
xurkitree: {
|
|
6143
|
-
randomBattleMoves: ["dazzlinggleam", "energyball", "hypnosis", "thunderbolt", "voltswitch"],
|
|
6144
|
-
randomBattleLevel: 76,
|
|
6145
|
-
randomDoubleBattleMoves: ["dazzlinggleam", "energyball", "thunderbolt", "voltswitch"],
|
|
6146
|
-
randomDoubleBattleLevel: 79,
|
|
6147
4598
|
tier: "RU",
|
|
6148
4599
|
doublesTier: "(DUU)",
|
|
6149
4600
|
natDexTier: "UUBL",
|
|
6150
4601
|
},
|
|
6151
4602
|
celesteela: {
|
|
6152
|
-
randomBattleMoves: ["airslash", "earthquake", "fireblast", "flashcannon", "leechseed", "protect"],
|
|
6153
|
-
randomBattleLevel: 77,
|
|
6154
|
-
randomDoubleBattleMoves: ["airslash", "fireblast", "flashcannon", "leechseed", "protect", "wideguard"],
|
|
6155
|
-
randomDoubleBattleLevel: 78,
|
|
6156
|
-
randomBattleNoDynamaxMoves: ["airslash", "earthquake", "fireblast", "heavyslam", "leechseed", "protect"],
|
|
6157
4603
|
tier: "UU",
|
|
6158
4604
|
doublesTier: "DOU",
|
|
6159
4605
|
natDexTier: "UU",
|
|
6160
4606
|
},
|
|
6161
4607
|
kartana: {
|
|
6162
|
-
randomBattleMoves: ["knockoff", "leafblade", "sacredsword", "smartstrike", "swordsdance"],
|
|
6163
|
-
randomBattleLevel: 74,
|
|
6164
|
-
randomDoubleBattleMoves: ["knockoff", "leafblade", "sacredsword", "smartstrike", "swordsdance"],
|
|
6165
|
-
randomDoubleBattleLevel: 78,
|
|
6166
4608
|
tier: "OU",
|
|
6167
4609
|
doublesTier: "DUber",
|
|
6168
4610
|
natDexTier: "OU",
|
|
6169
4611
|
},
|
|
6170
4612
|
guzzlord: {
|
|
6171
|
-
randomBattleMoves: ["darkpulse", "dracometeor", "fireblast", "knockoff", "sludgebomb"],
|
|
6172
|
-
randomBattleLevel: 84,
|
|
6173
|
-
randomDoubleBattleMoves: ["dracometeor", "fireblast", "knockoff", "protect", "sludgebomb"],
|
|
6174
|
-
randomDoubleBattleLevel: 88,
|
|
6175
4613
|
tier: "PUBL",
|
|
6176
4614
|
doublesTier: "(DUU)",
|
|
6177
4615
|
natDexTier: "RU",
|
|
6178
4616
|
},
|
|
6179
4617
|
necrozma: {
|
|
6180
|
-
randomBattleMoves: ["calmmind", "heatwave", "moonlight", "photongeyser", "stealthrock"],
|
|
6181
|
-
randomBattleLevel: 80,
|
|
6182
|
-
randomDoubleBattleMoves: ["calmmind", "earthpower", "heatwave", "moonlight", "photongeyser", "protect"],
|
|
6183
|
-
randomDoubleBattleLevel: 80,
|
|
6184
4618
|
tier: "RUBL",
|
|
6185
4619
|
doublesTier: "DOU",
|
|
6186
4620
|
natDexTier: "RUBL",
|
|
6187
4621
|
},
|
|
6188
4622
|
necrozmaduskmane: {
|
|
6189
|
-
randomBattleMoves: ["dragondance", "earthquake", "morningsun", "photongeyser", "sunsteelstrike"],
|
|
6190
|
-
randomBattleLevel: 67,
|
|
6191
|
-
randomDoubleBattleMoves: ["dragondance", "photongeyser", "protect", "sunsteelstrike"],
|
|
6192
|
-
randomDoubleBattleLevel: 72,
|
|
6193
4623
|
tier: "Uber",
|
|
6194
4624
|
doublesTier: "DUber",
|
|
6195
4625
|
natDexTier: "Uber",
|
|
6196
4626
|
},
|
|
6197
4627
|
necrozmadawnwings: {
|
|
6198
|
-
randomBattleMoves: ["calmmind", "heatwave", "moongeistbeam", "photongeyser", "stealthrock"],
|
|
6199
|
-
randomBattleLevel: 76,
|
|
6200
|
-
randomDoubleBattleMoves: ["heatwave", "moongeistbeam", "photongeyser", "protect", "thunderwave"],
|
|
6201
|
-
randomDoubleBattleLevel: 72,
|
|
6202
4628
|
tier: "Uber",
|
|
6203
4629
|
doublesTier: "DUber",
|
|
6204
4630
|
natDexTier: "Uber",
|
|
@@ -6209,25 +4635,12 @@ exports.FormatsData = {
|
|
|
6209
4635
|
natDexTier: "Uber",
|
|
6210
4636
|
},
|
|
6211
4637
|
magearna: {
|
|
6212
|
-
randomBattleMoves: ["agility", "calmmind", "flashcannon", "fleurcannon"],
|
|
6213
|
-
randomBattleLevel: 76,
|
|
6214
|
-
randomDoubleBattleMoves: ["agility", "aurasphere", "dazzlinggleam", "flashcannon", "fleurcannon", "protect", "trick"],
|
|
6215
|
-
randomDoubleBattleLevel: 72,
|
|
6216
4638
|
tier: "Uber",
|
|
6217
4639
|
doublesTier: "DUber",
|
|
6218
4640
|
natDexTier: "Uber",
|
|
6219
4641
|
},
|
|
6220
|
-
magearnaoriginal: {
|
|
6221
|
-
randomBattleMoves: ["agility", "calmmind", "flashcannon", "fleurcannon"],
|
|
6222
|
-
randomBattleLevel: 76,
|
|
6223
|
-
randomDoubleBattleMoves: ["agility", "aurasphere", "dazzlinggleam", "flashcannon", "fleurcannon", "protect", "trick"],
|
|
6224
|
-
randomDoubleBattleLevel: 72,
|
|
6225
|
-
},
|
|
4642
|
+
magearnaoriginal: {},
|
|
6226
4643
|
marshadow: {
|
|
6227
|
-
randomBattleMoves: ["bulkup", "closecombat", "icepunch", "rocktomb", "shadowsneak", "spectralthief"],
|
|
6228
|
-
randomBattleLevel: 70,
|
|
6229
|
-
randomDoubleBattleMoves: ["closecombat", "protect", "rocktomb", "shadowsneak", "spectralthief"],
|
|
6230
|
-
randomDoubleBattleLevel: 72,
|
|
6231
4644
|
tier: "Uber",
|
|
6232
4645
|
doublesTier: "DUber",
|
|
6233
4646
|
natDexTier: "Uber",
|
|
@@ -6236,38 +4649,21 @@ exports.FormatsData = {
|
|
|
6236
4649
|
tier: "NFE",
|
|
6237
4650
|
},
|
|
6238
4651
|
naganadel: {
|
|
6239
|
-
randomBattleMoves: ["airslash", "dracometeor", "fireblast", "nastyplot", "sludgewave"],
|
|
6240
|
-
randomBattleLevel: 74,
|
|
6241
|
-
randomDoubleBattleMoves: ["dracometeor", "flamethrower", "nastyplot", "sludgebomb", "uturn"],
|
|
6242
|
-
randomDoubleBattleLevel: 76,
|
|
6243
|
-
randomBattleNoDynamaxMoves: ["dracometeor", "fireblast", "nastyplot", "sludgewave", "uturn"],
|
|
6244
4652
|
tier: "Uber",
|
|
6245
4653
|
doublesTier: "DUU",
|
|
6246
4654
|
natDexTier: "Uber",
|
|
6247
4655
|
},
|
|
6248
4656
|
stakataka: {
|
|
6249
|
-
randomBattleMoves: ["bodypress", "earthquake", "gyroball", "stealthrock", "stoneedge", "trickroom"],
|
|
6250
|
-
randomBattleLevel: 80,
|
|
6251
|
-
randomDoubleBattleMoves: ["bodypress", "gyroball", "highhorsepower", "rockslide", "trickroom"],
|
|
6252
|
-
randomDoubleBattleLevel: 82,
|
|
6253
4657
|
tier: "NU",
|
|
6254
4658
|
doublesTier: "DOU",
|
|
6255
4659
|
natDexTier: "RU",
|
|
6256
4660
|
},
|
|
6257
4661
|
blacephalon: {
|
|
6258
|
-
randomBattleMoves: ["calmmind", "fireblast", "psyshock", "shadowball", "trick"],
|
|
6259
|
-
randomBattleLevel: 80,
|
|
6260
|
-
randomDoubleBattleMoves: ["fireblast", "protect", "psyshock", "shadowball", "trick"],
|
|
6261
|
-
randomDoubleBattleLevel: 80,
|
|
6262
4662
|
tier: "OU",
|
|
6263
4663
|
doublesTier: "(DUU)",
|
|
6264
4664
|
natDexTier: "UUBL",
|
|
6265
4665
|
},
|
|
6266
4666
|
zeraora: {
|
|
6267
|
-
randomBattleMoves: ["blazekick", "bulkup", "closecombat", "grassknot", "knockoff", "plasmafists", "playrough", "voltswitch"],
|
|
6268
|
-
randomBattleLevel: 76,
|
|
6269
|
-
randomDoubleBattleMoves: ["closecombat", "fakeout", "grassknot", "knockoff", "plasmafists", "snarl"],
|
|
6270
|
-
randomDoubleBattleLevel: 78,
|
|
6271
4667
|
tier: "OU",
|
|
6272
4668
|
doublesTier: "DOU",
|
|
6273
4669
|
natDexTier: "UU",
|
|
@@ -6278,10 +4674,6 @@ exports.FormatsData = {
|
|
|
6278
4674
|
natDexTier: "RU",
|
|
6279
4675
|
},
|
|
6280
4676
|
melmetal: {
|
|
6281
|
-
randomBattleMoves: ["doubleironbash", "earthquake", "superpower", "thunderpunch", "thunderwave"],
|
|
6282
|
-
randomBattleLevel: 74,
|
|
6283
|
-
randomDoubleBattleMoves: ["acidarmor", "bodypress", "doubleironbash", "protect", "thunderpunch", "thunderwave"],
|
|
6284
|
-
randomDoubleBattleLevel: 76,
|
|
6285
4677
|
tier: "OU",
|
|
6286
4678
|
doublesTier: "DUber",
|
|
6287
4679
|
natDexTier: "UUBL",
|
|
@@ -6299,17 +4691,11 @@ exports.FormatsData = {
|
|
|
6299
4691
|
tier: "NFE",
|
|
6300
4692
|
},
|
|
6301
4693
|
rillaboom: {
|
|
6302
|
-
randomBattleMoves: ["grassyglide", "highhorsepower", "knockoff", "uturn", "woodhammer"],
|
|
6303
|
-
randomBattleLevel: 78,
|
|
6304
|
-
randomDoubleBattleMoves: ["fakeout", "grassyglide", "highhorsepower", "protect", "uturn", "woodhammer"],
|
|
6305
|
-
randomDoubleBattleLevel: 80,
|
|
6306
4694
|
tier: "OU",
|
|
6307
4695
|
doublesTier: "DOU",
|
|
6308
4696
|
natDexTier: "OU",
|
|
6309
4697
|
},
|
|
6310
4698
|
rillaboomgmax: {
|
|
6311
|
-
randomBattleMoves: ["acrobatics", "grassyglide", "highhorsepower", "knockoff", "swordsdance"],
|
|
6312
|
-
randomBattleLevel: 78,
|
|
6313
4699
|
isNonstandard: "Gigantamax",
|
|
6314
4700
|
tier: "AG",
|
|
6315
4701
|
doublesTier: "(DUber)",
|
|
@@ -6322,17 +4708,11 @@ exports.FormatsData = {
|
|
|
6322
4708
|
tier: "NFE",
|
|
6323
4709
|
},
|
|
6324
4710
|
cinderace: {
|
|
6325
|
-
randomBattleMoves: ["courtchange", "gunkshot", "highjumpkick", "pyroball", "uturn", "zenheadbutt"],
|
|
6326
|
-
randomBattleLevel: 74,
|
|
6327
|
-
randomDoubleBattleMoves: ["courtchange", "gunkshot", "highjumpkick", "protect", "pyroball", "suckerpunch", "uturn"],
|
|
6328
|
-
randomDoubleBattleLevel: 80,
|
|
6329
4711
|
tier: "Uber",
|
|
6330
4712
|
doublesTier: "DUU",
|
|
6331
4713
|
natDexTier: "Uber",
|
|
6332
4714
|
},
|
|
6333
4715
|
cinderacegmax: {
|
|
6334
|
-
randomBattleLevel: 74,
|
|
6335
|
-
randomBattleMoves: ["bulkup", "highjumpkick", "pyroball", "suckerpunch"],
|
|
6336
4716
|
isNonstandard: "Gigantamax",
|
|
6337
4717
|
tier: "AG",
|
|
6338
4718
|
doublesTier: "(DUber)",
|
|
@@ -6345,19 +4725,11 @@ exports.FormatsData = {
|
|
|
6345
4725
|
tier: "NFE",
|
|
6346
4726
|
},
|
|
6347
4727
|
inteleon: {
|
|
6348
|
-
randomBattleMoves: ["airslash", "darkpulse", "hydropump", "icebeam", "scald", "uturn"],
|
|
6349
|
-
randomBattleLevel: 80,
|
|
6350
|
-
randomDoubleBattleMoves: ["airslash", "hydropump", "icebeam", "muddywater", "uturn"],
|
|
6351
|
-
randomDoubleBattleLevel: 84,
|
|
6352
4728
|
tier: "PUBL",
|
|
6353
4729
|
doublesTier: "(DUU)",
|
|
6354
4730
|
natDexTier: "RU",
|
|
6355
4731
|
},
|
|
6356
4732
|
inteleongmax: {
|
|
6357
|
-
randomBattleMoves: ["airslash", "focusenergy", "icebeam", "surf"],
|
|
6358
|
-
randomBattleLevel: 80,
|
|
6359
|
-
randomDoubleBattleMoves: ["focusenergy", "hydropump", "icebeam", "muddywater"],
|
|
6360
|
-
randomDoubleBattleLevel: 84,
|
|
6361
4733
|
isNonstandard: "Gigantamax",
|
|
6362
4734
|
tier: "AG",
|
|
6363
4735
|
doublesTier: "(DUber)",
|
|
@@ -6367,10 +4739,6 @@ exports.FormatsData = {
|
|
|
6367
4739
|
tier: "LC",
|
|
6368
4740
|
},
|
|
6369
4741
|
greedent: {
|
|
6370
|
-
randomBattleMoves: ["bodyslam", "earthquake", "firefang", "payback", "swordsdance"],
|
|
6371
|
-
randomBattleLevel: 84,
|
|
6372
|
-
randomDoubleBattleMoves: ["bodyslam", "gyroball", "protect", "stompingtantrum", "swordsdance"],
|
|
6373
|
-
randomDoubleBattleLevel: 88,
|
|
6374
4742
|
tier: "(PU)",
|
|
6375
4743
|
doublesTier: "(DUU)",
|
|
6376
4744
|
natDexTier: "RU",
|
|
@@ -6382,10 +4750,6 @@ exports.FormatsData = {
|
|
|
6382
4750
|
tier: "NFE",
|
|
6383
4751
|
},
|
|
6384
4752
|
corviknight: {
|
|
6385
|
-
randomBattleMoves: ["bodypress", "bravebird", "bulkup", "defog", "roost"],
|
|
6386
|
-
randomBattleLevel: 78,
|
|
6387
|
-
randomDoubleBattleMoves: ["bodypress", "bravebird", "bulkup", "roost", "tailwind"],
|
|
6388
|
-
randomDoubleBattleLevel: 80,
|
|
6389
4753
|
tier: "OU",
|
|
6390
4754
|
doublesTier: "(DUU)",
|
|
6391
4755
|
natDexTier: "OU",
|
|
@@ -6403,15 +4767,11 @@ exports.FormatsData = {
|
|
|
6403
4767
|
tier: "NFE",
|
|
6404
4768
|
},
|
|
6405
4769
|
orbeetle: {
|
|
6406
|
-
randomBattleMoves: ["bodypress", "bugbuzz", "calmmind", "psychic", "recover", "stickyweb", "uturn"],
|
|
6407
|
-
randomBattleLevel: 86,
|
|
6408
4770
|
tier: "(PU)",
|
|
6409
4771
|
doublesTier: "(DUU)",
|
|
6410
4772
|
natDexTier: "RU",
|
|
6411
4773
|
},
|
|
6412
4774
|
orbeetlegmax: {
|
|
6413
|
-
randomDoubleBattleMoves: ["helpinghand", "hypnosis", "lightscreen", "psychic", "reflect", "stickyweb", "strugglebug"],
|
|
6414
|
-
randomDoubleBattleLevel: 88,
|
|
6415
4775
|
isNonstandard: "Gigantamax",
|
|
6416
4776
|
tier: "AG",
|
|
6417
4777
|
doublesTier: "(DUber)",
|
|
@@ -6421,10 +4781,6 @@ exports.FormatsData = {
|
|
|
6421
4781
|
tier: "LC",
|
|
6422
4782
|
},
|
|
6423
4783
|
thievul: {
|
|
6424
|
-
randomBattleMoves: ["darkpulse", "foulplay", "grassknot", "nastyplot", "partingshot", "psychic"],
|
|
6425
|
-
randomBattleLevel: 86,
|
|
6426
|
-
randomDoubleBattleMoves: ["faketears", "foulplay", "partingshot", "snarl", "taunt"],
|
|
6427
|
-
randomDoubleBattleLevel: 89,
|
|
6428
4784
|
tier: "(PU)",
|
|
6429
4785
|
doublesTier: "(DUU)",
|
|
6430
4786
|
natDexTier: "RU",
|
|
@@ -6433,10 +4789,6 @@ exports.FormatsData = {
|
|
|
6433
4789
|
tier: "LC",
|
|
6434
4790
|
},
|
|
6435
4791
|
eldegoss: {
|
|
6436
|
-
randomBattleMoves: ["energyball", "leechseed", "pollenpuff", "rapidspin", "sleeppowder"],
|
|
6437
|
-
randomBattleLevel: 90,
|
|
6438
|
-
randomDoubleBattleMoves: ["charm", "energyball", "helpinghand", "pollenpuff", "protect", "sleeppowder"],
|
|
6439
|
-
randomDoubleBattleLevel: 90,
|
|
6440
4792
|
tier: "PU",
|
|
6441
4793
|
doublesTier: "(DUU)",
|
|
6442
4794
|
natDexTier: "RU",
|
|
@@ -6445,10 +4797,6 @@ exports.FormatsData = {
|
|
|
6445
4797
|
tier: "LC",
|
|
6446
4798
|
},
|
|
6447
4799
|
dubwool: {
|
|
6448
|
-
randomBattleMoves: ["bodypress", "cottonguard", "rest", "sleeptalk"],
|
|
6449
|
-
randomBattleLevel: 86,
|
|
6450
|
-
randomDoubleBattleMoves: ["doubleedge", "swordsdance", "thunderwave", "wildcharge", "zenheadbutt"],
|
|
6451
|
-
randomDoubleBattleLevel: 90,
|
|
6452
4800
|
tier: "(PU)",
|
|
6453
4801
|
doublesTier: "(DUU)",
|
|
6454
4802
|
natDexTier: "RU",
|
|
@@ -6457,11 +4805,6 @@ exports.FormatsData = {
|
|
|
6457
4805
|
tier: "LC",
|
|
6458
4806
|
},
|
|
6459
4807
|
drednaw: {
|
|
6460
|
-
randomBattleMoves: ["liquidation", "stealthrock", "stoneedge", "superpower", "swordsdance"],
|
|
6461
|
-
randomBattleLevel: 84,
|
|
6462
|
-
randomDoubleBattleMoves: ["highhorsepower", "liquidation", "protect", "rockslide", "superpower", "swordsdance"],
|
|
6463
|
-
randomDoubleBattleLevel: 84,
|
|
6464
|
-
randomBattleNoDynamaxMoves: ["liquidation", "raindance", "stealthrock", "stoneedge", "superpower"],
|
|
6465
4808
|
tier: "(PU)",
|
|
6466
4809
|
doublesTier: "(DUU)",
|
|
6467
4810
|
natDexTier: "RU",
|
|
@@ -6476,10 +4819,6 @@ exports.FormatsData = {
|
|
|
6476
4819
|
tier: "LC",
|
|
6477
4820
|
},
|
|
6478
4821
|
boltund: {
|
|
6479
|
-
randomBattleMoves: ["bulkup", "crunch", "firefang", "playrough", "psychicfangs", "thunderfang", "voltswitch"],
|
|
6480
|
-
randomBattleLevel: 84,
|
|
6481
|
-
randomDoubleBattleMoves: ["crunch", "firefang", "nuzzle", "playrough", "protect", "psychicfangs", "snarl", "thunderfang"],
|
|
6482
|
-
randomDoubleBattleLevel: 86,
|
|
6483
4822
|
tier: "(PU)",
|
|
6484
4823
|
doublesTier: "(DUU)",
|
|
6485
4824
|
natDexTier: "RU",
|
|
@@ -6496,10 +4835,6 @@ exports.FormatsData = {
|
|
|
6496
4835
|
natDexTier: "RU",
|
|
6497
4836
|
},
|
|
6498
4837
|
coalossalgmax: {
|
|
6499
|
-
randomBattleMoves: ["overheat", "rapidspin", "spikes", "stealthrock", "stoneedge", "willowisp"],
|
|
6500
|
-
randomBattleLevel: 87,
|
|
6501
|
-
randomDoubleBattleMoves: ["fireblast", "incinerate", "protect", "stealthrock", "stoneedge", "willowisp"],
|
|
6502
|
-
randomDoubleBattleLevel: 85,
|
|
6503
4838
|
isNonstandard: "Gigantamax",
|
|
6504
4839
|
tier: "AG",
|
|
6505
4840
|
doublesTier: "(DUber)",
|
|
@@ -6509,10 +4844,6 @@ exports.FormatsData = {
|
|
|
6509
4844
|
tier: "LC",
|
|
6510
4845
|
},
|
|
6511
4846
|
flapple: {
|
|
6512
|
-
randomBattleMoves: ["dragondance", "gravapple", "outrage", "suckerpunch", "uturn"],
|
|
6513
|
-
randomBattleLevel: 84,
|
|
6514
|
-
randomDoubleBattleMoves: ["acrobatics", "dragondance", "dragonrush", "gravapple", "protect"],
|
|
6515
|
-
randomDoubleBattleLevel: 89,
|
|
6516
4847
|
tier: "(PU)",
|
|
6517
4848
|
doublesTier: "(DUU)",
|
|
6518
4849
|
natDexTier: "RU",
|
|
@@ -6524,17 +4855,11 @@ exports.FormatsData = {
|
|
|
6524
4855
|
natDexTier: "(Uber)",
|
|
6525
4856
|
},
|
|
6526
4857
|
appletun: {
|
|
6527
|
-
randomBattleMoves: ["appleacid", "dragonpulse", "leechseed", "recover"],
|
|
6528
|
-
randomBattleLevel: 90,
|
|
6529
|
-
randomDoubleBattleMoves: ["appleacid", "dragonpulse", "leechseed", "protect", "recover"],
|
|
6530
|
-
randomDoubleBattleLevel: 90,
|
|
6531
4858
|
tier: "(PU)",
|
|
6532
4859
|
doublesTier: "(DUU)",
|
|
6533
4860
|
natDexTier: "RU",
|
|
6534
4861
|
},
|
|
6535
4862
|
appletungmax: {
|
|
6536
|
-
randomBattleMoves: ["appleacid", "dracometeor", "leechseed", "recover"],
|
|
6537
|
-
randomBattleLevel: 90,
|
|
6538
4863
|
isNonstandard: "Gigantamax",
|
|
6539
4864
|
tier: "AG",
|
|
6540
4865
|
doublesTier: "(DUber)",
|
|
@@ -6544,25 +4869,17 @@ exports.FormatsData = {
|
|
|
6544
4869
|
tier: "LC",
|
|
6545
4870
|
},
|
|
6546
4871
|
sandaconda: {
|
|
6547
|
-
randomBattleMoves: ["coil", "earthquake", "glare", "rest", "stealthrock", "stoneedge"],
|
|
6548
|
-
randomBattleLevel: 84,
|
|
6549
4872
|
tier: "PU",
|
|
6550
4873
|
doublesTier: "(DUU)",
|
|
6551
4874
|
natDexTier: "RU",
|
|
6552
4875
|
},
|
|
6553
4876
|
sandacondagmax: {
|
|
6554
|
-
randomDoubleBattleMoves: ["coil", "glare", "highhorsepower", "protect", "stoneedge"],
|
|
6555
|
-
randomDoubleBattleLevel: 86,
|
|
6556
4877
|
isNonstandard: "Gigantamax",
|
|
6557
4878
|
tier: "AG",
|
|
6558
4879
|
doublesTier: "(DUber)",
|
|
6559
4880
|
natDexTier: "(Uber)",
|
|
6560
4881
|
},
|
|
6561
4882
|
cramorant: {
|
|
6562
|
-
randomBattleMoves: ["bravebird", "defog", "roost", "superpower", "surf"],
|
|
6563
|
-
randomBattleLevel: 84,
|
|
6564
|
-
randomDoubleBattleMoves: ["bravebird", "icebeam", "protect", "roost", "surf", "tailwind"],
|
|
6565
|
-
randomDoubleBattleLevel: 88,
|
|
6566
4883
|
tier: "(PU)",
|
|
6567
4884
|
doublesTier: "(DUU)",
|
|
6568
4885
|
natDexTier: "RU",
|
|
@@ -6581,10 +4898,6 @@ exports.FormatsData = {
|
|
|
6581
4898
|
tier: "LC",
|
|
6582
4899
|
},
|
|
6583
4900
|
barraskewda: {
|
|
6584
|
-
randomBattleMoves: ["closecombat", "crunch", "liquidation", "poisonjab", "psychicfangs"],
|
|
6585
|
-
randomBattleLevel: 80,
|
|
6586
|
-
randomDoubleBattleMoves: ["closecombat", "drillrun", "flipturn", "liquidation", "poisonjab"],
|
|
6587
|
-
randomDoubleBattleLevel: 84,
|
|
6588
4901
|
tier: "OU",
|
|
6589
4902
|
doublesTier: "(DUU)",
|
|
6590
4903
|
natDexTier: "RU",
|
|
@@ -6593,30 +4906,22 @@ exports.FormatsData = {
|
|
|
6593
4906
|
tier: "LC",
|
|
6594
4907
|
},
|
|
6595
4908
|
toxtricity: {
|
|
6596
|
-
randomBattleMoves: ["boomburst", "overdrive", "shiftgear", "sludgewave", "voltswitch"],
|
|
6597
|
-
randomBattleLevel: 82,
|
|
6598
4909
|
tier: "RU",
|
|
6599
4910
|
doublesTier: "(DUU)",
|
|
6600
4911
|
natDexTier: "RU",
|
|
6601
4912
|
},
|
|
6602
4913
|
toxtricitylowkey: {
|
|
6603
|
-
randomBattleMoves: ["boomburst", "overdrive", "sludgewave", "voltswitch"],
|
|
6604
|
-
randomBattleLevel: 82,
|
|
6605
4914
|
tier: "RU",
|
|
6606
4915
|
doublesTier: "(DUU)",
|
|
6607
4916
|
natDexTier: "RU",
|
|
6608
4917
|
},
|
|
6609
4918
|
toxtricitygmax: {
|
|
6610
|
-
randomDoubleBattleMoves: ["boomburst", "overdrive", "shiftgear", "sludgebomb", "snarl", "voltswitch"],
|
|
6611
|
-
randomDoubleBattleLevel: 84,
|
|
6612
4919
|
isNonstandard: "Gigantamax",
|
|
6613
4920
|
tier: "AG",
|
|
6614
4921
|
doublesTier: "(DUber)",
|
|
6615
4922
|
natDexTier: "(Uber)",
|
|
6616
4923
|
},
|
|
6617
4924
|
toxtricitylowkeygmax: {
|
|
6618
|
-
randomDoubleBattleMoves: ["boomburst", "overdrive", "sludgebomb", "snarl", "voltswitch"],
|
|
6619
|
-
randomDoubleBattleLevel: 84,
|
|
6620
4925
|
isNonstandard: "Gigantamax",
|
|
6621
4926
|
tier: "AG",
|
|
6622
4927
|
doublesTier: "(DUber)",
|
|
@@ -6626,17 +4931,11 @@ exports.FormatsData = {
|
|
|
6626
4931
|
tier: "LC",
|
|
6627
4932
|
},
|
|
6628
4933
|
centiskorch: {
|
|
6629
|
-
randomBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip"],
|
|
6630
|
-
randomBattleLevel: 84,
|
|
6631
|
-
randomDoubleBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip", "protect"],
|
|
6632
|
-
randomDoubleBattleLevel: 89,
|
|
6633
4934
|
tier: "(PU)",
|
|
6634
4935
|
doublesTier: "(DUU)",
|
|
6635
4936
|
natDexTier: "RU",
|
|
6636
4937
|
},
|
|
6637
4938
|
centiskorchgmax: {
|
|
6638
|
-
randomDoubleBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip", "protect"],
|
|
6639
|
-
randomDoubleBattleLevel: 89,
|
|
6640
4939
|
isNonstandard: "Gigantamax",
|
|
6641
4940
|
tier: "AG",
|
|
6642
4941
|
doublesTier: "(DUber)",
|
|
@@ -6646,10 +4945,6 @@ exports.FormatsData = {
|
|
|
6646
4945
|
tier: "LC",
|
|
6647
4946
|
},
|
|
6648
4947
|
grapploct: {
|
|
6649
|
-
randomBattleMoves: ["brutalswing", "bulkup", "drainpunch", "icepunch", "suckerpunch"],
|
|
6650
|
-
randomBattleLevel: 86,
|
|
6651
|
-
randomDoubleBattleMoves: ["closecombat", "coaching", "drainpunch", "icepunch", "octolock", "protect"],
|
|
6652
|
-
randomDoubleBattleLevel: 88,
|
|
6653
4948
|
tier: "(PU)",
|
|
6654
4949
|
doublesTier: "(DUU)",
|
|
6655
4950
|
natDexTier: "RU",
|
|
@@ -6661,10 +4956,6 @@ exports.FormatsData = {
|
|
|
6661
4956
|
tier: "LC",
|
|
6662
4957
|
},
|
|
6663
4958
|
polteageist: {
|
|
6664
|
-
randomBattleMoves: ["gigadrain", "shadowball", "shellsmash", "storedpower", "strengthsap"],
|
|
6665
|
-
randomBattleLevel: 78,
|
|
6666
|
-
randomDoubleBattleMoves: ["gigadrain", "protect", "shadowball", "shellsmash", "storedpower"],
|
|
6667
|
-
randomDoubleBattleLevel: 84,
|
|
6668
4959
|
tier: "RU",
|
|
6669
4960
|
doublesTier: "(DUU)",
|
|
6670
4961
|
natDexTier: "RUBL",
|
|
@@ -6681,10 +4972,6 @@ exports.FormatsData = {
|
|
|
6681
4972
|
natDexTier: "UU",
|
|
6682
4973
|
},
|
|
6683
4974
|
hatterenegmax: {
|
|
6684
|
-
randomBattleMoves: ["calmmind", "dazzlinggleam", "mysticalfire", "psychic", "psyshock", "trickroom"],
|
|
6685
|
-
randomBattleLevel: 86,
|
|
6686
|
-
randomDoubleBattleMoves: ["dazzlinggleam", "mysticalfire", "protect", "psychic", "trickroom"],
|
|
6687
|
-
randomDoubleBattleLevel: 80,
|
|
6688
4975
|
isNonstandard: "Gigantamax",
|
|
6689
4976
|
tier: "AG",
|
|
6690
4977
|
doublesTier: "(DUber)",
|
|
@@ -6697,17 +4984,11 @@ exports.FormatsData = {
|
|
|
6697
4984
|
tier: "NFE",
|
|
6698
4985
|
},
|
|
6699
4986
|
grimmsnarl: {
|
|
6700
|
-
randomBattleMoves: ["lightscreen", "reflect", "spiritbreak", "taunt", "thunderwave"],
|
|
6701
|
-
randomBattleLevel: 82,
|
|
6702
4987
|
tier: "NU",
|
|
6703
4988
|
doublesTier: "DUU",
|
|
6704
4989
|
natDexTier: "RU",
|
|
6705
4990
|
},
|
|
6706
4991
|
grimmsnarlgmax: {
|
|
6707
|
-
randomBattleMoves: ["bulkup", "darkestlariat", "playrough", "rest", "suckerpunch", "trick"],
|
|
6708
|
-
randomBattleLevel: 82,
|
|
6709
|
-
randomDoubleBattleMoves: ["darkestlariat", "fakeout", "lightscreen", "reflect", "spiritbreak", "taunt", "thunderwave"],
|
|
6710
|
-
randomDoubleBattleLevel: 84,
|
|
6711
4992
|
isNonstandard: "Gigantamax",
|
|
6712
4993
|
tier: "AG",
|
|
6713
4994
|
doublesTier: "(DUber)",
|
|
@@ -6722,29 +5003,17 @@ exports.FormatsData = {
|
|
|
6722
5003
|
natDexTier: "RU",
|
|
6723
5004
|
},
|
|
6724
5005
|
alcremiegmax: {
|
|
6725
|
-
randomBattleMoves: ["calmmind", "dazzlinggleam", "mysticalfire", "psychic", "recover"],
|
|
6726
|
-
randomBattleLevel: 86,
|
|
6727
|
-
randomDoubleBattleMoves: ["dazzlinggleam", "decorate", "mysticalfire", "protect", "recover"],
|
|
6728
|
-
randomDoubleBattleLevel: 85,
|
|
6729
5006
|
isNonstandard: "Gigantamax",
|
|
6730
5007
|
tier: "AG",
|
|
6731
5008
|
doublesTier: "(DUber)",
|
|
6732
5009
|
natDexTier: "(Uber)",
|
|
6733
5010
|
},
|
|
6734
5011
|
falinks: {
|
|
6735
|
-
randomBattleMoves: ["closecombat", "noretreat", "poisonjab", "rockslide", "throatchop"],
|
|
6736
|
-
randomBattleLevel: 84,
|
|
6737
|
-
randomDoubleBattleMoves: ["closecombat", "noretreat", "poisonjab", "rockslide", "throatchop"],
|
|
6738
|
-
randomDoubleBattleLevel: 86,
|
|
6739
5012
|
tier: "(PU)",
|
|
6740
5013
|
doublesTier: "(DUU)",
|
|
6741
5014
|
natDexTier: "RU",
|
|
6742
5015
|
},
|
|
6743
5016
|
pincurchin: {
|
|
6744
|
-
randomBattleMoves: ["risingvoltage", "scald", "spikes", "suckerpunch", "toxicspikes"],
|
|
6745
|
-
randomBattleLevel: 88,
|
|
6746
|
-
randomDoubleBattleMoves: ["acupressure", "protect", "risingvoltage", "scald", "suckerpunch"],
|
|
6747
|
-
randomDoubleBattleLevel: 90,
|
|
6748
5017
|
tier: "(PU)",
|
|
6749
5018
|
doublesTier: "(DUU)",
|
|
6750
5019
|
natDexTier: "RU",
|
|
@@ -6753,55 +5022,31 @@ exports.FormatsData = {
|
|
|
6753
5022
|
tier: "LC",
|
|
6754
5023
|
},
|
|
6755
5024
|
frosmoth: {
|
|
6756
|
-
randomBattleMoves: ["bugbuzz", "gigadrain", "hurricane", "icebeam", "quiverdance"],
|
|
6757
|
-
randomBattleLevel: 82,
|
|
6758
|
-
randomDoubleBattleMoves: ["bugbuzz", "gigadrain", "hurricane", "icebeam", "protect", "quiverdance", "wideguard"],
|
|
6759
|
-
randomDoubleBattleLevel: 88,
|
|
6760
5025
|
tier: "PU",
|
|
6761
5026
|
doublesTier: "(DUU)",
|
|
6762
5027
|
natDexTier: "RU",
|
|
6763
5028
|
},
|
|
6764
5029
|
stonjourner: {
|
|
6765
|
-
randomBattleMoves: ["earthquake", "heatcrash", "rockpolish", "stealthrock", "stoneedge"],
|
|
6766
|
-
randomBattleLevel: 88,
|
|
6767
|
-
randomDoubleBattleMoves: ["bodypress", "heatcrash", "heavyslam", "protect", "rockpolish", "stoneedge"],
|
|
6768
|
-
randomDoubleBattleLevel: 88,
|
|
6769
5030
|
tier: "(PU)",
|
|
6770
5031
|
doublesTier: "(DUU)",
|
|
6771
5032
|
natDexTier: "RU",
|
|
6772
5033
|
},
|
|
6773
5034
|
eiscue: {
|
|
6774
|
-
randomBattleMoves: ["bellydrum", "iciclecrash", "liquidation", "substitute", "zenheadbutt"],
|
|
6775
|
-
randomBattleLevel: 82,
|
|
6776
|
-
randomDoubleBattleMoves: ["bellydrum", "iciclecrash", "liquidation", "protect"],
|
|
6777
|
-
randomDoubleBattleLevel: 86,
|
|
6778
5035
|
tier: "(PU)",
|
|
6779
5036
|
doublesTier: "(DUU)",
|
|
6780
5037
|
natDexTier: "RU",
|
|
6781
5038
|
},
|
|
6782
5039
|
indeedee: {
|
|
6783
|
-
randomBattleMoves: ["calmmind", "expandingforce", "hypervoice", "mysticalfire", "trick"],
|
|
6784
|
-
randomBattleLevel: 83,
|
|
6785
|
-
randomDoubleBattleMoves: ["encore", "expandingforce", "hypervoice", "mysticalfire", "protect", "trick"],
|
|
6786
|
-
randomDoubleBattleLevel: 80,
|
|
6787
5040
|
tier: "NUBL",
|
|
6788
5041
|
doublesTier: "DUU",
|
|
6789
5042
|
natDexTier: "RU",
|
|
6790
5043
|
},
|
|
6791
5044
|
indeedeef: {
|
|
6792
|
-
randomBattleMoves: ["calmmind", "expandingforce", "healingwish", "hypervoice", "mysticalfire"],
|
|
6793
|
-
randomBattleLevel: 85,
|
|
6794
|
-
randomDoubleBattleMoves: ["expandingforce", "followme", "healpulse", "helpinghand", "protect"],
|
|
6795
|
-
randomDoubleBattleLevel: 80,
|
|
6796
5045
|
tier: "NUBL",
|
|
6797
5046
|
doublesTier: "DOU",
|
|
6798
5047
|
natDexTier: "RU",
|
|
6799
5048
|
},
|
|
6800
5049
|
morpeko: {
|
|
6801
|
-
randomBattleMoves: ["aurawheel", "foulplay", "partingshot", "protect", "psychicfangs", "rapidspin"],
|
|
6802
|
-
randomBattleLevel: 86,
|
|
6803
|
-
randomDoubleBattleMoves: ["aurawheel", "fakeout", "partingshot", "protect", "rapidspin", "superfang"],
|
|
6804
|
-
randomDoubleBattleLevel: 88,
|
|
6805
5050
|
tier: "(PU)",
|
|
6806
5051
|
doublesTier: "(DUU)",
|
|
6807
5052
|
natDexTier: "RU",
|
|
@@ -6815,64 +5060,37 @@ exports.FormatsData = {
|
|
|
6815
5060
|
tier: "LC",
|
|
6816
5061
|
},
|
|
6817
5062
|
copperajah: {
|
|
6818
|
-
randomBattleMoves: ["earthquake", "ironhead", "playrough", "rockslide", "stealthrock"],
|
|
6819
|
-
randomBattleLevel: 84,
|
|
6820
|
-
randomDoubleBattleMoves: ["heatcrash", "highhorsepower", "ironhead", "playrough", "powerwhip", "protect", "stoneedge"],
|
|
6821
|
-
randomDoubleBattleLevel: 88,
|
|
6822
5063
|
tier: "NU",
|
|
6823
5064
|
doublesTier: "(DUU)",
|
|
6824
5065
|
natDexTier: "RU",
|
|
6825
5066
|
},
|
|
6826
5067
|
copperajahgmax: {
|
|
6827
|
-
randomBattleMoves: ["earthquake", "heatcrash", "heavyslam", "powerwhip", "stoneedge"],
|
|
6828
|
-
randomBattleLevel: 84,
|
|
6829
5068
|
isNonstandard: "Gigantamax",
|
|
6830
5069
|
tier: "AG",
|
|
6831
5070
|
doublesTier: "(DUber)",
|
|
6832
5071
|
natDexTier: "(Uber)",
|
|
6833
5072
|
},
|
|
6834
5073
|
dracozolt: {
|
|
6835
|
-
randomBattleMoves: ["aerialace", "boltbeak", "earthquake", "lowkick", "outrage"],
|
|
6836
|
-
randomBattleLevel: 78,
|
|
6837
|
-
randomDoubleBattleMoves: ["aerialace", "boltbeak", "dragonclaw", "highhorsepower", "rockslide"],
|
|
6838
|
-
randomDoubleBattleLevel: 82,
|
|
6839
|
-
randomBattleNoDynamaxMoves: ["boltbeak", "dragonclaw", "earthquake", "outrage"],
|
|
6840
5074
|
tier: "UUBL",
|
|
6841
5075
|
doublesTier: "DUU",
|
|
6842
5076
|
natDexTier: "RUBL",
|
|
6843
5077
|
},
|
|
6844
5078
|
arctozolt: {
|
|
6845
|
-
randomBattleMoves: ["boltbeak", "freezedry", "iciclecrash", "stompingtantrum", "thunderwave"],
|
|
6846
|
-
randomBattleLevel: 86,
|
|
6847
|
-
randomDoubleBattleMoves: ["blizzard", "boltbeak", "iciclecrash", "lowkick", "protect"],
|
|
6848
|
-
randomDoubleBattleLevel: 88,
|
|
6849
5079
|
tier: "UUBL",
|
|
6850
5080
|
doublesTier: "(DUU)",
|
|
6851
5081
|
natDexTier: "RU",
|
|
6852
5082
|
},
|
|
6853
5083
|
dracovish: {
|
|
6854
|
-
randomBattleMoves: ["crunch", "fishiousrend", "icefang", "lowkick", "psychicfangs"],
|
|
6855
|
-
randomBattleLevel: 80,
|
|
6856
|
-
randomDoubleBattleMoves: ["crunch", "dragonrush", "fishiousrend", "icefang", "psychicfangs"],
|
|
6857
|
-
randomDoubleBattleLevel: 78,
|
|
6858
5084
|
tier: "Uber",
|
|
6859
5085
|
doublesTier: "DOU",
|
|
6860
5086
|
natDexTier: "Uber",
|
|
6861
5087
|
},
|
|
6862
5088
|
arctovish: {
|
|
6863
|
-
randomBattleMoves: ["bodyslam", "fishiousrend", "freezedry", "iciclecrash", "psychicfangs"],
|
|
6864
|
-
randomBattleLevel: 86,
|
|
6865
|
-
randomDoubleBattleMoves: ["blizzard", "fishiousrend", "iciclecrash", "protect", "superfang"],
|
|
6866
|
-
randomDoubleBattleLevel: 88,
|
|
6867
5089
|
tier: "(PU)",
|
|
6868
5090
|
doublesTier: "(DUU)",
|
|
6869
5091
|
natDexTier: "RU",
|
|
6870
5092
|
},
|
|
6871
5093
|
duraludon: {
|
|
6872
|
-
randomBattleMoves: ["bodypress", "dracometeor", "flashcannon", "stealthrock", "thunderbolt"],
|
|
6873
|
-
randomBattleLevel: 84,
|
|
6874
|
-
randomDoubleBattleMoves: ["bodypress", "dracometeor", "dragonpulse", "flashcannon", "protect", "snarl", "thunderbolt"],
|
|
6875
|
-
randomDoubleBattleLevel: 87,
|
|
6876
5094
|
tier: "PUBL",
|
|
6877
5095
|
doublesTier: "(DUU)",
|
|
6878
5096
|
natDexTier: "RU",
|
|
@@ -6890,55 +5108,31 @@ exports.FormatsData = {
|
|
|
6890
5108
|
tier: "NFE",
|
|
6891
5109
|
},
|
|
6892
5110
|
dragapult: {
|
|
6893
|
-
randomBattleMoves: ["dracometeor", "fireblast", "shadowball", "thunderbolt", "uturn"],
|
|
6894
|
-
randomBattleLevel: 78,
|
|
6895
|
-
randomDoubleBattleMoves: ["dragondarts", "fireblast", "protect", "shadowball", "thunderbolt", "thunderwave"],
|
|
6896
|
-
randomDoubleBattleLevel: 80,
|
|
6897
5111
|
tier: "OU",
|
|
6898
5112
|
doublesTier: "DOU",
|
|
6899
5113
|
natDexTier: "Uber",
|
|
6900
5114
|
},
|
|
6901
5115
|
zacian: {
|
|
6902
|
-
randomBattleMoves: ["closecombat", "crunch", "playrough", "psychicfangs", "swordsdance"],
|
|
6903
|
-
randomBattleLevel: 68,
|
|
6904
|
-
randomDoubleBattleMoves: ["closecombat", "crunch", "playrough", "protect", "psychicfangs", "swordsdance"],
|
|
6905
|
-
randomDoubleBattleLevel: 72,
|
|
6906
5116
|
tier: "AG",
|
|
6907
5117
|
doublesTier: "DUber",
|
|
6908
5118
|
natDexTier: "Uber",
|
|
6909
5119
|
},
|
|
6910
5120
|
zaciancrowned: {
|
|
6911
|
-
randomBattleMoves: ["behemothblade", "closecombat", "crunch", "playrough", "psychicfangs", "swordsdance"],
|
|
6912
|
-
randomBattleLevel: 62,
|
|
6913
|
-
randomDoubleBattleMoves: ["behemothblade", "closecombat", "playrough", "protect", "psychicfangs", "swordsdance"],
|
|
6914
|
-
randomDoubleBattleLevel: 65,
|
|
6915
5121
|
tier: "AG",
|
|
6916
5122
|
doublesTier: "DUber",
|
|
6917
5123
|
natDexTier: "Uber",
|
|
6918
5124
|
},
|
|
6919
5125
|
zamazenta: {
|
|
6920
|
-
randomBattleMoves: ["closecombat", "crunch", "psychicfangs", "wildcharge"],
|
|
6921
|
-
randomBattleLevel: 73,
|
|
6922
|
-
randomDoubleBattleMoves: ["closecombat", "crunch", "playrough", "protect", "psychicfangs"],
|
|
6923
|
-
randomDoubleBattleLevel: 74,
|
|
6924
5126
|
tier: "Uber",
|
|
6925
5127
|
doublesTier: "DUber",
|
|
6926
5128
|
natDexTier: "Uber",
|
|
6927
5129
|
},
|
|
6928
5130
|
zamazentacrowned: {
|
|
6929
|
-
randomBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "psychicfangs"],
|
|
6930
|
-
randomBattleLevel: 71,
|
|
6931
|
-
randomDoubleBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "protect"],
|
|
6932
|
-
randomDoubleBattleLevel: 72,
|
|
6933
5131
|
tier: "Uber",
|
|
6934
5132
|
doublesTier: "DUber",
|
|
6935
5133
|
natDexTier: "Uber",
|
|
6936
5134
|
},
|
|
6937
5135
|
eternatus: {
|
|
6938
|
-
randomBattleMoves: ["dynamaxcannon", "flamethrower", "recover", "sludgewave", "toxic"],
|
|
6939
|
-
randomBattleLevel: 69,
|
|
6940
|
-
randomDoubleBattleMoves: ["cosmicpower", "dynamaxcannon", "flamethrower", "recover"],
|
|
6941
|
-
randomDoubleBattleLevel: 72,
|
|
6942
5136
|
tier: "Uber",
|
|
6943
5137
|
doublesTier: "DUber",
|
|
6944
5138
|
natDexTier: "Uber",
|
|
@@ -6951,114 +5145,64 @@ exports.FormatsData = {
|
|
|
6951
5145
|
tier: "NFE",
|
|
6952
5146
|
},
|
|
6953
5147
|
urshifu: {
|
|
6954
|
-
randomBattleMoves: ["closecombat", "ironhead", "suckerpunch", "uturn", "wickedblow"],
|
|
6955
|
-
randomBattleLevel: 76,
|
|
6956
|
-
randomDoubleBattleMoves: ["closecombat", "ironhead", "protect", "suckerpunch", "wickedblow"],
|
|
6957
|
-
randomDoubleBattleLevel: 76,
|
|
6958
5148
|
tier: "Uber",
|
|
6959
5149
|
doublesTier: "DUber",
|
|
6960
5150
|
natDexTier: "Uber",
|
|
6961
5151
|
},
|
|
6962
5152
|
urshifurapidstrike: {
|
|
6963
|
-
randomBattleMoves: ["bulkup", "drainpunch", "substitute", "surgingstrikes"],
|
|
6964
|
-
randomBattleLevel: 78,
|
|
6965
|
-
randomDoubleBattleMoves: ["aquajet", "closecombat", "icepunch", "protect", "surgingstrikes", "uturn"],
|
|
6966
|
-
randomDoubleBattleLevel: 80,
|
|
6967
5153
|
tier: "OU",
|
|
6968
5154
|
doublesTier: "DOU",
|
|
6969
5155
|
natDexTier: "UU",
|
|
6970
5156
|
},
|
|
6971
5157
|
urshifugmax: {
|
|
6972
|
-
randomBattleMoves: ["bulkup", "drainpunch", "substitute", "wickedblow"],
|
|
6973
|
-
randomBattleLevel: 76,
|
|
6974
5158
|
isNonstandard: "Gigantamax",
|
|
6975
5159
|
tier: "AG",
|
|
6976
5160
|
doublesTier: "(DUber)",
|
|
6977
5161
|
natDexTier: "(Uber)",
|
|
6978
5162
|
},
|
|
6979
5163
|
urshifurapidstrikegmax: {
|
|
6980
|
-
randomBattleMoves: ["bulkup", "closecombat", "icepunch", "surgingstrikes", "uturn"],
|
|
6981
|
-
randomBattleLevel: 78,
|
|
6982
5164
|
isNonstandard: "Gigantamax",
|
|
6983
5165
|
tier: "AG",
|
|
6984
5166
|
doublesTier: "(DUber)",
|
|
6985
5167
|
natDexTier: "(Uber)",
|
|
6986
5168
|
},
|
|
6987
5169
|
zarude: {
|
|
6988
|
-
randomBattleMoves: ["bulkup", "closecombat", "darkestlariat", "junglehealing", "powerwhip", "uturn"],
|
|
6989
|
-
randomBattleLevel: 78,
|
|
6990
|
-
randomDoubleBattleMoves: ["closecombat", "darkestlariat", "junglehealing", "powerwhip", "protect"],
|
|
6991
|
-
randomDoubleBattleLevel: 80,
|
|
6992
5170
|
tier: "UU",
|
|
6993
5171
|
doublesTier: "(DUU)",
|
|
6994
5172
|
natDexTier: "RU",
|
|
6995
5173
|
},
|
|
6996
|
-
zarudedada: {
|
|
6997
|
-
randomBattleMoves: ["bulkup", "closecombat", "darkestlariat", "junglehealing", "powerwhip", "uturn"],
|
|
6998
|
-
randomBattleLevel: 78,
|
|
6999
|
-
randomDoubleBattleMoves: ["closecombat", "darkestlariat", "junglehealing", "powerwhip", "protect"],
|
|
7000
|
-
randomDoubleBattleLevel: 80,
|
|
7001
|
-
},
|
|
5174
|
+
zarudedada: {},
|
|
7002
5175
|
regieleki: {
|
|
7003
|
-
randomBattleMoves: ["explosion", "substitute", "thunderbolt", "voltswitch"],
|
|
7004
|
-
randomBattleLevel: 78,
|
|
7005
|
-
randomDoubleBattleMoves: ["electroweb", "extremespeed", "protect", "thundercage", "voltswitch"],
|
|
7006
|
-
randomDoubleBattleLevel: 82,
|
|
7007
|
-
randomBattleNoDynamaxMoves: ["explosion", "rapidspin", "thunderbolt", "voltswitch"],
|
|
7008
5176
|
tier: "UU",
|
|
7009
5177
|
doublesTier: "DOU",
|
|
7010
5178
|
natDexTier: "UU",
|
|
7011
5179
|
},
|
|
7012
5180
|
regidrago: {
|
|
7013
|
-
randomBattleMoves: ["dracometeor", "dragondance", "firefang", "hammerarm", "outrage"],
|
|
7014
|
-
randomBattleLevel: 78,
|
|
7015
|
-
randomDoubleBattleMoves: ["crunch", "dragonclaw", "dragonenergy", "firefang"],
|
|
7016
|
-
randomDoubleBattleLevel: 78,
|
|
7017
5181
|
tier: "NUBL",
|
|
7018
5182
|
doublesTier: "(DUU)",
|
|
7019
5183
|
natDexTier: "RU",
|
|
7020
5184
|
},
|
|
7021
5185
|
glastrier: {
|
|
7022
|
-
randomBattleMoves: ["closecombat", "highhorsepower", "iciclecrash", "swordsdance"],
|
|
7023
|
-
randomBattleLevel: 82,
|
|
7024
|
-
randomDoubleBattleMoves: ["closecombat", "highhorsepower", "iciclecrash", "protect"],
|
|
7025
|
-
randomDoubleBattleLevel: 82,
|
|
7026
5186
|
tier: "(PU)",
|
|
7027
5187
|
doublesTier: "(DUU)",
|
|
7028
5188
|
natDexTier: "RU",
|
|
7029
5189
|
},
|
|
7030
5190
|
spectrier: {
|
|
7031
|
-
randomBattleMoves: ["darkpulse", "nastyplot", "shadowball", "substitute"],
|
|
7032
|
-
randomBattleLevel: 74,
|
|
7033
|
-
randomDoubleBattleMoves: ["darkpulse", "nastyplot", "protect", "shadowball"],
|
|
7034
|
-
randomDoubleBattleLevel: 78,
|
|
7035
5191
|
tier: "Uber",
|
|
7036
5192
|
doublesTier: "DUU",
|
|
7037
5193
|
natDexTier: "Uber",
|
|
7038
5194
|
},
|
|
7039
5195
|
calyrex: {
|
|
7040
|
-
randomBattleMoves: ["calmmind", "gigadrain", "leechseed", "psyshock", "substitute"],
|
|
7041
|
-
randomBattleLevel: 88,
|
|
7042
|
-
randomDoubleBattleMoves: ["helpinghand", "leafstorm", "pollenpuff", "protect"],
|
|
7043
|
-
randomDoubleBattleLevel: 94,
|
|
7044
5196
|
tier: "(PU)",
|
|
7045
5197
|
doublesTier: "(DUU)",
|
|
7046
5198
|
natDexTier: "RU",
|
|
7047
5199
|
},
|
|
7048
5200
|
calyrexice: {
|
|
7049
|
-
randomBattleMoves: ["agility", "closecombat", "glaciallance", "highhorsepower", "trickroom"],
|
|
7050
|
-
randomBattleLevel: 72,
|
|
7051
|
-
randomDoubleBattleMoves: ["closecombat", "glaciallance", "highhorsepower", "swordsdance", "trickroom"],
|
|
7052
|
-
randomDoubleBattleLevel: 72,
|
|
7053
5201
|
tier: "Uber",
|
|
7054
5202
|
doublesTier: "DUber",
|
|
7055
5203
|
natDexTier: "Uber",
|
|
7056
5204
|
},
|
|
7057
5205
|
calyrexshadow: {
|
|
7058
|
-
randomBattleMoves: ["astralbarrage", "nastyplot", "pollenpuff", "psyshock", "substitute", "trick"],
|
|
7059
|
-
randomBattleLevel: 65,
|
|
7060
|
-
randomDoubleBattleMoves: ["astralbarrage", "nastyplot", "pollenpuff", "protect", "psyshock"],
|
|
7061
|
-
randomDoubleBattleLevel: 68,
|
|
7062
5206
|
tier: "Uber",
|
|
7063
5207
|
doublesTier: "DUber",
|
|
7064
5208
|
natDexTier: "Uber",
|