@pkmn/sim 0.5.2 → 0.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/config/formats.js +410 -311
- package/build/config/formats.js.map +1 -1
- package/build/data/aliases.js +4 -4
- package/build/data/aliases.js.map +1 -1
- package/build/data/formats-data.js +205 -93
- package/build/data/formats-data.js.map +1 -1
- package/build/data/learnsets.js +1 -1
- package/build/data/learnsets.js.map +1 -1
- package/build/data/mods/gen1/formats-data.js +190 -190
- package/build/data/mods/gen1/formats-data.js.map +1 -1
- package/build/data/mods/gen1/moves.js +1 -2
- package/build/data/mods/gen1/moves.js.map +1 -1
- package/build/data/mods/gen1/scripts.js +12 -0
- package/build/data/mods/gen1/scripts.js.map +1 -1
- package/build/data/mods/gen2/formats-data.js +1 -1
- package/build/data/mods/gen2/formats-data.js.map +1 -1
- package/build/data/mods/gen3/formats-data.js +13 -13
- package/build/data/mods/gen3/formats-data.js.map +1 -1
- package/build/data/mods/gen4/moves.js +22 -0
- package/build/data/mods/gen4/moves.js.map +1 -1
- package/build/data/mods/gen5/formats-data.js +173 -156
- package/build/data/mods/gen5/formats-data.js.map +1 -1
- package/build/data/mods/gen6/formats-data.js +4 -3
- package/build/data/mods/gen6/formats-data.js.map +1 -1
- package/build/data/mods/gen7/formats-data.js +3 -2
- package/build/data/mods/gen7/formats-data.js.map +1 -1
- package/build/data/mods/gen7/moves.js +154 -0
- package/build/data/mods/gen7/moves.js.map +1 -1
- package/build/data/moves.js +44 -19
- package/build/data/moves.js.map +1 -1
- package/build/data/pokedex.js +480 -11
- package/build/data/pokedex.js.map +1 -1
- package/build/data/rulesets.js +12 -1
- package/build/data/rulesets.js.map +1 -1
- package/build/data/tags.d.ts +1 -0
- package/build/data/tags.js +4 -3
- package/build/data/tags.js.map +1 -1
- package/build/data/text/abilities.js +4 -4
- package/build/data/text/abilities.js.map +1 -1
- package/build/data/text/moves.js +18 -18
- package/build/data/text/moves.js.map +1 -1
- package/build/sim/battle-actions.js +12 -4
- package/build/sim/battle-actions.js.map +1 -1
- package/build/sim/battle.js +23 -22
- package/build/sim/battle.js.map +1 -1
- package/build/sim/dex-formats.d.ts +1 -0
- package/build/sim/dex-formats.js +3 -2
- package/build/sim/dex-formats.js.map +1 -1
- package/build/sim/dex-species.js +5 -2
- package/build/sim/dex-species.js.map +1 -1
- package/build/sim/exported-global-types.d.ts +2 -0
- package/build/sim/global-types.d.ts +2 -0
- package/build/sim/index.d.ts +1 -0
- package/build/sim/index.js +3 -1
- package/build/sim/index.js.map +1 -1
- package/build/sim/team-validator.js +13 -0
- package/build/sim/team-validator.js.map +1 -1
- package/config/formats.ts +418 -316
- package/data/aliases.ts +4 -4
- package/data/formats-data.ts +205 -93
- package/data/learnsets.ts +1 -1
- package/data/mods/gen1/formats-data.ts +190 -190
- package/data/mods/gen1/moves.ts +1 -2
- package/data/mods/gen1/scripts.ts +11 -0
- package/data/mods/gen2/formats-data.ts +1 -1
- package/data/mods/gen3/formats-data.ts +13 -13
- package/data/mods/gen4/moves.ts +21 -0
- package/data/mods/gen5/formats-data.ts +173 -156
- package/data/mods/gen6/formats-data.ts +4 -3
- package/data/mods/gen7/formats-data.ts +3 -2
- package/data/mods/gen7/moves.ts +150 -0
- package/data/moves.ts +43 -19
- package/data/pokedex.ts +480 -11
- package/data/rulesets.ts +11 -1
- package/data/tags.ts +6 -3
- package/data/text/abilities.ts +4 -4
- package/data/text/moves.ts +18 -18
- package/package.json +2 -2
- package/sim/battle-actions.ts +12 -4
- package/sim/battle.ts +24 -23
- package/sim/dex-formats.ts +4 -1
- package/sim/dex-species.ts +5 -2
- package/sim/exported-global-types.ts +2 -0
- package/sim/global-types.ts +2 -0
- package/sim/index.ts +1 -0
- package/sim/team-validator.ts +12 -0
|
@@ -11,7 +11,7 @@ exports.FormatsData = {
|
|
|
11
11
|
venusaur: {
|
|
12
12
|
randomBattleMoves: ["gigadrain", "leechseed", "sleeppowder", "sludgebomb", "substitute"],
|
|
13
13
|
randomBattleLevel: 82,
|
|
14
|
-
tier: "
|
|
14
|
+
tier: "UU",
|
|
15
15
|
doublesTier: "(DUU)",
|
|
16
16
|
},
|
|
17
17
|
venusaurmega: {
|
|
@@ -273,10 +273,11 @@ exports.FormatsData = {
|
|
|
273
273
|
tier: "LC",
|
|
274
274
|
},
|
|
275
275
|
sandshrewalola: {
|
|
276
|
-
tier: "
|
|
276
|
+
tier: "NUBL",
|
|
277
|
+
doublesTier: "LC",
|
|
277
278
|
},
|
|
278
279
|
sandslash: {
|
|
279
|
-
randomBattleMoves: ["earthquake", "knockoff", "rapidspin", "
|
|
280
|
+
randomBattleMoves: ["earthquake", "knockoff", "rapidspin", "spikes", "stealthrock", "stoneedge", "swordsdance", "toxic"],
|
|
280
281
|
randomBattleLevel: 86,
|
|
281
282
|
randomDoubleBattleMoves: ["drillrun", "knockoff", "protect", "stealthrock", "stoneedge", "swordsdance"],
|
|
282
283
|
randomDoubleBattleLevel: 89,
|
|
@@ -288,7 +289,7 @@ exports.FormatsData = {
|
|
|
288
289
|
randomBattleLevel: 86,
|
|
289
290
|
randomDoubleBattleMoves: ["drillrun", "ironhead", "protect", "swordsdance", "tripleaxel"],
|
|
290
291
|
randomDoubleBattleLevel: 90,
|
|
291
|
-
tier: "
|
|
292
|
+
tier: "NUBL",
|
|
292
293
|
doublesTier: "(DUU)",
|
|
293
294
|
},
|
|
294
295
|
nidoranf: {
|
|
@@ -356,7 +357,7 @@ exports.FormatsData = {
|
|
|
356
357
|
randomDoubleBattleMoves: ["auroraveil", "blizzard", "encore", "freezedry", "moonblast"],
|
|
357
358
|
randomDoubleBattleLevel: 81,
|
|
358
359
|
tier: "OU",
|
|
359
|
-
doublesTier: "
|
|
360
|
+
doublesTier: "DOU",
|
|
360
361
|
},
|
|
361
362
|
igglybuff: {
|
|
362
363
|
tier: "LC",
|
|
@@ -493,7 +494,7 @@ exports.FormatsData = {
|
|
|
493
494
|
randomDoubleBattleMoves: ["calmmind", "encore", "icebeam", "muddywater", "protect"],
|
|
494
495
|
randomDoubleBattleLevel: 88,
|
|
495
496
|
tier: "(PU)",
|
|
496
|
-
doublesTier: "
|
|
497
|
+
doublesTier: "DUU",
|
|
497
498
|
},
|
|
498
499
|
mankey: {
|
|
499
500
|
isNonstandard: "Past",
|
|
@@ -506,6 +507,10 @@ exports.FormatsData = {
|
|
|
506
507
|
growlithe: {
|
|
507
508
|
tier: "LC",
|
|
508
509
|
},
|
|
510
|
+
growlithehisui: {
|
|
511
|
+
isNonstandard: "Future",
|
|
512
|
+
tier: "Illegal",
|
|
513
|
+
},
|
|
509
514
|
arcanine: {
|
|
510
515
|
randomBattleMoves: ["closecombat", "extremespeed", "flareblitz", "morningsun", "toxic", "wildcharge", "willowisp"],
|
|
511
516
|
randomBattleLevel: 82,
|
|
@@ -514,6 +519,10 @@ exports.FormatsData = {
|
|
|
514
519
|
tier: "NU",
|
|
515
520
|
doublesTier: "DUU",
|
|
516
521
|
},
|
|
522
|
+
arcaninehisui: {
|
|
523
|
+
isNonstandard: "Future",
|
|
524
|
+
tier: "Illegal",
|
|
525
|
+
},
|
|
517
526
|
poliwag: {
|
|
518
527
|
tier: "LC",
|
|
519
528
|
},
|
|
@@ -533,7 +542,7 @@ exports.FormatsData = {
|
|
|
533
542
|
randomBattleLevel: 86,
|
|
534
543
|
randomDoubleBattleMoves: ["earthpower", "helpinghand", "icywind", "muddywater", "protect"],
|
|
535
544
|
randomDoubleBattleLevel: 84,
|
|
536
|
-
tier: "
|
|
545
|
+
tier: "(PU)",
|
|
537
546
|
doublesTier: "DUU",
|
|
538
547
|
},
|
|
539
548
|
abra: {
|
|
@@ -592,7 +601,7 @@ exports.FormatsData = {
|
|
|
592
601
|
randomBattleMoves: ["haze", "knockoff", "rapidspin", "scald", "sludgebomb", "toxicspikes"],
|
|
593
602
|
randomBattleLevel: 84,
|
|
594
603
|
randomDoubleBattleMoves: ["acidspray", "icywind", "knockoff", "muddywater", "rapidspin", "sludgebomb"],
|
|
595
|
-
randomDoubleBattleLevel:
|
|
604
|
+
randomDoubleBattleLevel: 87,
|
|
596
605
|
tier: "UU",
|
|
597
606
|
doublesTier: "(DUU)",
|
|
598
607
|
},
|
|
@@ -665,7 +674,7 @@ exports.FormatsData = {
|
|
|
665
674
|
randomBattleLevel: 86,
|
|
666
675
|
randomDoubleBattleMoves: ["fireblast", "healpulse", "protect", "psychic", "shellsidearm", "trickroom"],
|
|
667
676
|
randomDoubleBattleLevel: 85,
|
|
668
|
-
tier: "
|
|
677
|
+
tier: "RUBL",
|
|
669
678
|
doublesTier: "(DUU)",
|
|
670
679
|
},
|
|
671
680
|
slowking: {
|
|
@@ -693,7 +702,7 @@ exports.FormatsData = {
|
|
|
693
702
|
magnezone: {
|
|
694
703
|
randomBattleMoves: ["bodypress", "flashcannon", "mirrorcoat", "thunderbolt", "voltswitch"],
|
|
695
704
|
randomBattleLevel: 84,
|
|
696
|
-
randomDoubleBattleMoves: ["
|
|
705
|
+
randomDoubleBattleMoves: ["bodypress", "electroweb", "flashcannon", "protect", "thunderbolt", "voltswitch"],
|
|
697
706
|
randomDoubleBattleLevel: 88,
|
|
698
707
|
tier: "OU",
|
|
699
708
|
doublesTier: "(DUU)",
|
|
@@ -833,10 +842,18 @@ exports.FormatsData = {
|
|
|
833
842
|
isNonstandard: "Past",
|
|
834
843
|
tier: "Illegal",
|
|
835
844
|
},
|
|
845
|
+
voltorbhisui: {
|
|
846
|
+
isNonstandard: "Future",
|
|
847
|
+
tier: "Illegal",
|
|
848
|
+
},
|
|
836
849
|
electrode: {
|
|
837
850
|
isNonstandard: "Past",
|
|
838
851
|
tier: "Illegal",
|
|
839
852
|
},
|
|
853
|
+
electrodehisui: {
|
|
854
|
+
isNonstandard: "Future",
|
|
855
|
+
tier: "Illegal",
|
|
856
|
+
},
|
|
840
857
|
exeggcute: {
|
|
841
858
|
tier: "LC",
|
|
842
859
|
},
|
|
@@ -871,7 +888,7 @@ exports.FormatsData = {
|
|
|
871
888
|
randomBattleMoves: ["earthquake", "flamecharge", "flareblitz", "poltergeist", "stealthrock", "stoneedge"],
|
|
872
889
|
randomBattleLevel: 84,
|
|
873
890
|
randomDoubleBattleMoves: ["bonemerang", "flamecharge", "flareblitz", "protect", "shadowbone"],
|
|
874
|
-
randomDoubleBattleLevel:
|
|
891
|
+
randomDoubleBattleLevel: 83,
|
|
875
892
|
tier: "RU",
|
|
876
893
|
doublesTier: "(DUU)",
|
|
877
894
|
},
|
|
@@ -932,7 +949,7 @@ exports.FormatsData = {
|
|
|
932
949
|
randomBattleMoves: ["defog", "fireblast", "painsplit", "sludgebomb", "strangesteam", "toxicspikes", "willowisp"],
|
|
933
950
|
randomBattleLevel: 86,
|
|
934
951
|
randomDoubleBattleMoves: ["clearsmog", "defog", "fireblast", "painsplit", "strangesteam", "toxicspikes", "willowisp"],
|
|
935
|
-
randomDoubleBattleLevel:
|
|
952
|
+
randomDoubleBattleLevel: 89,
|
|
936
953
|
tier: "RU",
|
|
937
954
|
doublesTier: "DUU",
|
|
938
955
|
},
|
|
@@ -949,7 +966,7 @@ exports.FormatsData = {
|
|
|
949
966
|
randomBattleLevel: 82,
|
|
950
967
|
randomDoubleBattleMoves: ["highhorsepower", "icepunch", "megahorn", "protect", "rockslide", "stoneedge"],
|
|
951
968
|
randomDoubleBattleLevel: 84,
|
|
952
|
-
tier: "
|
|
969
|
+
tier: "RU",
|
|
953
970
|
doublesTier: "(DUU)",
|
|
954
971
|
},
|
|
955
972
|
happiny: {
|
|
@@ -1005,7 +1022,7 @@ exports.FormatsData = {
|
|
|
1005
1022
|
randomDoubleBattleLevel: 82,
|
|
1006
1023
|
randomBattleNoDynamaxMoves: ["dracometeor", "flipturn", "hydropump", "icebeam", "raindance"],
|
|
1007
1024
|
tier: "PUBL",
|
|
1008
|
-
doublesTier: "
|
|
1025
|
+
doublesTier: "DUU",
|
|
1009
1026
|
},
|
|
1010
1027
|
goldeen: {
|
|
1011
1028
|
tier: "LC",
|
|
@@ -1022,7 +1039,7 @@ exports.FormatsData = {
|
|
|
1022
1039
|
tier: "LC",
|
|
1023
1040
|
},
|
|
1024
1041
|
starmie: {
|
|
1025
|
-
randomBattleMoves: ["hydropump", "psyshock", "rapidspin", "recover", "scald", "thunderbolt"
|
|
1042
|
+
randomBattleMoves: ["hydropump", "icebeam", "psyshock", "rapidspin", "recover", "scald", "thunderbolt"],
|
|
1026
1043
|
randomBattleLevel: 84,
|
|
1027
1044
|
randomDoubleBattleMoves: ["flipturn", "hydropump", "icebeam", "protect", "psyshock", "thunderbolt"],
|
|
1028
1045
|
randomDoubleBattleLevel: 84,
|
|
@@ -1212,7 +1229,7 @@ exports.FormatsData = {
|
|
|
1212
1229
|
randomBattleLevel: 82,
|
|
1213
1230
|
randomDoubleBattleMoves: ["calmmind", "dazzlinggleam", "morningsun", "protect", "psychic", "shadowball"],
|
|
1214
1231
|
randomDoubleBattleLevel: 84,
|
|
1215
|
-
tier: "
|
|
1232
|
+
tier: "PU",
|
|
1216
1233
|
doublesTier: "(DUU)",
|
|
1217
1234
|
},
|
|
1218
1235
|
umbreon: {
|
|
@@ -1245,7 +1262,7 @@ exports.FormatsData = {
|
|
|
1245
1262
|
randomDoubleBattleMoves: ["calmmind", "hypervoice", "mysticalfire", "protect", "psyshock"],
|
|
1246
1263
|
randomDoubleBattleLevel: 80,
|
|
1247
1264
|
tier: "NU",
|
|
1248
|
-
doublesTier: "DUU",
|
|
1265
|
+
doublesTier: "(DUU)",
|
|
1249
1266
|
},
|
|
1250
1267
|
porygon: {
|
|
1251
1268
|
tier: "LC",
|
|
@@ -1331,7 +1348,7 @@ exports.FormatsData = {
|
|
|
1331
1348
|
randomBattleMoves: ["airslash", "calmmind", "freezingglare", "recover"],
|
|
1332
1349
|
randomBattleLevel: 80,
|
|
1333
1350
|
randomDoubleBattleMoves: ["calmmind", "freezingglare", "hurricane", "recover", "tailwind"],
|
|
1334
|
-
randomDoubleBattleLevel:
|
|
1351
|
+
randomDoubleBattleLevel: 80,
|
|
1335
1352
|
randomBattleNoDynamaxMoves: ["calmmind", "freezingglare", "hurricane", "recover"],
|
|
1336
1353
|
tier: "PU",
|
|
1337
1354
|
doublesTier: "(DUU)",
|
|
@@ -1349,7 +1366,7 @@ exports.FormatsData = {
|
|
|
1349
1366
|
randomBattleLevel: 76,
|
|
1350
1367
|
randomDoubleBattleMoves: ["bravebird", "bulkup", "closecombat", "throatchop", "thunderouskick", "uturn"],
|
|
1351
1368
|
randomDoubleBattleLevel: 76,
|
|
1352
|
-
tier: "
|
|
1369
|
+
tier: "OU",
|
|
1353
1370
|
doublesTier: "DOU",
|
|
1354
1371
|
},
|
|
1355
1372
|
moltres: {
|
|
@@ -1365,7 +1382,7 @@ exports.FormatsData = {
|
|
|
1365
1382
|
randomBattleMoves: ["fierywrath", "hurricane", "nastyplot", "rest"],
|
|
1366
1383
|
randomBattleLevel: 75,
|
|
1367
1384
|
randomDoubleBattleMoves: ["fierywrath", "hurricane", "nastyplot", "protect"],
|
|
1368
|
-
randomDoubleBattleLevel:
|
|
1385
|
+
randomDoubleBattleLevel: 75,
|
|
1369
1386
|
randomBattleNoDynamaxMoves: ["agility", "fierywrath", "hurricane", "nastyplot", "rest"],
|
|
1370
1387
|
tier: "UU",
|
|
1371
1388
|
doublesTier: "DUU",
|
|
@@ -1434,6 +1451,10 @@ exports.FormatsData = {
|
|
|
1434
1451
|
isNonstandard: "Past",
|
|
1435
1452
|
tier: "Illegal",
|
|
1436
1453
|
},
|
|
1454
|
+
typhlosionhisui: {
|
|
1455
|
+
isNonstandard: "Future",
|
|
1456
|
+
tier: "Illegal",
|
|
1457
|
+
},
|
|
1437
1458
|
totodile: {
|
|
1438
1459
|
isNonstandard: "Past",
|
|
1439
1460
|
tier: "Illegal",
|
|
@@ -1458,7 +1479,7 @@ exports.FormatsData = {
|
|
|
1458
1479
|
tier: "LC",
|
|
1459
1480
|
},
|
|
1460
1481
|
noctowl: {
|
|
1461
|
-
randomBattleMoves: ["
|
|
1482
|
+
randomBattleMoves: ["defog", "heatwave", "hurricane", "nastyplot", "roost"],
|
|
1462
1483
|
randomBattleLevel: 88,
|
|
1463
1484
|
randomDoubleBattleMoves: ["airslash", "heatwave", "hypervoice", "nastyplot", "roost", "tailwind"],
|
|
1464
1485
|
randomDoubleBattleLevel: 84,
|
|
@@ -1512,7 +1533,7 @@ exports.FormatsData = {
|
|
|
1512
1533
|
},
|
|
1513
1534
|
xatu: {
|
|
1514
1535
|
randomBattleMoves: ["heatwave", "psychic", "roost", "teleport", "thunderwave"],
|
|
1515
|
-
randomBattleLevel:
|
|
1536
|
+
randomBattleLevel: 89,
|
|
1516
1537
|
randomDoubleBattleMoves: ["airslash", "heatwave", "lightscreen", "psychic", "reflect", "roost", "tailwind"],
|
|
1517
1538
|
randomDoubleBattleLevel: 88,
|
|
1518
1539
|
tier: "NU",
|
|
@@ -1546,7 +1567,7 @@ exports.FormatsData = {
|
|
|
1546
1567
|
randomDoubleBattleMoves: ["aquajet", "knockoff", "liquidation", "playrough", "protect"],
|
|
1547
1568
|
randomDoubleBattleLevel: 87,
|
|
1548
1569
|
tier: "UU",
|
|
1549
|
-
doublesTier: "
|
|
1570
|
+
doublesTier: "DUU",
|
|
1550
1571
|
},
|
|
1551
1572
|
bonsly: {
|
|
1552
1573
|
tier: "LC",
|
|
@@ -1651,7 +1672,7 @@ exports.FormatsData = {
|
|
|
1651
1672
|
tier: "Illegal",
|
|
1652
1673
|
},
|
|
1653
1674
|
dunsparce: {
|
|
1654
|
-
randomBattleMoves: ["bodyslam", "coil", "
|
|
1675
|
+
randomBattleMoves: ["bodyslam", "coil", "earthquake", "roost"],
|
|
1655
1676
|
randomBattleLevel: 90,
|
|
1656
1677
|
randomDoubleBattleMoves: ["glare", "headbutt", "protect", "rockslide"],
|
|
1657
1678
|
randomDoubleBattleLevel: 90,
|
|
@@ -1682,6 +1703,10 @@ exports.FormatsData = {
|
|
|
1682
1703
|
tier: "(PU)",
|
|
1683
1704
|
doublesTier: "(DUU)",
|
|
1684
1705
|
},
|
|
1706
|
+
qwilfishhisui: {
|
|
1707
|
+
isNonstandard: "Future",
|
|
1708
|
+
tier: "Illegal",
|
|
1709
|
+
},
|
|
1685
1710
|
shuckle: {
|
|
1686
1711
|
randomBattleMoves: ["encore", "knockoff", "stealthrock", "stickyweb", "toxic"],
|
|
1687
1712
|
randomBattleLevel: 86,
|
|
@@ -1705,6 +1730,10 @@ exports.FormatsData = {
|
|
|
1705
1730
|
sneasel: {
|
|
1706
1731
|
tier: "NFE",
|
|
1707
1732
|
},
|
|
1733
|
+
sneaselhisui: {
|
|
1734
|
+
isNonstandard: "Future",
|
|
1735
|
+
tier: "Illegal",
|
|
1736
|
+
},
|
|
1708
1737
|
weavile: {
|
|
1709
1738
|
randomBattleMoves: ["iceshard", "knockoff", "lowkick", "swordsdance", "tripleaxel"],
|
|
1710
1739
|
randomBattleLevel: 79,
|
|
@@ -1847,7 +1876,7 @@ exports.FormatsData = {
|
|
|
1847
1876
|
doublesTier: "(DUU)",
|
|
1848
1877
|
},
|
|
1849
1878
|
entei: {
|
|
1850
|
-
randomBattleMoves: ["extremespeed", "flareblitz", "
|
|
1879
|
+
randomBattleMoves: ["extremespeed", "flareblitz", "sacredfire", "stompingtantrum", "stoneedge"],
|
|
1851
1880
|
randomBattleLevel: 78,
|
|
1852
1881
|
randomDoubleBattleMoves: ["extremespeed", "protect", "sacredfire", "snarl", "stompingtantrum", "stoneedge"],
|
|
1853
1882
|
randomDoubleBattleLevel: 79,
|
|
@@ -1930,7 +1959,7 @@ exports.FormatsData = {
|
|
|
1930
1959
|
tier: "NFE",
|
|
1931
1960
|
},
|
|
1932
1961
|
blaziken: {
|
|
1933
|
-
randomBattleMoves: ["closecombat", "flareblitz", "knockoff", "
|
|
1962
|
+
randomBattleMoves: ["closecombat", "flareblitz", "knockoff", "stoneedge", "swordsdance"],
|
|
1934
1963
|
randomBattleLevel: 76,
|
|
1935
1964
|
randomDoubleBattleMoves: ["closecombat", "flareblitz", "knockoff", "protect", "swordsdance"],
|
|
1936
1965
|
randomDoubleBattleLevel: 78,
|
|
@@ -1948,7 +1977,7 @@ exports.FormatsData = {
|
|
|
1948
1977
|
tier: "NFE",
|
|
1949
1978
|
},
|
|
1950
1979
|
swampert: {
|
|
1951
|
-
randomBattleMoves: ["earthquake", "icebeam", "protect", "scald", "stealthrock", "toxic"
|
|
1980
|
+
randomBattleMoves: ["earthquake", "flipturn", "icebeam", "protect", "scald", "stealthrock", "toxic"],
|
|
1952
1981
|
randomBattleLevel: 80,
|
|
1953
1982
|
randomDoubleBattleMoves: ["highhorsepower", "icywind", "muddywater", "protect", "stealthrock", "wideguard"],
|
|
1954
1983
|
randomDoubleBattleLevel: 86,
|
|
@@ -2083,7 +2112,7 @@ exports.FormatsData = {
|
|
|
2083
2112
|
randomBattleLevel: 82,
|
|
2084
2113
|
randomDoubleBattleMoves: ["closecombat", "feint", "knockoff", "protect", "swordsdance", "tripleaxel", "zenheadbutt"],
|
|
2085
2114
|
randomDoubleBattleLevel: 86,
|
|
2086
|
-
tier: "
|
|
2115
|
+
tier: "PU",
|
|
2087
2116
|
doublesTier: "(DUU)",
|
|
2088
2117
|
},
|
|
2089
2118
|
gallademega: {
|
|
@@ -2126,7 +2155,7 @@ exports.FormatsData = {
|
|
|
2126
2155
|
randomBattleLevel: 86,
|
|
2127
2156
|
randomDoubleBattleMoves: ["acrobatics", "defog", "leechlife", "protect", "swordsdance"],
|
|
2128
2157
|
randomDoubleBattleLevel: 88,
|
|
2129
|
-
tier: "
|
|
2158
|
+
tier: "PU",
|
|
2130
2159
|
doublesTier: "(DUU)",
|
|
2131
2160
|
},
|
|
2132
2161
|
shedinja: {
|
|
@@ -2303,7 +2332,7 @@ exports.FormatsData = {
|
|
|
2303
2332
|
},
|
|
2304
2333
|
wailord: {
|
|
2305
2334
|
randomBattleMoves: ["hydropump", "hypervoice", "icebeam", "waterspout"],
|
|
2306
|
-
randomBattleLevel:
|
|
2335
|
+
randomBattleLevel: 90,
|
|
2307
2336
|
randomDoubleBattleMoves: ["hydropump", "hypervoice", "icebeam", "waterspout"],
|
|
2308
2337
|
randomDoubleBattleLevel: 88,
|
|
2309
2338
|
tier: "(PU)",
|
|
@@ -2444,13 +2473,13 @@ exports.FormatsData = {
|
|
|
2444
2473
|
randomDoubleBattleMoves: ["powerwhip", "protect", "recover", "stealthrock", "stoneedge", "stringshot", "toxic"],
|
|
2445
2474
|
randomDoubleBattleLevel: 88,
|
|
2446
2475
|
tier: "(PU)",
|
|
2447
|
-
doublesTier: "DUU",
|
|
2476
|
+
doublesTier: "(DUU)",
|
|
2448
2477
|
},
|
|
2449
2478
|
anorith: {
|
|
2450
2479
|
tier: "LC",
|
|
2451
2480
|
},
|
|
2452
2481
|
armaldo: {
|
|
2453
|
-
randomBattleMoves: ["earthquake", "knockoff", "rapidspin", "stealthrock", "stoneedge", "swordsdance"
|
|
2482
|
+
randomBattleMoves: ["earthquake", "knockoff", "liquidation", "rapidspin", "stealthrock", "stoneedge", "swordsdance"],
|
|
2454
2483
|
randomBattleLevel: 86,
|
|
2455
2484
|
randomDoubleBattleMoves: ["knockoff", "liquidation", "stoneedge", "superpower", "xscissor"],
|
|
2456
2485
|
randomDoubleBattleLevel: 88,
|
|
@@ -2505,7 +2534,6 @@ exports.FormatsData = {
|
|
|
2505
2534
|
randomDoubleBattleMoves: ["allyswitch", "haze", "helpinghand", "nightshade", "painsplit", "trickroom", "willowisp"],
|
|
2506
2535
|
randomDoubleBattleLevel: 84,
|
|
2507
2536
|
tier: "NFE",
|
|
2508
|
-
doublesTier: "DUU",
|
|
2509
2537
|
},
|
|
2510
2538
|
dusknoir: {
|
|
2511
2539
|
randomBattleMoves: ["earthquake", "icepunch", "painsplit", "poltergeist", "shadowsneak", "trick", "willowisp"],
|
|
@@ -2673,7 +2701,7 @@ exports.FormatsData = {
|
|
|
2673
2701
|
tier: "Illegal",
|
|
2674
2702
|
},
|
|
2675
2703
|
latios: {
|
|
2676
|
-
randomBattleMoves: ["
|
|
2704
|
+
randomBattleMoves: ["calmmind", "dracometeor", "mysticalfire", "psyshock", "roost", "trick"],
|
|
2677
2705
|
randomBattleLevel: 78,
|
|
2678
2706
|
randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "mysticalfire", "psychic", "psyshock", "roost", "tailwind", "trick"],
|
|
2679
2707
|
randomDoubleBattleLevel: 80,
|
|
@@ -2697,11 +2725,11 @@ exports.FormatsData = {
|
|
|
2697
2725
|
tier: "Illegal",
|
|
2698
2726
|
},
|
|
2699
2727
|
groudon: {
|
|
2700
|
-
randomBattleMoves: ["
|
|
2728
|
+
randomBattleMoves: ["heatcrash", "heavyslam", "precipiceblades", "stealthrock", "stoneedge", "swordsdance", "thunderwave"],
|
|
2701
2729
|
randomBattleLevel: 73,
|
|
2702
2730
|
randomDoubleBattleMoves: ["heatcrash", "precipiceblades", "rockpolish", "stoneedge", "swordsdance"],
|
|
2703
2731
|
randomDoubleBattleLevel: 72,
|
|
2704
|
-
randomBattleNoDynamaxMoves: ["
|
|
2732
|
+
randomBattleNoDynamaxMoves: ["heatcrash", "precipiceblades", "stealthrock", "stoneedge", "swordsdance", "thunderwave"],
|
|
2705
2733
|
tier: "Uber",
|
|
2706
2734
|
doublesTier: "DUber",
|
|
2707
2735
|
},
|
|
@@ -2710,11 +2738,11 @@ exports.FormatsData = {
|
|
|
2710
2738
|
tier: "Illegal",
|
|
2711
2739
|
},
|
|
2712
2740
|
rayquaza: {
|
|
2713
|
-
randomBattleMoves: ["dracometeor", "dragonascent", "dragondance", "
|
|
2741
|
+
randomBattleMoves: ["dracometeor", "dragonascent", "dragondance", "earthquake", "extremespeed", "swordsdance", "vcreate"],
|
|
2714
2742
|
randomBattleLevel: 74,
|
|
2715
2743
|
randomDoubleBattleMoves: ["dracometeor", "dragonascent", "dragonclaw", "dragondance", "earthpower", "extremespeed", "vcreate"],
|
|
2716
2744
|
randomDoubleBattleLevel: 74,
|
|
2717
|
-
randomBattleNoDynamaxMoves: ["dracometeor", "dragonascent", "dragondance", "
|
|
2745
|
+
randomBattleNoDynamaxMoves: ["dracometeor", "dragonascent", "dragondance", "earthquake", "extremespeed", "vcreate"],
|
|
2718
2746
|
tier: "Uber",
|
|
2719
2747
|
doublesTier: "DUber",
|
|
2720
2748
|
},
|
|
@@ -2962,7 +2990,7 @@ exports.FormatsData = {
|
|
|
2962
2990
|
randomBattleLevel: 82,
|
|
2963
2991
|
randomDoubleBattleMoves: ["allyswitch", "bodypress", "explosion", "ironhead", "trickroom"],
|
|
2964
2992
|
randomDoubleBattleLevel: 88,
|
|
2965
|
-
tier: "
|
|
2993
|
+
tier: "RU",
|
|
2966
2994
|
doublesTier: "DUU",
|
|
2967
2995
|
},
|
|
2968
2996
|
chatot: {
|
|
@@ -2970,7 +2998,7 @@ exports.FormatsData = {
|
|
|
2970
2998
|
tier: "Illegal",
|
|
2971
2999
|
},
|
|
2972
3000
|
spiritomb: {
|
|
2973
|
-
randomBattleMoves: ["foulplay", "
|
|
3001
|
+
randomBattleMoves: ["foulplay", "poltergeist", "shadowsneak", "suckerpunch", "trick"],
|
|
2974
3002
|
randomBattleLevel: 88,
|
|
2975
3003
|
randomDoubleBattleMoves: ["foulplay", "poltergeist", "protect", "snarl", "suckerpunch", "willowisp"],
|
|
2976
3004
|
randomDoubleBattleLevel: 88,
|
|
@@ -3073,7 +3101,7 @@ exports.FormatsData = {
|
|
|
3073
3101
|
rotom: {
|
|
3074
3102
|
randomBattleMoves: ["nastyplot", "shadowball", "thunderbolt", "voltswitch", "willowisp"],
|
|
3075
3103
|
randomBattleLevel: 84,
|
|
3076
|
-
randomDoubleBattleMoves: ["
|
|
3104
|
+
randomDoubleBattleMoves: ["electroweb", "protect", "shadowball", "thunderbolt", "voltswitch", "willowisp"],
|
|
3077
3105
|
randomDoubleBattleLevel: 88,
|
|
3078
3106
|
tier: "(PU)",
|
|
3079
3107
|
doublesTier: "(DUU)",
|
|
@@ -3089,7 +3117,7 @@ exports.FormatsData = {
|
|
|
3089
3117
|
rotomwash: {
|
|
3090
3118
|
randomBattleMoves: ["hydropump", "thunderbolt", "trick", "voltswitch", "willowisp"],
|
|
3091
3119
|
randomBattleLevel: 82,
|
|
3092
|
-
randomDoubleBattleMoves: ["
|
|
3120
|
+
randomDoubleBattleMoves: ["hydropump", "protect", "thunderbolt", "thunderwave", "voltswitch", "willowisp"],
|
|
3093
3121
|
randomDoubleBattleLevel: 84,
|
|
3094
3122
|
tier: "UU",
|
|
3095
3123
|
doublesTier: "(DUU)",
|
|
@@ -3111,7 +3139,7 @@ exports.FormatsData = {
|
|
|
3111
3139
|
doublesTier: "(DUU)",
|
|
3112
3140
|
},
|
|
3113
3141
|
rotommow: {
|
|
3114
|
-
randomBattleMoves: ["leafstorm", "thunderbolt", "trick", "voltswitch", "willowisp"
|
|
3142
|
+
randomBattleMoves: ["leafstorm", "nastyplot", "thunderbolt", "trick", "voltswitch", "willowisp"],
|
|
3115
3143
|
randomBattleLevel: 86,
|
|
3116
3144
|
randomDoubleBattleMoves: ["electroweb", "leafstorm", "protect", "thunderbolt", "voltswitch", "willowisp"],
|
|
3117
3145
|
randomDoubleBattleLevel: 88,
|
|
@@ -3135,7 +3163,7 @@ exports.FormatsData = {
|
|
|
3135
3163
|
doublesTier: "(DUU)",
|
|
3136
3164
|
},
|
|
3137
3165
|
azelf: {
|
|
3138
|
-
randomBattleMoves: ["dazzlinggleam", "fireblast", "nastyplot", "psyshock", "stealthrock", "taunt", "uturn"
|
|
3166
|
+
randomBattleMoves: ["dazzlinggleam", "fireblast", "nastyplot", "psychic", "psyshock", "stealthrock", "taunt", "uturn"],
|
|
3139
3167
|
randomBattleLevel: 82,
|
|
3140
3168
|
randomDoubleBattleMoves: ["energyball", "fireblast", "nastyplot", "protect", "psychic", "shadowball", "uturn"],
|
|
3141
3169
|
randomDoubleBattleLevel: 84,
|
|
@@ -3150,6 +3178,10 @@ exports.FormatsData = {
|
|
|
3150
3178
|
tier: "Uber",
|
|
3151
3179
|
doublesTier: "DUber",
|
|
3152
3180
|
},
|
|
3181
|
+
dialgaorigin: {
|
|
3182
|
+
isNonstandard: "Future",
|
|
3183
|
+
tier: "Illegal",
|
|
3184
|
+
},
|
|
3153
3185
|
palkia: {
|
|
3154
3186
|
randomBattleMoves: ["dracometeor", "fireblast", "hydropump", "spacialrend", "thunderwave"],
|
|
3155
3187
|
randomBattleLevel: 74,
|
|
@@ -3158,10 +3190,14 @@ exports.FormatsData = {
|
|
|
3158
3190
|
tier: "Uber",
|
|
3159
3191
|
doublesTier: "DUber",
|
|
3160
3192
|
},
|
|
3193
|
+
palkiaorigin: {
|
|
3194
|
+
isNonstandard: "Future",
|
|
3195
|
+
tier: "Illegal",
|
|
3196
|
+
},
|
|
3161
3197
|
heatran: {
|
|
3162
3198
|
randomBattleMoves: ["earthpower", "flashcannon", "lavaplume", "protect", "stealthrock", "taunt", "toxic"],
|
|
3163
3199
|
randomBattleLevel: 78,
|
|
3164
|
-
randomDoubleBattleMoves: ["earthpower", "eruption", "flashcannon", "
|
|
3200
|
+
randomDoubleBattleMoves: ["earthpower", "eruption", "flashcannon", "heatwave", "protect"],
|
|
3165
3201
|
randomDoubleBattleLevel: 80,
|
|
3166
3202
|
tier: "OU",
|
|
3167
3203
|
doublesTier: "DOU",
|
|
@@ -3172,7 +3208,7 @@ exports.FormatsData = {
|
|
|
3172
3208
|
randomDoubleBattleMoves: ["bodyslam", "knockoff", "protect", "thunderwave"],
|
|
3173
3209
|
randomDoubleBattleLevel: 86,
|
|
3174
3210
|
tier: "(PU)",
|
|
3175
|
-
doublesTier: "
|
|
3211
|
+
doublesTier: "DUU",
|
|
3176
3212
|
},
|
|
3177
3213
|
giratina: {
|
|
3178
3214
|
randomBattleMoves: ["hex", "rest", "sleeptalk", "toxic", "willowisp"],
|
|
@@ -3185,7 +3221,7 @@ exports.FormatsData = {
|
|
|
3185
3221
|
giratinaorigin: {
|
|
3186
3222
|
randomBattleMoves: ["dualwingbeat", "honeclaws", "outrage", "poltergeist", "shadowsneak"],
|
|
3187
3223
|
randomBattleLevel: 74,
|
|
3188
|
-
randomDoubleBattleMoves: ["breakingswipe", "dracometeor", "
|
|
3224
|
+
randomDoubleBattleMoves: ["breakingswipe", "dracometeor", "protect", "shadowball", "shadowsneak", "tailwind", "willowisp"],
|
|
3189
3225
|
randomDoubleBattleLevel: 74,
|
|
3190
3226
|
randomBattleNoDynamaxMoves: ["defog", "dracometeor", "earthquake", "poltergeist", "shadowsneak", "willowisp"],
|
|
3191
3227
|
tier: "Uber",
|
|
@@ -3318,6 +3354,10 @@ exports.FormatsData = {
|
|
|
3318
3354
|
isNonstandard: "Past",
|
|
3319
3355
|
tier: "Illegal",
|
|
3320
3356
|
},
|
|
3357
|
+
samurotthisui: {
|
|
3358
|
+
isNonstandard: "Future",
|
|
3359
|
+
tier: "Illegal",
|
|
3360
|
+
},
|
|
3321
3361
|
patrat: {
|
|
3322
3362
|
isNonstandard: "Past",
|
|
3323
3363
|
tier: "Illegal",
|
|
@@ -3448,7 +3488,7 @@ exports.FormatsData = {
|
|
|
3448
3488
|
randomBattleMoves: ["healbell", "knockoff", "protect", "toxic", "wish"],
|
|
3449
3489
|
randomBattleLevel: 90,
|
|
3450
3490
|
randomDoubleBattleMoves: ["bodyslam", "healpulse", "helpinghand", "knockoff", "protect", "thunderwave"],
|
|
3451
|
-
randomDoubleBattleLevel:
|
|
3491
|
+
randomDoubleBattleLevel: 90,
|
|
3452
3492
|
tier: "PU",
|
|
3453
3493
|
doublesTier: "(DUU)",
|
|
3454
3494
|
},
|
|
@@ -3483,7 +3523,7 @@ exports.FormatsData = {
|
|
|
3483
3523
|
randomBattleLevel: 84,
|
|
3484
3524
|
randomDoubleBattleMoves: ["earthpower", "knockoff", "muddywater", "powerwhip", "protect", "raindance"],
|
|
3485
3525
|
randomDoubleBattleLevel: 86,
|
|
3486
|
-
tier: "
|
|
3526
|
+
tier: "RU",
|
|
3487
3527
|
doublesTier: "(DUU)",
|
|
3488
3528
|
},
|
|
3489
3529
|
throh: {
|
|
@@ -3551,6 +3591,10 @@ exports.FormatsData = {
|
|
|
3551
3591
|
tier: "(PU)",
|
|
3552
3592
|
doublesTier: "(DUU)",
|
|
3553
3593
|
},
|
|
3594
|
+
lilliganthisui: {
|
|
3595
|
+
isNonstandard: "Future",
|
|
3596
|
+
tier: "Illegal",
|
|
3597
|
+
},
|
|
3554
3598
|
basculin: {
|
|
3555
3599
|
randomBattleMoves: ["aquajet", "crunch", "flipturn", "headsmash", "liquidation", "psychicfangs"],
|
|
3556
3600
|
randomBattleLevel: 86,
|
|
@@ -3567,6 +3611,10 @@ exports.FormatsData = {
|
|
|
3567
3611
|
tier: "(PU)",
|
|
3568
3612
|
doublesTier: "(DUU)",
|
|
3569
3613
|
},
|
|
3614
|
+
basculinwhitestriped: {
|
|
3615
|
+
isNonstandard: "Future",
|
|
3616
|
+
tier: "Illegal",
|
|
3617
|
+
},
|
|
3570
3618
|
sandile: {
|
|
3571
3619
|
tier: "LC",
|
|
3572
3620
|
},
|
|
@@ -3656,13 +3704,13 @@ exports.FormatsData = {
|
|
|
3656
3704
|
randomBattleLevel: 86,
|
|
3657
3705
|
randomDoubleBattleMoves: ["bodypress", "irondefense", "painsplit", "shadowball", "trickroom", "willowisp"],
|
|
3658
3706
|
randomDoubleBattleLevel: 88,
|
|
3659
|
-
tier: "
|
|
3707
|
+
tier: "PU",
|
|
3660
3708
|
doublesTier: "(DUU)",
|
|
3661
3709
|
},
|
|
3662
3710
|
runerigus: {
|
|
3663
3711
|
randomBattleMoves: ["earthquake", "haze", "poltergeist", "stealthrock", "toxicspikes", "willowisp"],
|
|
3664
3712
|
randomBattleLevel: 84,
|
|
3665
|
-
randomDoubleBattleMoves: ["
|
|
3713
|
+
randomDoubleBattleMoves: ["earthquake", "poltergeist", "protect", "trickroom", "willowisp"],
|
|
3666
3714
|
randomDoubleBattleLevel: 88,
|
|
3667
3715
|
tier: "(PU)",
|
|
3668
3716
|
doublesTier: "(DUU)",
|
|
@@ -3708,12 +3756,20 @@ exports.FormatsData = {
|
|
|
3708
3756
|
zorua: {
|
|
3709
3757
|
tier: "LC",
|
|
3710
3758
|
},
|
|
3759
|
+
zoruahisui: {
|
|
3760
|
+
isNonstandard: "Future",
|
|
3761
|
+
tier: "Illegal",
|
|
3762
|
+
},
|
|
3711
3763
|
zoroark: {
|
|
3712
3764
|
randomBattleMoves: ["darkpulse", "flamethrower", "nastyplot", "sludgebomb", "trick"],
|
|
3713
3765
|
randomDoubleBattleMoves: ["darkpulse", "flamethrower", "focusblast", "nastyplot", "protect", "sludgebomb"],
|
|
3714
3766
|
tier: "NU",
|
|
3715
3767
|
doublesTier: "(DUU)",
|
|
3716
3768
|
},
|
|
3769
|
+
zoroarkhisui: {
|
|
3770
|
+
isNonstandard: "Future",
|
|
3771
|
+
tier: "Illegal",
|
|
3772
|
+
},
|
|
3717
3773
|
minccino: {
|
|
3718
3774
|
tier: "LC",
|
|
3719
3775
|
},
|
|
@@ -3773,7 +3829,7 @@ exports.FormatsData = {
|
|
|
3773
3829
|
randomDoubleBattleMoves: ["auroraveil", "blizzard", "freezedry", "iceshard", "protect"],
|
|
3774
3830
|
randomDoubleBattleLevel: 82,
|
|
3775
3831
|
tier: "(PU)",
|
|
3776
|
-
doublesTier: "DUU",
|
|
3832
|
+
doublesTier: "(DUU)",
|
|
3777
3833
|
},
|
|
3778
3834
|
deerling: {
|
|
3779
3835
|
isNonstandard: "Past",
|
|
@@ -3844,7 +3900,7 @@ exports.FormatsData = {
|
|
|
3844
3900
|
doublesTier: "NFE",
|
|
3845
3901
|
},
|
|
3846
3902
|
ferrothorn: {
|
|
3847
|
-
randomBattleMoves: ["gyroball", "leechseed", "powerwhip", "protect", "spikes", "stealthrock"
|
|
3903
|
+
randomBattleMoves: ["gyroball", "knockoff", "leechseed", "powerwhip", "protect", "spikes", "stealthrock"],
|
|
3848
3904
|
randomBattleLevel: 78,
|
|
3849
3905
|
randomDoubleBattleMoves: ["bodypress", "gyroball", "knockoff", "leechseed", "powerwhip", "protect", "toxic"],
|
|
3850
3906
|
randomDoubleBattleLevel: 83,
|
|
@@ -3910,7 +3966,7 @@ exports.FormatsData = {
|
|
|
3910
3966
|
},
|
|
3911
3967
|
haxorus: {
|
|
3912
3968
|
randomBattleMoves: ["closecombat", "dragondance", "earthquake", "outrage", "poisonjab"],
|
|
3913
|
-
randomBattleLevel:
|
|
3969
|
+
randomBattleLevel: 77,
|
|
3914
3970
|
randomDoubleBattleMoves: ["closecombat", "dragonclaw", "dragondance", "poisonjab", "protect"],
|
|
3915
3971
|
randomDoubleBattleLevel: 84,
|
|
3916
3972
|
tier: "RUBL",
|
|
@@ -3920,7 +3976,7 @@ exports.FormatsData = {
|
|
|
3920
3976
|
tier: "LC",
|
|
3921
3977
|
},
|
|
3922
3978
|
beartic: {
|
|
3923
|
-
randomBattleMoves: ["aquajet", "iciclecrash", "
|
|
3979
|
+
randomBattleMoves: ["aquajet", "iciclecrash", "stoneedge", "superpower", "swordsdance"],
|
|
3924
3980
|
randomBattleLevel: 86,
|
|
3925
3981
|
randomDoubleBattleMoves: ["aquajet", "iciclecrash", "protect", "rockslide", "superpower", "swordsdance", "throatchop"],
|
|
3926
3982
|
randomDoubleBattleLevel: 86,
|
|
@@ -3930,7 +3986,7 @@ exports.FormatsData = {
|
|
|
3930
3986
|
cryogonal: {
|
|
3931
3987
|
randomBattleMoves: ["freezedry", "haze", "rapidspin", "recover", "toxic"],
|
|
3932
3988
|
randomBattleLevel: 86,
|
|
3933
|
-
randomDoubleBattleMoves: ["freezedry", "
|
|
3989
|
+
randomDoubleBattleMoves: ["freezedry", "haze", "icebeam", "icywind", "rapidspin", "recover", "toxic"],
|
|
3934
3990
|
randomDoubleBattleLevel: 88,
|
|
3935
3991
|
tier: "(PU)",
|
|
3936
3992
|
doublesTier: "(DUU)",
|
|
@@ -4023,6 +4079,10 @@ exports.FormatsData = {
|
|
|
4023
4079
|
tier: "NU",
|
|
4024
4080
|
doublesTier: "(DUU)",
|
|
4025
4081
|
},
|
|
4082
|
+
braviaryhisui: {
|
|
4083
|
+
isNonstandard: "Future",
|
|
4084
|
+
tier: "Illegal",
|
|
4085
|
+
},
|
|
4026
4086
|
vullaby: {
|
|
4027
4087
|
tier: "NFE",
|
|
4028
4088
|
},
|
|
@@ -4073,7 +4133,7 @@ exports.FormatsData = {
|
|
|
4073
4133
|
randomDoubleBattleMoves: ["bugbuzz", "gigadrain", "heatwave", "hurricane", "protect", "quiverdance"],
|
|
4074
4134
|
randomDoubleBattleLevel: 80,
|
|
4075
4135
|
tier: "OU",
|
|
4076
|
-
doublesTier: "DUU",
|
|
4136
|
+
doublesTier: "(DUU)",
|
|
4077
4137
|
},
|
|
4078
4138
|
cobalion: {
|
|
4079
4139
|
randomBattleMoves: ["closecombat", "ironhead", "stealthrock", "stoneedge", "swordsdance", "voltswitch"],
|
|
@@ -4125,7 +4185,7 @@ exports.FormatsData = {
|
|
|
4125
4185
|
doublesTier: "(DUU)",
|
|
4126
4186
|
},
|
|
4127
4187
|
thundurustherian: {
|
|
4128
|
-
randomBattleMoves: ["
|
|
4188
|
+
randomBattleMoves: ["focusblast", "grassknot", "nastyplot", "psychic", "thunderbolt", "voltswitch"],
|
|
4129
4189
|
randomBattleLevel: 80,
|
|
4130
4190
|
randomDoubleBattleMoves: ["agility", "focusblast", "grassknot", "nastyplot", "sludgebomb", "thunderbolt", "voltswitch"],
|
|
4131
4191
|
randomDoubleBattleLevel: 82,
|
|
@@ -4171,7 +4231,7 @@ exports.FormatsData = {
|
|
|
4171
4231
|
randomDoubleBattleMoves: ["dracometeor", "earthpower", "freezedry", "glaciate", "protect", "roost"],
|
|
4172
4232
|
randomDoubleBattleLevel: 78,
|
|
4173
4233
|
tier: "Uber",
|
|
4174
|
-
doublesTier: "DUU",
|
|
4234
|
+
doublesTier: "(DUU)",
|
|
4175
4235
|
},
|
|
4176
4236
|
kyuremblack: {
|
|
4177
4237
|
randomBattleMoves: ["dragondance", "fusionbolt", "iciclespear", "outrage"],
|
|
@@ -4207,7 +4267,7 @@ exports.FormatsData = {
|
|
|
4207
4267
|
isNonstandard: "Past",
|
|
4208
4268
|
},
|
|
4209
4269
|
genesect: {
|
|
4210
|
-
randomBattleMoves: ["blazekick", "extremespeed", "
|
|
4270
|
+
randomBattleMoves: ["blazekick", "extremespeed", "ironhead", "leechlife", "shiftgear", "thunderbolt", "uturn"],
|
|
4211
4271
|
randomBattleLevel: 74,
|
|
4212
4272
|
randomDoubleBattleMoves: ["blazekick", "ironhead", "leechlife", "protect", "shiftgear", "thunderbolt", "uturn"],
|
|
4213
4273
|
randomDoubleBattleLevel: 78,
|
|
@@ -4280,7 +4340,7 @@ exports.FormatsData = {
|
|
|
4280
4340
|
randomBattleLevel: 80,
|
|
4281
4341
|
randomDoubleBattleMoves: ["bodyslam", "highhorsepower", "knockoff", "protect", "quickattack", "swordsdance", "uturn"],
|
|
4282
4342
|
randomDoubleBattleLevel: 86,
|
|
4283
|
-
tier: "
|
|
4343
|
+
tier: "RUBL",
|
|
4284
4344
|
doublesTier: "(DUU)",
|
|
4285
4345
|
},
|
|
4286
4346
|
fletchling: {
|
|
@@ -4351,7 +4411,7 @@ exports.FormatsData = {
|
|
|
4351
4411
|
tier: "LC",
|
|
4352
4412
|
},
|
|
4353
4413
|
pangoro: {
|
|
4354
|
-
randomBattleMoves: ["closecombat", "
|
|
4414
|
+
randomBattleMoves: ["closecombat", "gunkshot", "icepunch", "knockoff", "partingshot"],
|
|
4355
4415
|
randomBattleLevel: 84,
|
|
4356
4416
|
randomDoubleBattleMoves: ["bulletpunch", "closecombat", "drainpunch", "gunkshot", "icepunch", "knockoff", "protect"],
|
|
4357
4417
|
randomDoubleBattleLevel: 88,
|
|
@@ -4422,7 +4482,7 @@ exports.FormatsData = {
|
|
|
4422
4482
|
randomBattleMoves: ["bellydrum", "drainpunch", "facade", "playrough"],
|
|
4423
4483
|
randomBattleLevel: 80,
|
|
4424
4484
|
randomDoubleBattleMoves: ["faketears", "flamethrower", "helpinghand", "playrough", "stickyweb"],
|
|
4425
|
-
randomDoubleBattleLevel:
|
|
4485
|
+
randomDoubleBattleLevel: 86,
|
|
4426
4486
|
tier: "NUBL",
|
|
4427
4487
|
doublesTier: "(DUU)",
|
|
4428
4488
|
},
|
|
@@ -4533,6 +4593,10 @@ exports.FormatsData = {
|
|
|
4533
4593
|
sliggoo: {
|
|
4534
4594
|
tier: "NFE",
|
|
4535
4595
|
},
|
|
4596
|
+
sliggoohisui: {
|
|
4597
|
+
isNonstandard: "Future",
|
|
4598
|
+
tier: "Illegal",
|
|
4599
|
+
},
|
|
4536
4600
|
goodra: {
|
|
4537
4601
|
randomBattleMoves: ["dracometeor", "earthquake", "fireblast", "powerwhip", "sludgebomb", "thunderbolt"],
|
|
4538
4602
|
randomBattleLevel: 82,
|
|
@@ -4541,13 +4605,17 @@ exports.FormatsData = {
|
|
|
4541
4605
|
tier: "NU",
|
|
4542
4606
|
doublesTier: "(DUU)",
|
|
4543
4607
|
},
|
|
4608
|
+
goodrahisui: {
|
|
4609
|
+
isNonstandard: "Future",
|
|
4610
|
+
tier: "Illegal",
|
|
4611
|
+
},
|
|
4544
4612
|
klefki: {
|
|
4545
4613
|
randomBattleMoves: ["magnetrise", "playrough", "spikes", "thunderwave", "toxic"],
|
|
4546
4614
|
randomBattleLevel: 82,
|
|
4547
4615
|
randomDoubleBattleMoves: ["dazzlinggleam", "foulplay", "spikes", "thunderwave"],
|
|
4548
4616
|
randomDoubleBattleLevel: 84,
|
|
4549
4617
|
tier: "RU",
|
|
4550
|
-
doublesTier: "
|
|
4618
|
+
doublesTier: "DUU",
|
|
4551
4619
|
},
|
|
4552
4620
|
phantump: {
|
|
4553
4621
|
tier: "LC",
|
|
@@ -4615,6 +4683,10 @@ exports.FormatsData = {
|
|
|
4615
4683
|
tier: "(PU)",
|
|
4616
4684
|
doublesTier: "(DUU)",
|
|
4617
4685
|
},
|
|
4686
|
+
avalugghisui: {
|
|
4687
|
+
isNonstandard: "Future",
|
|
4688
|
+
tier: "Illegal",
|
|
4689
|
+
},
|
|
4618
4690
|
noibat: {
|
|
4619
4691
|
tier: "LC",
|
|
4620
4692
|
},
|
|
@@ -4639,7 +4711,7 @@ exports.FormatsData = {
|
|
|
4639
4711
|
tier: "Illegal",
|
|
4640
4712
|
},
|
|
4641
4713
|
yveltal: {
|
|
4642
|
-
randomBattleMoves: ["defog", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "
|
|
4714
|
+
randomBattleMoves: ["darkpulse", "defog", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "taunt"],
|
|
4643
4715
|
randomBattleLevel: 69,
|
|
4644
4716
|
randomDoubleBattleMoves: ["darkpulse", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "tailwind", "uturn"],
|
|
4645
4717
|
randomDoubleBattleLevel: 71,
|
|
@@ -4658,7 +4730,7 @@ exports.FormatsData = {
|
|
|
4658
4730
|
randomBattleMoves: ["coil", "extremespeed", "irontail", "outrage", "thousandarrows"],
|
|
4659
4731
|
randomBattleLevel: 82,
|
|
4660
4732
|
randomDoubleBattleMoves: ["dragondance", "extremespeed", "irontail", "protect", "rockslide", "thousandarrows"],
|
|
4661
|
-
randomDoubleBattleLevel:
|
|
4733
|
+
randomDoubleBattleLevel: 77,
|
|
4662
4734
|
tier: "UU",
|
|
4663
4735
|
doublesTier: "(DUU)",
|
|
4664
4736
|
},
|
|
@@ -4701,7 +4773,7 @@ exports.FormatsData = {
|
|
|
4701
4773
|
tier: "NFE",
|
|
4702
4774
|
},
|
|
4703
4775
|
decidueye: {
|
|
4704
|
-
randomBattleMoves: ["bravebird", "leafblade", "
|
|
4776
|
+
randomBattleMoves: ["bravebird", "leafblade", "poltergeist", "roost", "shadowsneak", "swordsdance"],
|
|
4705
4777
|
randomBattleLevel: 86,
|
|
4706
4778
|
randomDoubleBattleMoves: ["bravebird", "leafblade", "protect", "shadowsneak", "spiritshackle", "swordsdance"],
|
|
4707
4779
|
randomDoubleBattleLevel: 88,
|
|
@@ -4709,6 +4781,10 @@ exports.FormatsData = {
|
|
|
4709
4781
|
tier: "NU",
|
|
4710
4782
|
doublesTier: "(DUU)",
|
|
4711
4783
|
},
|
|
4784
|
+
decidueyehisui: {
|
|
4785
|
+
isNonstandard: "Future",
|
|
4786
|
+
tier: "Illegal",
|
|
4787
|
+
},
|
|
4712
4788
|
litten: {
|
|
4713
4789
|
tier: "LC",
|
|
4714
4790
|
},
|
|
@@ -4884,7 +4960,7 @@ exports.FormatsData = {
|
|
|
4884
4960
|
tier: "LC",
|
|
4885
4961
|
},
|
|
4886
4962
|
araquanid: {
|
|
4887
|
-
randomBattleMoves: ["
|
|
4963
|
+
randomBattleMoves: ["leechlife", "liquidation", "mirrorcoat", "stickyweb", "toxic"],
|
|
4888
4964
|
randomBattleLevel: 80,
|
|
4889
4965
|
randomDoubleBattleMoves: ["leechlife", "liquidation", "lunge", "protect", "stickyweb", "wideguard"],
|
|
4890
4966
|
randomDoubleBattleLevel: 84,
|
|
@@ -4958,7 +5034,7 @@ exports.FormatsData = {
|
|
|
4958
5034
|
randomBattleLevel: 84,
|
|
4959
5035
|
randomDoubleBattleMoves: ["highjumpkick", "knockoff", "playrough", "powerwhip", "rapidspin", "tripleaxel", "uturn"],
|
|
4960
5036
|
randomDoubleBattleLevel: 88,
|
|
4961
|
-
tier: "
|
|
5037
|
+
tier: "NU",
|
|
4962
5038
|
doublesTier: "DOU",
|
|
4963
5039
|
},
|
|
4964
5040
|
comfey: {
|
|
@@ -4967,7 +5043,7 @@ exports.FormatsData = {
|
|
|
4967
5043
|
randomDoubleBattleMoves: ["defog", "drainingkiss", "floralhealing", "gigadrain", "helpinghand", "protect"],
|
|
4968
5044
|
randomDoubleBattleLevel: 89,
|
|
4969
5045
|
tier: "NU",
|
|
4970
|
-
doublesTier: "
|
|
5046
|
+
doublesTier: "DUU",
|
|
4971
5047
|
},
|
|
4972
5048
|
oranguru: {
|
|
4973
5049
|
randomBattleMoves: ["focusblast", "nastyplot", "psychic", "thunderbolt", "trickroom"],
|
|
@@ -5114,7 +5190,7 @@ exports.FormatsData = {
|
|
|
5114
5190
|
randomBattleLevel: 84,
|
|
5115
5191
|
randomDoubleBattleMoves: ["multiattack", "rockslide", "swordsdance", "tailwind"],
|
|
5116
5192
|
randomDoubleBattleLevel: 89,
|
|
5117
|
-
tier: "
|
|
5193
|
+
tier: "NU",
|
|
5118
5194
|
doublesTier: "(DUU)",
|
|
5119
5195
|
},
|
|
5120
5196
|
silvallyice: {
|
|
@@ -5310,7 +5386,7 @@ exports.FormatsData = {
|
|
|
5310
5386
|
randomDoubleBattleMoves: ["grassknot", "meteorbeam", "protect", "sludgebomb", "thunderbolt"],
|
|
5311
5387
|
randomDoubleBattleLevel: 81,
|
|
5312
5388
|
tier: "UU",
|
|
5313
|
-
doublesTier: "
|
|
5389
|
+
doublesTier: "DUU",
|
|
5314
5390
|
},
|
|
5315
5391
|
buzzwole: {
|
|
5316
5392
|
randomBattleMoves: ["closecombat", "darkestlariat", "dualwingbeat", "ironhead", "leechlife", "stoneedge"],
|
|
@@ -5335,7 +5411,7 @@ exports.FormatsData = {
|
|
|
5335
5411
|
randomDoubleBattleMoves: ["dazzlinggleam", "energyball", "thunderbolt", "voltswitch"],
|
|
5336
5412
|
randomDoubleBattleLevel: 79,
|
|
5337
5413
|
tier: "RU",
|
|
5338
|
-
doublesTier: "
|
|
5414
|
+
doublesTier: "DUU",
|
|
5339
5415
|
},
|
|
5340
5416
|
celesteela: {
|
|
5341
5417
|
randomBattleMoves: ["airslash", "earthquake", "fireblast", "flashcannon", "leechseed", "protect"],
|
|
@@ -5344,7 +5420,7 @@ exports.FormatsData = {
|
|
|
5344
5420
|
randomDoubleBattleLevel: 78,
|
|
5345
5421
|
randomBattleNoDynamaxMoves: ["airslash", "earthquake", "fireblast", "heavyslam", "leechseed", "protect"],
|
|
5346
5422
|
tier: "UU",
|
|
5347
|
-
doublesTier: "
|
|
5423
|
+
doublesTier: "DOU",
|
|
5348
5424
|
},
|
|
5349
5425
|
kartana: {
|
|
5350
5426
|
randomBattleMoves: ["knockoff", "leafblade", "sacredsword", "smartstrike", "swordsdance"],
|
|
@@ -5392,7 +5468,7 @@ exports.FormatsData = {
|
|
|
5392
5468
|
},
|
|
5393
5469
|
magearna: {
|
|
5394
5470
|
randomBattleMoves: ["agility", "calmmind", "flashcannon", "fleurcannon"],
|
|
5395
|
-
randomBattleLevel:
|
|
5471
|
+
randomBattleLevel: 75,
|
|
5396
5472
|
randomDoubleBattleMoves: ["agility", "aurasphere", "dazzlinggleam", "flashcannon", "fleurcannon", "protect", "trick"],
|
|
5397
5473
|
randomDoubleBattleLevel: 72,
|
|
5398
5474
|
tier: "Uber",
|
|
@@ -5455,7 +5531,7 @@ exports.FormatsData = {
|
|
|
5455
5531
|
doublesTier: "(DUU)",
|
|
5456
5532
|
},
|
|
5457
5533
|
melmetal: {
|
|
5458
|
-
randomBattleMoves: ["doubleironbash", "earthquake", "
|
|
5534
|
+
randomBattleMoves: ["doubleironbash", "earthquake", "superpower", "thunderpunch", "thunderwave"],
|
|
5459
5535
|
randomBattleLevel: 74,
|
|
5460
5536
|
randomDoubleBattleMoves: ["acidarmor", "bodypress", "doubleironbash", "protect", "thunderpunch", "thunderwave"],
|
|
5461
5537
|
randomDoubleBattleLevel: 76,
|
|
@@ -5504,7 +5580,7 @@ exports.FormatsData = {
|
|
|
5504
5580
|
},
|
|
5505
5581
|
cinderacegmax: {
|
|
5506
5582
|
randomBattleLevel: 74,
|
|
5507
|
-
randomBattleMoves: ["bulkup", "
|
|
5583
|
+
randomBattleMoves: ["bulkup", "highjumpkick", "pyroball", "suckerpunch"],
|
|
5508
5584
|
isNonstandard: "Gigantamax",
|
|
5509
5585
|
tier: "AG",
|
|
5510
5586
|
doublesTier: "(DUber)",
|
|
@@ -5654,7 +5730,7 @@ exports.FormatsData = {
|
|
|
5654
5730
|
},
|
|
5655
5731
|
coalossalgmax: {
|
|
5656
5732
|
randomBattleMoves: ["overheat", "rapidspin", "spikes", "stealthrock", "stoneedge", "willowisp"],
|
|
5657
|
-
randomBattleLevel:
|
|
5733
|
+
randomBattleLevel: 87,
|
|
5658
5734
|
randomDoubleBattleMoves: ["fireblast", "incinerate", "protect", "stealthrock", "stoneedge", "willowisp"],
|
|
5659
5735
|
randomDoubleBattleLevel: 85,
|
|
5660
5736
|
isNonstandard: "Gigantamax",
|
|
@@ -5696,7 +5772,7 @@ exports.FormatsData = {
|
|
|
5696
5772
|
tier: "LC",
|
|
5697
5773
|
},
|
|
5698
5774
|
sandaconda: {
|
|
5699
|
-
randomBattleMoves: ["coil", "earthquake", "glare", "
|
|
5775
|
+
randomBattleMoves: ["coil", "earthquake", "glare", "rest", "stealthrock", "stoneedge"],
|
|
5700
5776
|
randomBattleLevel: 84,
|
|
5701
5777
|
tier: "PU",
|
|
5702
5778
|
doublesTier: "(DUU)",
|
|
@@ -5763,13 +5839,13 @@ exports.FormatsData = {
|
|
|
5763
5839
|
randomBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip"],
|
|
5764
5840
|
randomBattleLevel: 84,
|
|
5765
5841
|
randomDoubleBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip", "protect"],
|
|
5766
|
-
randomDoubleBattleLevel:
|
|
5842
|
+
randomDoubleBattleLevel: 89,
|
|
5767
5843
|
tier: "(PU)",
|
|
5768
5844
|
doublesTier: "(DUU)",
|
|
5769
5845
|
},
|
|
5770
5846
|
centiskorchgmax: {
|
|
5771
5847
|
randomDoubleBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip", "protect"],
|
|
5772
|
-
randomDoubleBattleLevel:
|
|
5848
|
+
randomDoubleBattleLevel: 89,
|
|
5773
5849
|
isNonstandard: "Gigantamax",
|
|
5774
5850
|
tier: "AG",
|
|
5775
5851
|
doublesTier: "(DUber)",
|
|
@@ -5908,7 +5984,7 @@ exports.FormatsData = {
|
|
|
5908
5984
|
randomBattleLevel: 84,
|
|
5909
5985
|
randomDoubleBattleMoves: ["expandingforce", "followme", "healpulse", "helpinghand", "protect"],
|
|
5910
5986
|
randomDoubleBattleLevel: 80,
|
|
5911
|
-
tier: "
|
|
5987
|
+
tier: "NU",
|
|
5912
5988
|
doublesTier: "DOU",
|
|
5913
5989
|
},
|
|
5914
5990
|
morpeko: {
|
|
@@ -5967,7 +6043,7 @@ exports.FormatsData = {
|
|
|
5967
6043
|
randomBattleLevel: 86,
|
|
5968
6044
|
randomDoubleBattleMoves: ["blizzard", "fishiousrend", "iciclecrash", "protect", "superfang"],
|
|
5969
6045
|
randomDoubleBattleLevel: 88,
|
|
5970
|
-
tier: "
|
|
6046
|
+
tier: "(PU)",
|
|
5971
6047
|
doublesTier: "(DUU)",
|
|
5972
6048
|
},
|
|
5973
6049
|
duraludon: {
|
|
@@ -6015,14 +6091,14 @@ exports.FormatsData = {
|
|
|
6015
6091
|
},
|
|
6016
6092
|
zamazenta: {
|
|
6017
6093
|
randomBattleMoves: ["closecombat", "crunch", "psychicfangs", "wildcharge"],
|
|
6018
|
-
randomBattleLevel:
|
|
6094
|
+
randomBattleLevel: 73,
|
|
6019
6095
|
randomDoubleBattleMoves: ["closecombat", "crunch", "playrough", "protect", "psychicfangs"],
|
|
6020
6096
|
randomDoubleBattleLevel: 74,
|
|
6021
6097
|
tier: "Uber",
|
|
6022
6098
|
doublesTier: "DUber",
|
|
6023
6099
|
},
|
|
6024
6100
|
zamazentacrowned: {
|
|
6025
|
-
randomBattleMoves: ["behemothbash", "closecombat", "crunch", "
|
|
6101
|
+
randomBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "psychicfangs"],
|
|
6026
6102
|
randomBattleLevel: 71,
|
|
6027
6103
|
randomDoubleBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "protect", "psychicfangs"],
|
|
6028
6104
|
randomDoubleBattleLevel: 72,
|
|
@@ -6068,7 +6144,7 @@ exports.FormatsData = {
|
|
|
6068
6144
|
doublesTier: "(DUber)",
|
|
6069
6145
|
},
|
|
6070
6146
|
urshifurapidstrikegmax: {
|
|
6071
|
-
randomBattleMoves: ["bulkup", "closecombat", "
|
|
6147
|
+
randomBattleMoves: ["bulkup", "closecombat", "icepunch", "surgingstrikes", "uturn"],
|
|
6072
6148
|
randomBattleLevel: 78,
|
|
6073
6149
|
isNonstandard: "Gigantamax",
|
|
6074
6150
|
tier: "AG",
|
|
@@ -6094,23 +6170,23 @@ exports.FormatsData = {
|
|
|
6094
6170
|
randomDoubleBattleMoves: ["electroweb", "extremespeed", "protect", "thundercage", "voltswitch"],
|
|
6095
6171
|
randomDoubleBattleLevel: 82,
|
|
6096
6172
|
randomBattleNoDynamaxMoves: ["explosion", "rapidspin", "thunderbolt", "voltswitch"],
|
|
6097
|
-
tier: "
|
|
6173
|
+
tier: "OU",
|
|
6098
6174
|
doublesTier: "DOU",
|
|
6099
6175
|
},
|
|
6100
6176
|
regidrago: {
|
|
6101
|
-
randomBattleMoves: ["dracometeor", "dragondance", "
|
|
6177
|
+
randomBattleMoves: ["dracometeor", "dragondance", "firefang", "hammerarm", "outrage"],
|
|
6102
6178
|
randomBattleLevel: 78,
|
|
6103
6179
|
randomDoubleBattleMoves: ["crunch", "dragonclaw", "dragonenergy", "firefang"],
|
|
6104
6180
|
randomDoubleBattleLevel: 78,
|
|
6105
6181
|
tier: "NUBL",
|
|
6106
|
-
doublesTier: "DUU",
|
|
6182
|
+
doublesTier: "(DUU)",
|
|
6107
6183
|
},
|
|
6108
6184
|
glastrier: {
|
|
6109
6185
|
randomBattleMoves: ["closecombat", "highhorsepower", "iciclecrash", "swordsdance"],
|
|
6110
6186
|
randomBattleLevel: 82,
|
|
6111
6187
|
randomDoubleBattleMoves: ["closecombat", "highhorsepower", "iciclecrash", "protect"],
|
|
6112
6188
|
randomDoubleBattleLevel: 82,
|
|
6113
|
-
tier: "
|
|
6189
|
+
tier: "PU",
|
|
6114
6190
|
doublesTier: "(DUU)",
|
|
6115
6191
|
},
|
|
6116
6192
|
spectrier: {
|
|
@@ -6122,15 +6198,15 @@ exports.FormatsData = {
|
|
|
6122
6198
|
doublesTier: "DUU",
|
|
6123
6199
|
},
|
|
6124
6200
|
calyrex: {
|
|
6125
|
-
randomBattleMoves: ["calmmind", "gigadrain", "
|
|
6201
|
+
randomBattleMoves: ["calmmind", "gigadrain", "leechseed", "psyshock", "substitute"],
|
|
6126
6202
|
randomBattleLevel: 88,
|
|
6127
|
-
randomDoubleBattleMoves: ["
|
|
6203
|
+
randomDoubleBattleMoves: ["helpinghand", "leafstorm", "pollenpuff", "protect"],
|
|
6128
6204
|
randomDoubleBattleLevel: 94,
|
|
6129
6205
|
tier: "(PU)",
|
|
6130
6206
|
doublesTier: "(DUU)",
|
|
6131
6207
|
},
|
|
6132
6208
|
calyrexice: {
|
|
6133
|
-
randomBattleMoves: ["closecombat", "glaciallance", "highhorsepower", "trickroom"
|
|
6209
|
+
randomBattleMoves: ["agility", "closecombat", "glaciallance", "highhorsepower", "trickroom"],
|
|
6134
6210
|
randomBattleLevel: 72,
|
|
6135
6211
|
randomDoubleBattleMoves: ["closecombat", "glaciallance", "highhorsepower", "swordsdance", "trickroom"],
|
|
6136
6212
|
randomDoubleBattleLevel: 72,
|
|
@@ -6145,6 +6221,42 @@ exports.FormatsData = {
|
|
|
6145
6221
|
tier: "Uber",
|
|
6146
6222
|
doublesTier: "DUber",
|
|
6147
6223
|
},
|
|
6224
|
+
wyrdeer: {
|
|
6225
|
+
isNonstandard: "Future",
|
|
6226
|
+
tier: "Illegal",
|
|
6227
|
+
},
|
|
6228
|
+
kleavor: {
|
|
6229
|
+
isNonstandard: "Future",
|
|
6230
|
+
tier: "Illegal",
|
|
6231
|
+
},
|
|
6232
|
+
ursaluna: {
|
|
6233
|
+
isNonstandard: "Future",
|
|
6234
|
+
tier: "Illegal",
|
|
6235
|
+
},
|
|
6236
|
+
basculegion: {
|
|
6237
|
+
isNonstandard: "Future",
|
|
6238
|
+
tier: "Illegal",
|
|
6239
|
+
},
|
|
6240
|
+
basculegionf: {
|
|
6241
|
+
isNonstandard: "Future",
|
|
6242
|
+
tier: "Illegal",
|
|
6243
|
+
},
|
|
6244
|
+
sneasler: {
|
|
6245
|
+
isNonstandard: "Future",
|
|
6246
|
+
tier: "Illegal",
|
|
6247
|
+
},
|
|
6248
|
+
overqwil: {
|
|
6249
|
+
isNonstandard: "Future",
|
|
6250
|
+
tier: "Illegal",
|
|
6251
|
+
},
|
|
6252
|
+
enamorus: {
|
|
6253
|
+
isNonstandard: "Future",
|
|
6254
|
+
tier: "Illegal",
|
|
6255
|
+
},
|
|
6256
|
+
enamorustherian: {
|
|
6257
|
+
isNonstandard: "Future",
|
|
6258
|
+
tier: "Illegal",
|
|
6259
|
+
},
|
|
6148
6260
|
missingno: {
|
|
6149
6261
|
isNonstandard: "Custom",
|
|
6150
6262
|
tier: "Illegal",
|