@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.
Files changed (86) hide show
  1. package/build/config/formats.js +410 -311
  2. package/build/config/formats.js.map +1 -1
  3. package/build/data/aliases.js +4 -4
  4. package/build/data/aliases.js.map +1 -1
  5. package/build/data/formats-data.js +205 -93
  6. package/build/data/formats-data.js.map +1 -1
  7. package/build/data/learnsets.js +1 -1
  8. package/build/data/learnsets.js.map +1 -1
  9. package/build/data/mods/gen1/formats-data.js +190 -190
  10. package/build/data/mods/gen1/formats-data.js.map +1 -1
  11. package/build/data/mods/gen1/moves.js +1 -2
  12. package/build/data/mods/gen1/moves.js.map +1 -1
  13. package/build/data/mods/gen1/scripts.js +12 -0
  14. package/build/data/mods/gen1/scripts.js.map +1 -1
  15. package/build/data/mods/gen2/formats-data.js +1 -1
  16. package/build/data/mods/gen2/formats-data.js.map +1 -1
  17. package/build/data/mods/gen3/formats-data.js +13 -13
  18. package/build/data/mods/gen3/formats-data.js.map +1 -1
  19. package/build/data/mods/gen4/moves.js +22 -0
  20. package/build/data/mods/gen4/moves.js.map +1 -1
  21. package/build/data/mods/gen5/formats-data.js +173 -156
  22. package/build/data/mods/gen5/formats-data.js.map +1 -1
  23. package/build/data/mods/gen6/formats-data.js +4 -3
  24. package/build/data/mods/gen6/formats-data.js.map +1 -1
  25. package/build/data/mods/gen7/formats-data.js +3 -2
  26. package/build/data/mods/gen7/formats-data.js.map +1 -1
  27. package/build/data/mods/gen7/moves.js +154 -0
  28. package/build/data/mods/gen7/moves.js.map +1 -1
  29. package/build/data/moves.js +44 -19
  30. package/build/data/moves.js.map +1 -1
  31. package/build/data/pokedex.js +480 -11
  32. package/build/data/pokedex.js.map +1 -1
  33. package/build/data/rulesets.js +12 -1
  34. package/build/data/rulesets.js.map +1 -1
  35. package/build/data/tags.d.ts +1 -0
  36. package/build/data/tags.js +4 -3
  37. package/build/data/tags.js.map +1 -1
  38. package/build/data/text/abilities.js +4 -4
  39. package/build/data/text/abilities.js.map +1 -1
  40. package/build/data/text/moves.js +18 -18
  41. package/build/data/text/moves.js.map +1 -1
  42. package/build/sim/battle-actions.js +12 -4
  43. package/build/sim/battle-actions.js.map +1 -1
  44. package/build/sim/battle.js +23 -22
  45. package/build/sim/battle.js.map +1 -1
  46. package/build/sim/dex-formats.d.ts +1 -0
  47. package/build/sim/dex-formats.js +3 -2
  48. package/build/sim/dex-formats.js.map +1 -1
  49. package/build/sim/dex-species.js +5 -2
  50. package/build/sim/dex-species.js.map +1 -1
  51. package/build/sim/exported-global-types.d.ts +2 -0
  52. package/build/sim/global-types.d.ts +2 -0
  53. package/build/sim/index.d.ts +1 -0
  54. package/build/sim/index.js +3 -1
  55. package/build/sim/index.js.map +1 -1
  56. package/build/sim/team-validator.js +13 -0
  57. package/build/sim/team-validator.js.map +1 -1
  58. package/config/formats.ts +418 -316
  59. package/data/aliases.ts +4 -4
  60. package/data/formats-data.ts +205 -93
  61. package/data/learnsets.ts +1 -1
  62. package/data/mods/gen1/formats-data.ts +190 -190
  63. package/data/mods/gen1/moves.ts +1 -2
  64. package/data/mods/gen1/scripts.ts +11 -0
  65. package/data/mods/gen2/formats-data.ts +1 -1
  66. package/data/mods/gen3/formats-data.ts +13 -13
  67. package/data/mods/gen4/moves.ts +21 -0
  68. package/data/mods/gen5/formats-data.ts +173 -156
  69. package/data/mods/gen6/formats-data.ts +4 -3
  70. package/data/mods/gen7/formats-data.ts +3 -2
  71. package/data/mods/gen7/moves.ts +150 -0
  72. package/data/moves.ts +43 -19
  73. package/data/pokedex.ts +480 -11
  74. package/data/rulesets.ts +11 -1
  75. package/data/tags.ts +6 -3
  76. package/data/text/abilities.ts +4 -4
  77. package/data/text/moves.ts +18 -18
  78. package/package.json +2 -2
  79. package/sim/battle-actions.ts +12 -4
  80. package/sim/battle.ts +24 -23
  81. package/sim/dex-formats.ts +4 -1
  82. package/sim/dex-species.ts +5 -2
  83. package/sim/exported-global-types.ts +2 -0
  84. package/sim/global-types.ts +2 -0
  85. package/sim/index.ts +1 -0
  86. package/sim/team-validator.ts +12 -0
@@ -8,7 +8,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
8
8
  venusaur: {
9
9
  randomBattleMoves: ["gigadrain", "leechseed", "sleeppowder", "sludgebomb", "substitute"],
10
10
  randomBattleLevel: 82,
11
- tier: "RUBL",
11
+ tier: "UU",
12
12
  doublesTier: "(DUU)",
13
13
  },
14
14
  venusaurmega: {
@@ -270,10 +270,11 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
270
270
  tier: "LC",
271
271
  },
272
272
  sandshrewalola: {
273
- tier: "LC",
273
+ tier: "NUBL",
274
+ doublesTier: "LC",
274
275
  },
275
276
  sandslash: {
276
- randomBattleMoves: ["earthquake", "knockoff", "rapidspin", "stealthrock", "swordsdance", "toxic", "spikes", "stoneedge"],
277
+ randomBattleMoves: ["earthquake", "knockoff", "rapidspin", "spikes", "stealthrock", "stoneedge", "swordsdance", "toxic"],
277
278
  randomBattleLevel: 86,
278
279
  randomDoubleBattleMoves: ["drillrun", "knockoff", "protect", "stealthrock", "stoneedge", "swordsdance"],
279
280
  randomDoubleBattleLevel: 89,
@@ -285,7 +286,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
285
286
  randomBattleLevel: 86,
286
287
  randomDoubleBattleMoves: ["drillrun", "ironhead", "protect", "swordsdance", "tripleaxel"],
287
288
  randomDoubleBattleLevel: 90,
288
- tier: "(PU)",
289
+ tier: "NUBL",
289
290
  doublesTier: "(DUU)",
290
291
  },
291
292
  nidoranf: {
@@ -353,7 +354,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
353
354
  randomDoubleBattleMoves: ["auroraveil", "blizzard", "encore", "freezedry", "moonblast"],
354
355
  randomDoubleBattleLevel: 81,
355
356
  tier: "OU",
356
- doublesTier: "DUU",
357
+ doublesTier: "DOU",
357
358
  },
358
359
  igglybuff: {
359
360
  tier: "LC",
@@ -490,7 +491,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
490
491
  randomDoubleBattleMoves: ["calmmind", "encore", "icebeam", "muddywater", "protect"],
491
492
  randomDoubleBattleLevel: 88,
492
493
  tier: "(PU)",
493
- doublesTier: "(DUU)",
494
+ doublesTier: "DUU",
494
495
  },
495
496
  mankey: {
496
497
  isNonstandard: "Past",
@@ -503,6 +504,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
503
504
  growlithe: {
504
505
  tier: "LC",
505
506
  },
507
+ growlithehisui: {
508
+ isNonstandard: "Future",
509
+ tier: "Illegal",
510
+ },
506
511
  arcanine: {
507
512
  randomBattleMoves: ["closecombat", "extremespeed", "flareblitz", "morningsun", "toxic", "wildcharge", "willowisp"],
508
513
  randomBattleLevel: 82,
@@ -511,6 +516,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
511
516
  tier: "NU",
512
517
  doublesTier: "DUU",
513
518
  },
519
+ arcaninehisui: {
520
+ isNonstandard: "Future",
521
+ tier: "Illegal",
522
+ },
514
523
  poliwag: {
515
524
  tier: "LC",
516
525
  },
@@ -530,7 +539,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
530
539
  randomBattleLevel: 86,
531
540
  randomDoubleBattleMoves: ["earthpower", "helpinghand", "icywind", "muddywater", "protect"],
532
541
  randomDoubleBattleLevel: 84,
533
- tier: "RU",
542
+ tier: "(PU)",
534
543
  doublesTier: "DUU",
535
544
  },
536
545
  abra: {
@@ -589,7 +598,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
589
598
  randomBattleMoves: ["haze", "knockoff", "rapidspin", "scald", "sludgebomb", "toxicspikes"],
590
599
  randomBattleLevel: 84,
591
600
  randomDoubleBattleMoves: ["acidspray", "icywind", "knockoff", "muddywater", "rapidspin", "sludgebomb"],
592
- randomDoubleBattleLevel: 88,
601
+ randomDoubleBattleLevel: 87,
593
602
  tier: "UU",
594
603
  doublesTier: "(DUU)",
595
604
  },
@@ -662,7 +671,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
662
671
  randomBattleLevel: 86,
663
672
  randomDoubleBattleMoves: ["fireblast", "healpulse", "protect", "psychic", "shellsidearm", "trickroom"],
664
673
  randomDoubleBattleLevel: 85,
665
- tier: "UU",
674
+ tier: "RUBL",
666
675
  doublesTier: "(DUU)",
667
676
  },
668
677
  slowking: {
@@ -690,7 +699,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
690
699
  magnezone: {
691
700
  randomBattleMoves: ["bodypress", "flashcannon", "mirrorcoat", "thunderbolt", "voltswitch"],
692
701
  randomBattleLevel: 84,
693
- randomDoubleBattleMoves: ["allyswitch", "bodypress", "electroweb", "flashcannon", "protect", "thunderbolt", "voltswitch"],
702
+ randomDoubleBattleMoves: ["bodypress", "electroweb", "flashcannon", "protect", "thunderbolt", "voltswitch"],
694
703
  randomDoubleBattleLevel: 88,
695
704
  tier: "OU",
696
705
  doublesTier: "(DUU)",
@@ -830,10 +839,18 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
830
839
  isNonstandard: "Past",
831
840
  tier: "Illegal",
832
841
  },
842
+ voltorbhisui: {
843
+ isNonstandard: "Future",
844
+ tier: "Illegal",
845
+ },
833
846
  electrode: {
834
847
  isNonstandard: "Past",
835
848
  tier: "Illegal",
836
849
  },
850
+ electrodehisui: {
851
+ isNonstandard: "Future",
852
+ tier: "Illegal",
853
+ },
837
854
  exeggcute: {
838
855
  tier: "LC",
839
856
  },
@@ -868,7 +885,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
868
885
  randomBattleMoves: ["earthquake", "flamecharge", "flareblitz", "poltergeist", "stealthrock", "stoneedge"],
869
886
  randomBattleLevel: 84,
870
887
  randomDoubleBattleMoves: ["bonemerang", "flamecharge", "flareblitz", "protect", "shadowbone"],
871
- randomDoubleBattleLevel: 82,
888
+ randomDoubleBattleLevel: 83,
872
889
  tier: "RU",
873
890
  doublesTier: "(DUU)",
874
891
  },
@@ -929,7 +946,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
929
946
  randomBattleMoves: ["defog", "fireblast", "painsplit", "sludgebomb", "strangesteam", "toxicspikes", "willowisp"],
930
947
  randomBattleLevel: 86,
931
948
  randomDoubleBattleMoves: ["clearsmog", "defog", "fireblast", "painsplit", "strangesteam", "toxicspikes", "willowisp"],
932
- randomDoubleBattleLevel: 88,
949
+ randomDoubleBattleLevel: 89,
933
950
  tier: "RU",
934
951
  doublesTier: "DUU",
935
952
  },
@@ -946,7 +963,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
946
963
  randomBattleLevel: 82,
947
964
  randomDoubleBattleMoves: ["highhorsepower", "icepunch", "megahorn", "protect", "rockslide", "stoneedge"],
948
965
  randomDoubleBattleLevel: 84,
949
- tier: "UU",
966
+ tier: "RU",
950
967
  doublesTier: "(DUU)",
951
968
  },
952
969
  happiny: {
@@ -1002,7 +1019,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1002
1019
  randomDoubleBattleLevel: 82,
1003
1020
  randomBattleNoDynamaxMoves: ["dracometeor", "flipturn", "hydropump", "icebeam", "raindance"],
1004
1021
  tier: "PUBL",
1005
- doublesTier: "DOU",
1022
+ doublesTier: "DUU",
1006
1023
  },
1007
1024
  goldeen: {
1008
1025
  tier: "LC",
@@ -1019,7 +1036,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1019
1036
  tier: "LC",
1020
1037
  },
1021
1038
  starmie: {
1022
- randomBattleMoves: ["hydropump", "psyshock", "rapidspin", "recover", "scald", "thunderbolt", "icebeam"],
1039
+ randomBattleMoves: ["hydropump", "icebeam", "psyshock", "rapidspin", "recover", "scald", "thunderbolt"],
1023
1040
  randomBattleLevel: 84,
1024
1041
  randomDoubleBattleMoves: ["flipturn", "hydropump", "icebeam", "protect", "psyshock", "thunderbolt"],
1025
1042
  randomDoubleBattleLevel: 84,
@@ -1209,7 +1226,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1209
1226
  randomBattleLevel: 82,
1210
1227
  randomDoubleBattleMoves: ["calmmind", "dazzlinggleam", "morningsun", "protect", "psychic", "shadowball"],
1211
1228
  randomDoubleBattleLevel: 84,
1212
- tier: "NU",
1229
+ tier: "PU",
1213
1230
  doublesTier: "(DUU)",
1214
1231
  },
1215
1232
  umbreon: {
@@ -1242,7 +1259,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1242
1259
  randomDoubleBattleMoves: ["calmmind", "hypervoice", "mysticalfire", "protect", "psyshock"],
1243
1260
  randomDoubleBattleLevel: 80,
1244
1261
  tier: "NU",
1245
- doublesTier: "DUU",
1262
+ doublesTier: "(DUU)",
1246
1263
  },
1247
1264
  porygon: {
1248
1265
  tier: "LC",
@@ -1328,7 +1345,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1328
1345
  randomBattleMoves: ["airslash", "calmmind", "freezingglare", "recover"],
1329
1346
  randomBattleLevel: 80,
1330
1347
  randomDoubleBattleMoves: ["calmmind", "freezingglare", "hurricane", "recover", "tailwind"],
1331
- randomDoubleBattleLevel: 81,
1348
+ randomDoubleBattleLevel: 80,
1332
1349
  randomBattleNoDynamaxMoves: ["calmmind", "freezingglare", "hurricane", "recover"],
1333
1350
  tier: "PU",
1334
1351
  doublesTier: "(DUU)",
@@ -1346,7 +1363,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1346
1363
  randomBattleLevel: 76,
1347
1364
  randomDoubleBattleMoves: ["bravebird", "bulkup", "closecombat", "throatchop", "thunderouskick", "uturn"],
1348
1365
  randomDoubleBattleLevel: 76,
1349
- tier: "UUBL",
1366
+ tier: "OU",
1350
1367
  doublesTier: "DOU",
1351
1368
  },
1352
1369
  moltres: {
@@ -1362,7 +1379,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1362
1379
  randomBattleMoves: ["fierywrath", "hurricane", "nastyplot", "rest"],
1363
1380
  randomBattleLevel: 75,
1364
1381
  randomDoubleBattleMoves: ["fierywrath", "hurricane", "nastyplot", "protect"],
1365
- randomDoubleBattleLevel: 76,
1382
+ randomDoubleBattleLevel: 75,
1366
1383
  randomBattleNoDynamaxMoves: ["agility", "fierywrath", "hurricane", "nastyplot", "rest"],
1367
1384
  tier: "UU",
1368
1385
  doublesTier: "DUU",
@@ -1431,6 +1448,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1431
1448
  isNonstandard: "Past",
1432
1449
  tier: "Illegal",
1433
1450
  },
1451
+ typhlosionhisui: {
1452
+ isNonstandard: "Future",
1453
+ tier: "Illegal",
1454
+ },
1434
1455
  totodile: {
1435
1456
  isNonstandard: "Past",
1436
1457
  tier: "Illegal",
@@ -1455,7 +1476,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1455
1476
  tier: "LC",
1456
1477
  },
1457
1478
  noctowl: {
1458
- randomBattleMoves: ["airslash", "defog", "heatwave", "hurricane", "nastyplot", "roost"],
1479
+ randomBattleMoves: ["defog", "heatwave", "hurricane", "nastyplot", "roost"],
1459
1480
  randomBattleLevel: 88,
1460
1481
  randomDoubleBattleMoves: ["airslash", "heatwave", "hypervoice", "nastyplot", "roost", "tailwind"],
1461
1482
  randomDoubleBattleLevel: 84,
@@ -1509,7 +1530,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1509
1530
  },
1510
1531
  xatu: {
1511
1532
  randomBattleMoves: ["heatwave", "psychic", "roost", "teleport", "thunderwave"],
1512
- randomBattleLevel: 88,
1533
+ randomBattleLevel: 89,
1513
1534
  randomDoubleBattleMoves: ["airslash", "heatwave", "lightscreen", "psychic", "reflect", "roost", "tailwind"],
1514
1535
  randomDoubleBattleLevel: 88,
1515
1536
  tier: "NU",
@@ -1543,7 +1564,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1543
1564
  randomDoubleBattleMoves: ["aquajet", "knockoff", "liquidation", "playrough", "protect"],
1544
1565
  randomDoubleBattleLevel: 87,
1545
1566
  tier: "UU",
1546
- doublesTier: "(DUU)",
1567
+ doublesTier: "DUU",
1547
1568
  },
1548
1569
  bonsly: {
1549
1570
  tier: "LC",
@@ -1648,7 +1669,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1648
1669
  tier: "Illegal",
1649
1670
  },
1650
1671
  dunsparce: {
1651
- randomBattleMoves: ["bodyslam", "coil", "roost", "earthquake"],
1672
+ randomBattleMoves: ["bodyslam", "coil", "earthquake", "roost"],
1652
1673
  randomBattleLevel: 90,
1653
1674
  randomDoubleBattleMoves: ["glare", "headbutt", "protect", "rockslide"],
1654
1675
  randomDoubleBattleLevel: 90,
@@ -1679,6 +1700,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1679
1700
  tier: "(PU)",
1680
1701
  doublesTier: "(DUU)",
1681
1702
  },
1703
+ qwilfishhisui: {
1704
+ isNonstandard: "Future",
1705
+ tier: "Illegal",
1706
+ },
1682
1707
  shuckle: {
1683
1708
  randomBattleMoves: ["encore", "knockoff", "stealthrock", "stickyweb", "toxic"],
1684
1709
  randomBattleLevel: 86,
@@ -1702,6 +1727,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1702
1727
  sneasel: {
1703
1728
  tier: "NFE",
1704
1729
  },
1730
+ sneaselhisui: {
1731
+ isNonstandard: "Future",
1732
+ tier: "Illegal",
1733
+ },
1705
1734
  weavile: {
1706
1735
  randomBattleMoves: ["iceshard", "knockoff", "lowkick", "swordsdance", "tripleaxel"],
1707
1736
  randomBattleLevel: 79,
@@ -1844,7 +1873,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1844
1873
  doublesTier: "(DUU)",
1845
1874
  },
1846
1875
  entei: {
1847
- randomBattleMoves: ["extremespeed", "flareblitz", "stompingtantrum", "stoneedge", "sacredfire"],
1876
+ randomBattleMoves: ["extremespeed", "flareblitz", "sacredfire", "stompingtantrum", "stoneedge"],
1848
1877
  randomBattleLevel: 78,
1849
1878
  randomDoubleBattleMoves: ["extremespeed", "protect", "sacredfire", "snarl", "stompingtantrum", "stoneedge"],
1850
1879
  randomDoubleBattleLevel: 79,
@@ -1927,7 +1956,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1927
1956
  tier: "NFE",
1928
1957
  },
1929
1958
  blaziken: {
1930
- randomBattleMoves: ["closecombat", "flareblitz", "knockoff", "swordsdance", "stoneedge"],
1959
+ randomBattleMoves: ["closecombat", "flareblitz", "knockoff", "stoneedge", "swordsdance"],
1931
1960
  randomBattleLevel: 76,
1932
1961
  randomDoubleBattleMoves: ["closecombat", "flareblitz", "knockoff", "protect", "swordsdance"],
1933
1962
  randomDoubleBattleLevel: 78,
@@ -1945,7 +1974,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1945
1974
  tier: "NFE",
1946
1975
  },
1947
1976
  swampert: {
1948
- randomBattleMoves: ["earthquake", "icebeam", "protect", "scald", "stealthrock", "toxic", "flipturn"],
1977
+ randomBattleMoves: ["earthquake", "flipturn", "icebeam", "protect", "scald", "stealthrock", "toxic"],
1949
1978
  randomBattleLevel: 80,
1950
1979
  randomDoubleBattleMoves: ["highhorsepower", "icywind", "muddywater", "protect", "stealthrock", "wideguard"],
1951
1980
  randomDoubleBattleLevel: 86,
@@ -2080,7 +2109,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2080
2109
  randomBattleLevel: 82,
2081
2110
  randomDoubleBattleMoves: ["closecombat", "feint", "knockoff", "protect", "swordsdance", "tripleaxel", "zenheadbutt"],
2082
2111
  randomDoubleBattleLevel: 86,
2083
- tier: "(PU)",
2112
+ tier: "PU",
2084
2113
  doublesTier: "(DUU)",
2085
2114
  },
2086
2115
  gallademega: {
@@ -2123,7 +2152,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2123
2152
  randomBattleLevel: 86,
2124
2153
  randomDoubleBattleMoves: ["acrobatics", "defog", "leechlife", "protect", "swordsdance"],
2125
2154
  randomDoubleBattleLevel: 88,
2126
- tier: "NU",
2155
+ tier: "PU",
2127
2156
  doublesTier: "(DUU)",
2128
2157
  },
2129
2158
  shedinja: {
@@ -2300,7 +2329,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2300
2329
  },
2301
2330
  wailord: {
2302
2331
  randomBattleMoves: ["hydropump", "hypervoice", "icebeam", "waterspout"],
2303
- randomBattleLevel: 88,
2332
+ randomBattleLevel: 90,
2304
2333
  randomDoubleBattleMoves: ["hydropump", "hypervoice", "icebeam", "waterspout"],
2305
2334
  randomDoubleBattleLevel: 88,
2306
2335
  tier: "(PU)",
@@ -2441,13 +2470,13 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2441
2470
  randomDoubleBattleMoves: ["powerwhip", "protect", "recover", "stealthrock", "stoneedge", "stringshot", "toxic"],
2442
2471
  randomDoubleBattleLevel: 88,
2443
2472
  tier: "(PU)",
2444
- doublesTier: "DUU",
2473
+ doublesTier: "(DUU)",
2445
2474
  },
2446
2475
  anorith: {
2447
2476
  tier: "LC",
2448
2477
  },
2449
2478
  armaldo: {
2450
- randomBattleMoves: ["earthquake", "knockoff", "rapidspin", "stealthrock", "stoneedge", "swordsdance", "liquidation"],
2479
+ randomBattleMoves: ["earthquake", "knockoff", "liquidation", "rapidspin", "stealthrock", "stoneedge", "swordsdance"],
2451
2480
  randomBattleLevel: 86,
2452
2481
  randomDoubleBattleMoves: ["knockoff", "liquidation", "stoneedge", "superpower", "xscissor"],
2453
2482
  randomDoubleBattleLevel: 88,
@@ -2502,7 +2531,6 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2502
2531
  randomDoubleBattleMoves: ["allyswitch", "haze", "helpinghand", "nightshade", "painsplit", "trickroom", "willowisp"],
2503
2532
  randomDoubleBattleLevel: 84,
2504
2533
  tier: "NFE",
2505
- doublesTier: "DUU",
2506
2534
  },
2507
2535
  dusknoir: {
2508
2536
  randomBattleMoves: ["earthquake", "icepunch", "painsplit", "poltergeist", "shadowsneak", "trick", "willowisp"],
@@ -2670,7 +2698,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2670
2698
  tier: "Illegal",
2671
2699
  },
2672
2700
  latios: {
2673
- randomBattleMoves: ["mysticalfire", "calmmind", "dracometeor", "psyshock", "roost", "trick"],
2701
+ randomBattleMoves: ["calmmind", "dracometeor", "mysticalfire", "psyshock", "roost", "trick"],
2674
2702
  randomBattleLevel: 78,
2675
2703
  randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "mysticalfire", "psychic", "psyshock", "roost", "tailwind", "trick"],
2676
2704
  randomDoubleBattleLevel: 80,
@@ -2694,11 +2722,11 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2694
2722
  tier: "Illegal",
2695
2723
  },
2696
2724
  groudon: {
2697
- randomBattleMoves: ["precipiceblades", "heatcrash", "heavyslam", "stealthrock", "stoneedge", "swordsdance", "thunderwave"],
2725
+ randomBattleMoves: ["heatcrash", "heavyslam", "precipiceblades", "stealthrock", "stoneedge", "swordsdance", "thunderwave"],
2698
2726
  randomBattleLevel: 73,
2699
2727
  randomDoubleBattleMoves: ["heatcrash", "precipiceblades", "rockpolish", "stoneedge", "swordsdance"],
2700
2728
  randomDoubleBattleLevel: 72,
2701
- randomBattleNoDynamaxMoves: ["precipiceblades", "heatcrash", "stealthrock", "stoneedge", "swordsdance", "thunderwave"],
2729
+ randomBattleNoDynamaxMoves: ["heatcrash", "precipiceblades", "stealthrock", "stoneedge", "swordsdance", "thunderwave"],
2702
2730
  tier: "Uber",
2703
2731
  doublesTier: "DUber",
2704
2732
  },
@@ -2707,11 +2735,11 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2707
2735
  tier: "Illegal",
2708
2736
  },
2709
2737
  rayquaza: {
2710
- randomBattleMoves: ["dracometeor", "dragonascent", "dragondance", "extremespeed", "swordsdance", "vcreate", "earthquake"],
2738
+ randomBattleMoves: ["dracometeor", "dragonascent", "dragondance", "earthquake", "extremespeed", "swordsdance", "vcreate"],
2711
2739
  randomBattleLevel: 74,
2712
2740
  randomDoubleBattleMoves: ["dracometeor", "dragonascent", "dragonclaw", "dragondance", "earthpower", "extremespeed", "vcreate"],
2713
2741
  randomDoubleBattleLevel: 74,
2714
- randomBattleNoDynamaxMoves: ["dracometeor", "dragonascent", "dragondance", "extremespeed", "vcreate", "earthquake"],
2742
+ randomBattleNoDynamaxMoves: ["dracometeor", "dragonascent", "dragondance", "earthquake", "extremespeed", "vcreate"],
2715
2743
  tier: "Uber",
2716
2744
  doublesTier: "DUber",
2717
2745
  },
@@ -2959,7 +2987,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2959
2987
  randomBattleLevel: 82,
2960
2988
  randomDoubleBattleMoves: ["allyswitch", "bodypress", "explosion", "ironhead", "trickroom"],
2961
2989
  randomDoubleBattleLevel: 88,
2962
- tier: "NU",
2990
+ tier: "RU",
2963
2991
  doublesTier: "DUU",
2964
2992
  },
2965
2993
  chatot: {
@@ -2967,7 +2995,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
2967
2995
  tier: "Illegal",
2968
2996
  },
2969
2997
  spiritomb: {
2970
- randomBattleMoves: ["foulplay", "shadowsneak", "suckerpunch", "poltergeist", "trick"],
2998
+ randomBattleMoves: ["foulplay", "poltergeist", "shadowsneak", "suckerpunch", "trick"],
2971
2999
  randomBattleLevel: 88,
2972
3000
  randomDoubleBattleMoves: ["foulplay", "poltergeist", "protect", "snarl", "suckerpunch", "willowisp"],
2973
3001
  randomDoubleBattleLevel: 88,
@@ -3070,7 +3098,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3070
3098
  rotom: {
3071
3099
  randomBattleMoves: ["nastyplot", "shadowball", "thunderbolt", "voltswitch", "willowisp"],
3072
3100
  randomBattleLevel: 84,
3073
- randomDoubleBattleMoves: ["allyswitch", "electroweb", "protect", "shadowball", "thunderbolt", "voltswitch", "willowisp"],
3101
+ randomDoubleBattleMoves: ["electroweb", "protect", "shadowball", "thunderbolt", "voltswitch", "willowisp"],
3074
3102
  randomDoubleBattleLevel: 88,
3075
3103
  tier: "(PU)",
3076
3104
  doublesTier: "(DUU)",
@@ -3086,7 +3114,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3086
3114
  rotomwash: {
3087
3115
  randomBattleMoves: ["hydropump", "thunderbolt", "trick", "voltswitch", "willowisp"],
3088
3116
  randomBattleLevel: 82,
3089
- randomDoubleBattleMoves: ["allyswitch", "hydropump", "protect", "thunderbolt", "thunderwave", "voltswitch", "willowisp"],
3117
+ randomDoubleBattleMoves: ["hydropump", "protect", "thunderbolt", "thunderwave", "voltswitch", "willowisp"],
3090
3118
  randomDoubleBattleLevel: 84,
3091
3119
  tier: "UU",
3092
3120
  doublesTier: "(DUU)",
@@ -3108,7 +3136,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3108
3136
  doublesTier: "(DUU)",
3109
3137
  },
3110
3138
  rotommow: {
3111
- randomBattleMoves: ["leafstorm", "thunderbolt", "trick", "voltswitch", "willowisp", "nastyplot"],
3139
+ randomBattleMoves: ["leafstorm", "nastyplot", "thunderbolt", "trick", "voltswitch", "willowisp"],
3112
3140
  randomBattleLevel: 86,
3113
3141
  randomDoubleBattleMoves: ["electroweb", "leafstorm", "protect", "thunderbolt", "voltswitch", "willowisp"],
3114
3142
  randomDoubleBattleLevel: 88,
@@ -3132,7 +3160,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3132
3160
  doublesTier: "(DUU)",
3133
3161
  },
3134
3162
  azelf: {
3135
- randomBattleMoves: ["dazzlinggleam", "fireblast", "nastyplot", "psyshock", "stealthrock", "taunt", "uturn", "psychic"],
3163
+ randomBattleMoves: ["dazzlinggleam", "fireblast", "nastyplot", "psychic", "psyshock", "stealthrock", "taunt", "uturn"],
3136
3164
  randomBattleLevel: 82,
3137
3165
  randomDoubleBattleMoves: ["energyball", "fireblast", "nastyplot", "protect", "psychic", "shadowball", "uturn"],
3138
3166
  randomDoubleBattleLevel: 84,
@@ -3147,6 +3175,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3147
3175
  tier: "Uber",
3148
3176
  doublesTier: "DUber",
3149
3177
  },
3178
+ dialgaorigin: {
3179
+ isNonstandard: "Future",
3180
+ tier: "Illegal",
3181
+ },
3150
3182
  palkia: {
3151
3183
  randomBattleMoves: ["dracometeor", "fireblast", "hydropump", "spacialrend", "thunderwave"],
3152
3184
  randomBattleLevel: 74,
@@ -3155,10 +3187,14 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3155
3187
  tier: "Uber",
3156
3188
  doublesTier: "DUber",
3157
3189
  },
3190
+ palkiaorigin: {
3191
+ isNonstandard: "Future",
3192
+ tier: "Illegal",
3193
+ },
3158
3194
  heatran: {
3159
3195
  randomBattleMoves: ["earthpower", "flashcannon", "lavaplume", "protect", "stealthrock", "taunt", "toxic"],
3160
3196
  randomBattleLevel: 78,
3161
- randomDoubleBattleMoves: ["earthpower", "eruption", "flashcannon", "magmastorm", "protect"],
3197
+ randomDoubleBattleMoves: ["earthpower", "eruption", "flashcannon", "heatwave", "protect"],
3162
3198
  randomDoubleBattleLevel: 80,
3163
3199
  tier: "OU",
3164
3200
  doublesTier: "DOU",
@@ -3169,7 +3205,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3169
3205
  randomDoubleBattleMoves: ["bodyslam", "knockoff", "protect", "thunderwave"],
3170
3206
  randomDoubleBattleLevel: 86,
3171
3207
  tier: "(PU)",
3172
- doublesTier: "(DUU)",
3208
+ doublesTier: "DUU",
3173
3209
  },
3174
3210
  giratina: {
3175
3211
  randomBattleMoves: ["hex", "rest", "sleeptalk", "toxic", "willowisp"],
@@ -3182,7 +3218,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3182
3218
  giratinaorigin: {
3183
3219
  randomBattleMoves: ["dualwingbeat", "honeclaws", "outrage", "poltergeist", "shadowsneak"],
3184
3220
  randomBattleLevel: 74,
3185
- randomDoubleBattleMoves: ["breakingswipe", "dracometeor", "shadowball", "shadowsneak", "protect", "tailwind", "willowisp"],
3221
+ randomDoubleBattleMoves: ["breakingswipe", "dracometeor", "protect", "shadowball", "shadowsneak", "tailwind", "willowisp"],
3186
3222
  randomDoubleBattleLevel: 74,
3187
3223
  randomBattleNoDynamaxMoves: ["defog", "dracometeor", "earthquake", "poltergeist", "shadowsneak", "willowisp"],
3188
3224
  tier: "Uber",
@@ -3315,6 +3351,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3315
3351
  isNonstandard: "Past",
3316
3352
  tier: "Illegal",
3317
3353
  },
3354
+ samurotthisui: {
3355
+ isNonstandard: "Future",
3356
+ tier: "Illegal",
3357
+ },
3318
3358
  patrat: {
3319
3359
  isNonstandard: "Past",
3320
3360
  tier: "Illegal",
@@ -3445,7 +3485,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3445
3485
  randomBattleMoves: ["healbell", "knockoff", "protect", "toxic", "wish"],
3446
3486
  randomBattleLevel: 90,
3447
3487
  randomDoubleBattleMoves: ["bodyslam", "healpulse", "helpinghand", "knockoff", "protect", "thunderwave"],
3448
- randomDoubleBattleLevel: 89,
3488
+ randomDoubleBattleLevel: 90,
3449
3489
  tier: "PU",
3450
3490
  doublesTier: "(DUU)",
3451
3491
  },
@@ -3480,7 +3520,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3480
3520
  randomBattleLevel: 84,
3481
3521
  randomDoubleBattleMoves: ["earthpower", "knockoff", "muddywater", "powerwhip", "protect", "raindance"],
3482
3522
  randomDoubleBattleLevel: 86,
3483
- tier: "UU",
3523
+ tier: "RU",
3484
3524
  doublesTier: "(DUU)",
3485
3525
  },
3486
3526
  throh: {
@@ -3548,6 +3588,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3548
3588
  tier: "(PU)",
3549
3589
  doublesTier: "(DUU)",
3550
3590
  },
3591
+ lilliganthisui: {
3592
+ isNonstandard: "Future",
3593
+ tier: "Illegal",
3594
+ },
3551
3595
  basculin: {
3552
3596
  randomBattleMoves: ["aquajet", "crunch", "flipturn", "headsmash", "liquidation", "psychicfangs"],
3553
3597
  randomBattleLevel: 86,
@@ -3564,6 +3608,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3564
3608
  tier: "(PU)",
3565
3609
  doublesTier: "(DUU)",
3566
3610
  },
3611
+ basculinwhitestriped: {
3612
+ isNonstandard: "Future",
3613
+ tier: "Illegal",
3614
+ },
3567
3615
  sandile: {
3568
3616
  tier: "LC",
3569
3617
  },
@@ -3653,13 +3701,13 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3653
3701
  randomBattleLevel: 86,
3654
3702
  randomDoubleBattleMoves: ["bodypress", "irondefense", "painsplit", "shadowball", "trickroom", "willowisp"],
3655
3703
  randomDoubleBattleLevel: 88,
3656
- tier: "(PU)",
3704
+ tier: "PU",
3657
3705
  doublesTier: "(DUU)",
3658
3706
  },
3659
3707
  runerigus: {
3660
3708
  randomBattleMoves: ["earthquake", "haze", "poltergeist", "stealthrock", "toxicspikes", "willowisp"],
3661
3709
  randomBattleLevel: 84,
3662
- randomDoubleBattleMoves: ["allyswitch", "earthquake", "poltergeist", "protect", "trickroom", "willowisp"],
3710
+ randomDoubleBattleMoves: ["earthquake", "poltergeist", "protect", "trickroom", "willowisp"],
3663
3711
  randomDoubleBattleLevel: 88,
3664
3712
  tier: "(PU)",
3665
3713
  doublesTier: "(DUU)",
@@ -3705,12 +3753,20 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3705
3753
  zorua: {
3706
3754
  tier: "LC",
3707
3755
  },
3756
+ zoruahisui: {
3757
+ isNonstandard: "Future",
3758
+ tier: "Illegal",
3759
+ },
3708
3760
  zoroark: {
3709
3761
  randomBattleMoves: ["darkpulse", "flamethrower", "nastyplot", "sludgebomb", "trick"],
3710
3762
  randomDoubleBattleMoves: ["darkpulse", "flamethrower", "focusblast", "nastyplot", "protect", "sludgebomb"],
3711
3763
  tier: "NU",
3712
3764
  doublesTier: "(DUU)",
3713
3765
  },
3766
+ zoroarkhisui: {
3767
+ isNonstandard: "Future",
3768
+ tier: "Illegal",
3769
+ },
3714
3770
  minccino: {
3715
3771
  tier: "LC",
3716
3772
  },
@@ -3770,7 +3826,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3770
3826
  randomDoubleBattleMoves: ["auroraveil", "blizzard", "freezedry", "iceshard", "protect"],
3771
3827
  randomDoubleBattleLevel: 82,
3772
3828
  tier: "(PU)",
3773
- doublesTier: "DUU",
3829
+ doublesTier: "(DUU)",
3774
3830
  },
3775
3831
  deerling: {
3776
3832
  isNonstandard: "Past",
@@ -3841,7 +3897,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3841
3897
  doublesTier: "NFE",
3842
3898
  },
3843
3899
  ferrothorn: {
3844
- randomBattleMoves: ["gyroball", "leechseed", "powerwhip", "protect", "spikes", "stealthrock", "knockoff"],
3900
+ randomBattleMoves: ["gyroball", "knockoff", "leechseed", "powerwhip", "protect", "spikes", "stealthrock"],
3845
3901
  randomBattleLevel: 78,
3846
3902
  randomDoubleBattleMoves: ["bodypress", "gyroball", "knockoff", "leechseed", "powerwhip", "protect", "toxic"],
3847
3903
  randomDoubleBattleLevel: 83,
@@ -3907,7 +3963,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3907
3963
  },
3908
3964
  haxorus: {
3909
3965
  randomBattleMoves: ["closecombat", "dragondance", "earthquake", "outrage", "poisonjab"],
3910
- randomBattleLevel: 78,
3966
+ randomBattleLevel: 77,
3911
3967
  randomDoubleBattleMoves: ["closecombat", "dragonclaw", "dragondance", "poisonjab", "protect"],
3912
3968
  randomDoubleBattleLevel: 84,
3913
3969
  tier: "RUBL",
@@ -3917,7 +3973,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3917
3973
  tier: "LC",
3918
3974
  },
3919
3975
  beartic: {
3920
- randomBattleMoves: ["aquajet", "iciclecrash", "superpower", "swordsdance", "stoneedge"],
3976
+ randomBattleMoves: ["aquajet", "iciclecrash", "stoneedge", "superpower", "swordsdance"],
3921
3977
  randomBattleLevel: 86,
3922
3978
  randomDoubleBattleMoves: ["aquajet", "iciclecrash", "protect", "rockslide", "superpower", "swordsdance", "throatchop"],
3923
3979
  randomDoubleBattleLevel: 86,
@@ -3927,7 +3983,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3927
3983
  cryogonal: {
3928
3984
  randomBattleMoves: ["freezedry", "haze", "rapidspin", "recover", "toxic"],
3929
3985
  randomBattleLevel: 86,
3930
- randomDoubleBattleMoves: ["freezedry", "icebeam", "icywind", "haze", "rapidspin", "recover", "toxic"],
3986
+ randomDoubleBattleMoves: ["freezedry", "haze", "icebeam", "icywind", "rapidspin", "recover", "toxic"],
3931
3987
  randomDoubleBattleLevel: 88,
3932
3988
  tier: "(PU)",
3933
3989
  doublesTier: "(DUU)",
@@ -4020,6 +4076,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4020
4076
  tier: "NU",
4021
4077
  doublesTier: "(DUU)",
4022
4078
  },
4079
+ braviaryhisui: {
4080
+ isNonstandard: "Future",
4081
+ tier: "Illegal",
4082
+ },
4023
4083
  vullaby: {
4024
4084
  tier: "NFE",
4025
4085
  },
@@ -4070,7 +4130,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4070
4130
  randomDoubleBattleMoves: ["bugbuzz", "gigadrain", "heatwave", "hurricane", "protect", "quiverdance"],
4071
4131
  randomDoubleBattleLevel: 80,
4072
4132
  tier: "OU",
4073
- doublesTier: "DUU",
4133
+ doublesTier: "(DUU)",
4074
4134
  },
4075
4135
  cobalion: {
4076
4136
  randomBattleMoves: ["closecombat", "ironhead", "stealthrock", "stoneedge", "swordsdance", "voltswitch"],
@@ -4122,7 +4182,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4122
4182
  doublesTier: "(DUU)",
4123
4183
  },
4124
4184
  thundurustherian: {
4125
- randomBattleMoves: ["grassknot", "focusblast", "nastyplot", "psychic", "thunderbolt", "voltswitch"],
4185
+ randomBattleMoves: ["focusblast", "grassknot", "nastyplot", "psychic", "thunderbolt", "voltswitch"],
4126
4186
  randomBattleLevel: 80,
4127
4187
  randomDoubleBattleMoves: ["agility", "focusblast", "grassknot", "nastyplot", "sludgebomb", "thunderbolt", "voltswitch"],
4128
4188
  randomDoubleBattleLevel: 82,
@@ -4168,7 +4228,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4168
4228
  randomDoubleBattleMoves: ["dracometeor", "earthpower", "freezedry", "glaciate", "protect", "roost"],
4169
4229
  randomDoubleBattleLevel: 78,
4170
4230
  tier: "Uber",
4171
- doublesTier: "DUU",
4231
+ doublesTier: "(DUU)",
4172
4232
  },
4173
4233
  kyuremblack: {
4174
4234
  randomBattleMoves: ["dragondance", "fusionbolt", "iciclespear", "outrage"],
@@ -4204,7 +4264,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4204
4264
  isNonstandard: "Past",
4205
4265
  },
4206
4266
  genesect: {
4207
- randomBattleMoves: ["blazekick", "extremespeed", "leechlife", "ironhead", "shiftgear", "thunderbolt", "uturn"],
4267
+ randomBattleMoves: ["blazekick", "extremespeed", "ironhead", "leechlife", "shiftgear", "thunderbolt", "uturn"],
4208
4268
  randomBattleLevel: 74,
4209
4269
  randomDoubleBattleMoves: ["blazekick", "ironhead", "leechlife", "protect", "shiftgear", "thunderbolt", "uturn"],
4210
4270
  randomDoubleBattleLevel: 78,
@@ -4277,7 +4337,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4277
4337
  randomBattleLevel: 80,
4278
4338
  randomDoubleBattleMoves: ["bodyslam", "highhorsepower", "knockoff", "protect", "quickattack", "swordsdance", "uturn"],
4279
4339
  randomDoubleBattleLevel: 86,
4280
- tier: "UU",
4340
+ tier: "RUBL",
4281
4341
  doublesTier: "(DUU)",
4282
4342
  },
4283
4343
  fletchling: {
@@ -4348,7 +4408,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4348
4408
  tier: "LC",
4349
4409
  },
4350
4410
  pangoro: {
4351
- randomBattleMoves: ["closecombat", "knockoff", "gunkshot", "icepunch", "partingshot"],
4411
+ randomBattleMoves: ["closecombat", "gunkshot", "icepunch", "knockoff", "partingshot"],
4352
4412
  randomBattleLevel: 84,
4353
4413
  randomDoubleBattleMoves: ["bulletpunch", "closecombat", "drainpunch", "gunkshot", "icepunch", "knockoff", "protect"],
4354
4414
  randomDoubleBattleLevel: 88,
@@ -4419,7 +4479,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4419
4479
  randomBattleMoves: ["bellydrum", "drainpunch", "facade", "playrough"],
4420
4480
  randomBattleLevel: 80,
4421
4481
  randomDoubleBattleMoves: ["faketears", "flamethrower", "helpinghand", "playrough", "stickyweb"],
4422
- randomDoubleBattleLevel: 85,
4482
+ randomDoubleBattleLevel: 86,
4423
4483
  tier: "NUBL",
4424
4484
  doublesTier: "(DUU)",
4425
4485
  },
@@ -4530,6 +4590,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4530
4590
  sliggoo: {
4531
4591
  tier: "NFE",
4532
4592
  },
4593
+ sliggoohisui: {
4594
+ isNonstandard: "Future",
4595
+ tier: "Illegal",
4596
+ },
4533
4597
  goodra: {
4534
4598
  randomBattleMoves: ["dracometeor", "earthquake", "fireblast", "powerwhip", "sludgebomb", "thunderbolt"],
4535
4599
  randomBattleLevel: 82,
@@ -4538,13 +4602,17 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4538
4602
  tier: "NU",
4539
4603
  doublesTier: "(DUU)",
4540
4604
  },
4605
+ goodrahisui: {
4606
+ isNonstandard: "Future",
4607
+ tier: "Illegal",
4608
+ },
4541
4609
  klefki: {
4542
4610
  randomBattleMoves: ["magnetrise", "playrough", "spikes", "thunderwave", "toxic"],
4543
4611
  randomBattleLevel: 82,
4544
4612
  randomDoubleBattleMoves: ["dazzlinggleam", "foulplay", "spikes", "thunderwave"],
4545
4613
  randomDoubleBattleLevel: 84,
4546
4614
  tier: "RU",
4547
- doublesTier: "(DUU)",
4615
+ doublesTier: "DUU",
4548
4616
  },
4549
4617
  phantump: {
4550
4618
  tier: "LC",
@@ -4612,6 +4680,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4612
4680
  tier: "(PU)",
4613
4681
  doublesTier: "(DUU)",
4614
4682
  },
4683
+ avalugghisui: {
4684
+ isNonstandard: "Future",
4685
+ tier: "Illegal",
4686
+ },
4615
4687
  noibat: {
4616
4688
  tier: "LC",
4617
4689
  },
@@ -4636,7 +4708,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4636
4708
  tier: "Illegal",
4637
4709
  },
4638
4710
  yveltal: {
4639
- randomBattleMoves: ["defog", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "darkpulse", "taunt"],
4711
+ randomBattleMoves: ["darkpulse", "defog", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "taunt"],
4640
4712
  randomBattleLevel: 69,
4641
4713
  randomDoubleBattleMoves: ["darkpulse", "heatwave", "knockoff", "oblivionwing", "roost", "suckerpunch", "tailwind", "uturn"],
4642
4714
  randomDoubleBattleLevel: 71,
@@ -4655,7 +4727,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4655
4727
  randomBattleMoves: ["coil", "extremespeed", "irontail", "outrage", "thousandarrows"],
4656
4728
  randomBattleLevel: 82,
4657
4729
  randomDoubleBattleMoves: ["dragondance", "extremespeed", "irontail", "protect", "rockslide", "thousandarrows"],
4658
- randomDoubleBattleLevel: 76,
4730
+ randomDoubleBattleLevel: 77,
4659
4731
  tier: "UU",
4660
4732
  doublesTier: "(DUU)",
4661
4733
  },
@@ -4698,7 +4770,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4698
4770
  tier: "NFE",
4699
4771
  },
4700
4772
  decidueye: {
4701
- randomBattleMoves: ["bravebird", "leafblade", "roost", "shadowsneak", "swordsdance", "poltergeist"],
4773
+ randomBattleMoves: ["bravebird", "leafblade", "poltergeist", "roost", "shadowsneak", "swordsdance"],
4702
4774
  randomBattleLevel: 86,
4703
4775
  randomDoubleBattleMoves: ["bravebird", "leafblade", "protect", "shadowsneak", "spiritshackle", "swordsdance"],
4704
4776
  randomDoubleBattleLevel: 88,
@@ -4706,6 +4778,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4706
4778
  tier: "NU",
4707
4779
  doublesTier: "(DUU)",
4708
4780
  },
4781
+ decidueyehisui: {
4782
+ isNonstandard: "Future",
4783
+ tier: "Illegal",
4784
+ },
4709
4785
  litten: {
4710
4786
  tier: "LC",
4711
4787
  },
@@ -4881,7 +4957,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4881
4957
  tier: "LC",
4882
4958
  },
4883
4959
  araquanid: {
4884
- randomBattleMoves: ["liquidation", "leechlife", "mirrorcoat", "stickyweb", "toxic"],
4960
+ randomBattleMoves: ["leechlife", "liquidation", "mirrorcoat", "stickyweb", "toxic"],
4885
4961
  randomBattleLevel: 80,
4886
4962
  randomDoubleBattleMoves: ["leechlife", "liquidation", "lunge", "protect", "stickyweb", "wideguard"],
4887
4963
  randomDoubleBattleLevel: 84,
@@ -4955,7 +5031,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4955
5031
  randomBattleLevel: 84,
4956
5032
  randomDoubleBattleMoves: ["highjumpkick", "knockoff", "playrough", "powerwhip", "rapidspin", "tripleaxel", "uturn"],
4957
5033
  randomDoubleBattleLevel: 88,
4958
- tier: "PU",
5034
+ tier: "NU",
4959
5035
  doublesTier: "DOU",
4960
5036
  },
4961
5037
  comfey: {
@@ -4964,7 +5040,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4964
5040
  randomDoubleBattleMoves: ["defog", "drainingkiss", "floralhealing", "gigadrain", "helpinghand", "protect"],
4965
5041
  randomDoubleBattleLevel: 89,
4966
5042
  tier: "NU",
4967
- doublesTier: "DOU",
5043
+ doublesTier: "DUU",
4968
5044
  },
4969
5045
  oranguru: {
4970
5046
  randomBattleMoves: ["focusblast", "nastyplot", "psychic", "thunderbolt", "trickroom"],
@@ -5111,7 +5187,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5111
5187
  randomBattleLevel: 84,
5112
5188
  randomDoubleBattleMoves: ["multiattack", "rockslide", "swordsdance", "tailwind"],
5113
5189
  randomDoubleBattleLevel: 89,
5114
- tier: "(PU)",
5190
+ tier: "NU",
5115
5191
  doublesTier: "(DUU)",
5116
5192
  },
5117
5193
  silvallyice: {
@@ -5307,7 +5383,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5307
5383
  randomDoubleBattleMoves: ["grassknot", "meteorbeam", "protect", "sludgebomb", "thunderbolt"],
5308
5384
  randomDoubleBattleLevel: 81,
5309
5385
  tier: "UU",
5310
- doublesTier: "DOU",
5386
+ doublesTier: "DUU",
5311
5387
  },
5312
5388
  buzzwole: {
5313
5389
  randomBattleMoves: ["closecombat", "darkestlariat", "dualwingbeat", "ironhead", "leechlife", "stoneedge"],
@@ -5332,7 +5408,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5332
5408
  randomDoubleBattleMoves: ["dazzlinggleam", "energyball", "thunderbolt", "voltswitch"],
5333
5409
  randomDoubleBattleLevel: 79,
5334
5410
  tier: "RU",
5335
- doublesTier: "(DUU)",
5411
+ doublesTier: "DUU",
5336
5412
  },
5337
5413
  celesteela: {
5338
5414
  randomBattleMoves: ["airslash", "earthquake", "fireblast", "flashcannon", "leechseed", "protect"],
@@ -5341,7 +5417,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5341
5417
  randomDoubleBattleLevel: 78,
5342
5418
  randomBattleNoDynamaxMoves: ["airslash", "earthquake", "fireblast", "heavyslam", "leechseed", "protect"],
5343
5419
  tier: "UU",
5344
- doublesTier: "DUU",
5420
+ doublesTier: "DOU",
5345
5421
  },
5346
5422
  kartana: {
5347
5423
  randomBattleMoves: ["knockoff", "leafblade", "sacredsword", "smartstrike", "swordsdance"],
@@ -5389,7 +5465,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5389
5465
  },
5390
5466
  magearna: {
5391
5467
  randomBattleMoves: ["agility", "calmmind", "flashcannon", "fleurcannon"],
5392
- randomBattleLevel: 76,
5468
+ randomBattleLevel: 75,
5393
5469
  randomDoubleBattleMoves: ["agility", "aurasphere", "dazzlinggleam", "flashcannon", "fleurcannon", "protect", "trick"],
5394
5470
  randomDoubleBattleLevel: 72,
5395
5471
  tier: "Uber",
@@ -5452,7 +5528,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5452
5528
  doublesTier: "(DUU)",
5453
5529
  },
5454
5530
  melmetal: {
5455
- randomBattleMoves: ["doubleironbash", "earthquake", "thunderwave", "superpower", "thunderpunch"],
5531
+ randomBattleMoves: ["doubleironbash", "earthquake", "superpower", "thunderpunch", "thunderwave"],
5456
5532
  randomBattleLevel: 74,
5457
5533
  randomDoubleBattleMoves: ["acidarmor", "bodypress", "doubleironbash", "protect", "thunderpunch", "thunderwave"],
5458
5534
  randomDoubleBattleLevel: 76,
@@ -5501,7 +5577,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5501
5577
  },
5502
5578
  cinderacegmax: {
5503
5579
  randomBattleLevel: 74,
5504
- randomBattleMoves: ["bulkup", "pyroball", "highjumpkick", "suckerpunch"],
5580
+ randomBattleMoves: ["bulkup", "highjumpkick", "pyroball", "suckerpunch"],
5505
5581
  isNonstandard: "Gigantamax",
5506
5582
  tier: "AG",
5507
5583
  doublesTier: "(DUber)",
@@ -5651,7 +5727,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5651
5727
  },
5652
5728
  coalossalgmax: {
5653
5729
  randomBattleMoves: ["overheat", "rapidspin", "spikes", "stealthrock", "stoneedge", "willowisp"],
5654
- randomBattleLevel: 86,
5730
+ randomBattleLevel: 87,
5655
5731
  randomDoubleBattleMoves: ["fireblast", "incinerate", "protect", "stealthrock", "stoneedge", "willowisp"],
5656
5732
  randomDoubleBattleLevel: 85,
5657
5733
  isNonstandard: "Gigantamax",
@@ -5693,7 +5769,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5693
5769
  tier: "LC",
5694
5770
  },
5695
5771
  sandaconda: {
5696
- randomBattleMoves: ["coil", "earthquake", "glare", "stealthrock", "stoneedge", "rest"],
5772
+ randomBattleMoves: ["coil", "earthquake", "glare", "rest", "stealthrock", "stoneedge"],
5697
5773
  randomBattleLevel: 84,
5698
5774
  tier: "PU",
5699
5775
  doublesTier: "(DUU)",
@@ -5760,13 +5836,13 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5760
5836
  randomBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip"],
5761
5837
  randomBattleLevel: 84,
5762
5838
  randomDoubleBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip", "protect"],
5763
- randomDoubleBattleLevel: 88,
5839
+ randomDoubleBattleLevel: 89,
5764
5840
  tier: "(PU)",
5765
5841
  doublesTier: "(DUU)",
5766
5842
  },
5767
5843
  centiskorchgmax: {
5768
5844
  randomDoubleBattleMoves: ["coil", "firelash", "knockoff", "leechlife", "powerwhip", "protect"],
5769
- randomDoubleBattleLevel: 88,
5845
+ randomDoubleBattleLevel: 89,
5770
5846
  isNonstandard: "Gigantamax",
5771
5847
  tier: "AG",
5772
5848
  doublesTier: "(DUber)",
@@ -5905,7 +5981,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5905
5981
  randomBattleLevel: 84,
5906
5982
  randomDoubleBattleMoves: ["expandingforce", "followme", "healpulse", "helpinghand", "protect"],
5907
5983
  randomDoubleBattleLevel: 80,
5908
- tier: "PUBL",
5984
+ tier: "NU",
5909
5985
  doublesTier: "DOU",
5910
5986
  },
5911
5987
  morpeko: {
@@ -5964,7 +6040,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5964
6040
  randomBattleLevel: 86,
5965
6041
  randomDoubleBattleMoves: ["blizzard", "fishiousrend", "iciclecrash", "protect", "superfang"],
5966
6042
  randomDoubleBattleLevel: 88,
5967
- tier: "NUBL",
6043
+ tier: "(PU)",
5968
6044
  doublesTier: "(DUU)",
5969
6045
  },
5970
6046
  duraludon: {
@@ -6012,14 +6088,14 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6012
6088
  },
6013
6089
  zamazenta: {
6014
6090
  randomBattleMoves: ["closecombat", "crunch", "psychicfangs", "wildcharge"],
6015
- randomBattleLevel: 74,
6091
+ randomBattleLevel: 73,
6016
6092
  randomDoubleBattleMoves: ["closecombat", "crunch", "playrough", "protect", "psychicfangs"],
6017
6093
  randomDoubleBattleLevel: 74,
6018
6094
  tier: "Uber",
6019
6095
  doublesTier: "DUber",
6020
6096
  },
6021
6097
  zamazentacrowned: {
6022
- randomBattleMoves: ["behemothbash", "closecombat", "crunch", "psychicfangs", "howl"],
6098
+ randomBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "psychicfangs"],
6023
6099
  randomBattleLevel: 71,
6024
6100
  randomDoubleBattleMoves: ["behemothbash", "closecombat", "crunch", "howl", "protect", "psychicfangs"],
6025
6101
  randomDoubleBattleLevel: 72,
@@ -6065,7 +6141,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6065
6141
  doublesTier: "(DUber)",
6066
6142
  },
6067
6143
  urshifurapidstrikegmax: {
6068
- randomBattleMoves: ["bulkup", "closecombat", "surgingstrikes", "icepunch", "uturn"],
6144
+ randomBattleMoves: ["bulkup", "closecombat", "icepunch", "surgingstrikes", "uturn"],
6069
6145
  randomBattleLevel: 78,
6070
6146
  isNonstandard: "Gigantamax",
6071
6147
  tier: "AG",
@@ -6091,23 +6167,23 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6091
6167
  randomDoubleBattleMoves: ["electroweb", "extremespeed", "protect", "thundercage", "voltswitch"],
6092
6168
  randomDoubleBattleLevel: 82,
6093
6169
  randomBattleNoDynamaxMoves: ["explosion", "rapidspin", "thunderbolt", "voltswitch"],
6094
- tier: "UU",
6170
+ tier: "OU",
6095
6171
  doublesTier: "DOU",
6096
6172
  },
6097
6173
  regidrago: {
6098
- randomBattleMoves: ["dracometeor", "dragondance", "hammerarm", "outrage", "firefang"],
6174
+ randomBattleMoves: ["dracometeor", "dragondance", "firefang", "hammerarm", "outrage"],
6099
6175
  randomBattleLevel: 78,
6100
6176
  randomDoubleBattleMoves: ["crunch", "dragonclaw", "dragonenergy", "firefang"],
6101
6177
  randomDoubleBattleLevel: 78,
6102
6178
  tier: "NUBL",
6103
- doublesTier: "DUU",
6179
+ doublesTier: "(DUU)",
6104
6180
  },
6105
6181
  glastrier: {
6106
6182
  randomBattleMoves: ["closecombat", "highhorsepower", "iciclecrash", "swordsdance"],
6107
6183
  randomBattleLevel: 82,
6108
6184
  randomDoubleBattleMoves: ["closecombat", "highhorsepower", "iciclecrash", "protect"],
6109
6185
  randomDoubleBattleLevel: 82,
6110
- tier: "NU",
6186
+ tier: "PU",
6111
6187
  doublesTier: "(DUU)",
6112
6188
  },
6113
6189
  spectrier: {
@@ -6119,15 +6195,15 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6119
6195
  doublesTier: "DUU",
6120
6196
  },
6121
6197
  calyrex: {
6122
- randomBattleMoves: ["calmmind", "gigadrain", "psyshock", "substitute", "leechseed"],
6198
+ randomBattleMoves: ["calmmind", "gigadrain", "leechseed", "psyshock", "substitute"],
6123
6199
  randomBattleLevel: 88,
6124
- randomDoubleBattleMoves: ["encore", "helpinghand", "leafstorm", "pollenpuff", "protect"],
6200
+ randomDoubleBattleMoves: ["helpinghand", "leafstorm", "pollenpuff", "protect"],
6125
6201
  randomDoubleBattleLevel: 94,
6126
6202
  tier: "(PU)",
6127
6203
  doublesTier: "(DUU)",
6128
6204
  },
6129
6205
  calyrexice: {
6130
- randomBattleMoves: ["closecombat", "glaciallance", "highhorsepower", "trickroom", "agility"],
6206
+ randomBattleMoves: ["agility", "closecombat", "glaciallance", "highhorsepower", "trickroom"],
6131
6207
  randomBattleLevel: 72,
6132
6208
  randomDoubleBattleMoves: ["closecombat", "glaciallance", "highhorsepower", "swordsdance", "trickroom"],
6133
6209
  randomDoubleBattleLevel: 72,
@@ -6142,6 +6218,42 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6142
6218
  tier: "Uber",
6143
6219
  doublesTier: "DUber",
6144
6220
  },
6221
+ wyrdeer: {
6222
+ isNonstandard: "Future",
6223
+ tier: "Illegal",
6224
+ },
6225
+ kleavor: {
6226
+ isNonstandard: "Future",
6227
+ tier: "Illegal",
6228
+ },
6229
+ ursaluna: {
6230
+ isNonstandard: "Future",
6231
+ tier: "Illegal",
6232
+ },
6233
+ basculegion: {
6234
+ isNonstandard: "Future",
6235
+ tier: "Illegal",
6236
+ },
6237
+ basculegionf: {
6238
+ isNonstandard: "Future",
6239
+ tier: "Illegal",
6240
+ },
6241
+ sneasler: {
6242
+ isNonstandard: "Future",
6243
+ tier: "Illegal",
6244
+ },
6245
+ overqwil: {
6246
+ isNonstandard: "Future",
6247
+ tier: "Illegal",
6248
+ },
6249
+ enamorus: {
6250
+ isNonstandard: "Future",
6251
+ tier: "Illegal",
6252
+ },
6253
+ enamorustherian: {
6254
+ isNonstandard: "Future",
6255
+ tier: "Illegal",
6256
+ },
6145
6257
  missingno: {
6146
6258
  isNonstandard: "Custom",
6147
6259
  tier: "Illegal",