@pkmn/sim 0.5.22 → 0.5.25

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/LICENSE +1 -1
  2. package/build/config/formats.js +581 -481
  3. package/build/config/formats.js.map +1 -1
  4. package/build/data/aliases.js +9 -5
  5. package/build/data/aliases.js.map +1 -1
  6. package/build/data/conditions.js +1 -1
  7. package/build/data/conditions.js.map +1 -1
  8. package/build/data/formats-data.js +830 -28
  9. package/build/data/formats-data.js.map +1 -1
  10. package/build/data/learnsets.js +64 -39
  11. package/build/data/learnsets.js.map +1 -1
  12. package/build/data/mods/gen1/formats-data.js +1 -1
  13. package/build/data/mods/gen1/formats-data.js.map +1 -1
  14. package/build/data/mods/gen1/moves.js +5 -0
  15. package/build/data/mods/gen1/moves.js.map +1 -1
  16. package/build/data/mods/gen1/scripts.js +4 -2
  17. package/build/data/mods/gen1/scripts.js.map +1 -1
  18. package/build/data/mods/gen2/moves.js +0 -5
  19. package/build/data/mods/gen2/moves.js.map +1 -1
  20. package/build/data/mods/gen2/rulesets.js +7 -1
  21. package/build/data/mods/gen2/rulesets.js.map +1 -1
  22. package/build/data/mods/gen3/formats-data.js +3 -3
  23. package/build/data/mods/gen3/formats-data.js.map +1 -1
  24. package/build/data/mods/gen3/rulesets.js +1 -1
  25. package/build/data/mods/gen3/rulesets.js.map +1 -1
  26. package/build/data/mods/gen4/rulesets.js +1 -1
  27. package/build/data/mods/gen4/rulesets.js.map +1 -1
  28. package/build/data/mods/gen5/rulesets.js +1 -1
  29. package/build/data/mods/gen5/rulesets.js.map +1 -1
  30. package/build/data/mods/gen6/formats-data.js +64 -64
  31. package/build/data/mods/gen6/formats-data.js.map +1 -1
  32. package/build/data/mods/gen7/rulesets.js +1 -1
  33. package/build/data/mods/gen7/rulesets.js.map +1 -1
  34. package/build/data/pokedex.js +1 -1
  35. package/build/data/rulesets.js +232 -3
  36. package/build/data/rulesets.js.map +1 -1
  37. package/build/data/tags.js +26 -9
  38. package/build/data/tags.js.map +1 -1
  39. package/build/lib/utils.d.ts +4 -0
  40. package/build/lib/utils.js +20 -1
  41. package/build/lib/utils.js.map +1 -1
  42. package/build/sim/battle-stream.js +3 -0
  43. package/build/sim/battle-stream.js.map +1 -1
  44. package/build/sim/battle.d.ts +1 -1
  45. package/build/sim/battle.js.map +1 -1
  46. package/build/sim/dex-conditions.d.ts +1 -0
  47. package/build/sim/dex-conditions.js.map +1 -1
  48. package/build/sim/dex-species.d.ts +5 -0
  49. package/build/sim/dex-species.js +11 -3
  50. package/build/sim/dex-species.js.map +1 -1
  51. package/build/sim/exported-global-types.d.ts +4 -0
  52. package/build/sim/global-types.d.ts +4 -0
  53. package/build/sim/pokemon.d.ts +1 -0
  54. package/build/sim/pokemon.js +1 -0
  55. package/build/sim/pokemon.js.map +1 -1
  56. package/build/sim/team-validator.js +5 -1
  57. package/build/sim/team-validator.js.map +1 -1
  58. package/config/formats.ts +575 -466
  59. package/data/aliases.ts +9 -5
  60. package/data/conditions.ts +1 -1
  61. package/data/formats-data.ts +830 -28
  62. package/data/learnsets.ts +64 -39
  63. package/data/mods/gen1/formats-data.ts +1 -1
  64. package/data/mods/gen1/moves.ts +5 -0
  65. package/data/mods/gen1/scripts.ts +3 -2
  66. package/data/mods/gen2/moves.ts +0 -5
  67. package/data/mods/gen2/rulesets.ts +8 -1
  68. package/data/mods/gen3/formats-data.ts +3 -3
  69. package/data/mods/gen3/rulesets.ts +1 -1
  70. package/data/mods/gen4/rulesets.ts +1 -1
  71. package/data/mods/gen5/rulesets.ts +1 -1
  72. package/data/mods/gen6/formats-data.ts +64 -64
  73. package/data/mods/gen7/rulesets.ts +1 -1
  74. package/data/pokedex.ts +1 -1
  75. package/data/rulesets.ts +212 -3
  76. package/data/tags.ts +27 -9
  77. package/lib/utils.ts +16 -0
  78. package/package.json +2 -2
  79. package/sim/battle-stream.ts +3 -0
  80. package/sim/battle.ts +1 -1
  81. package/sim/dex-conditions.ts +1 -0
  82. package/sim/dex-species.ts +15 -3
  83. package/sim/exported-global-types.ts +4 -0
  84. package/sim/global-types.ts +4 -0
  85. package/sim/pokemon.ts +2 -0
  86. package/sim/team-validator.ts +6 -1
@@ -9,7 +9,7 @@ exports.FormatsData = {
9
9
  tier: "NFE",
10
10
  },
11
11
  venusaur: {
12
- randomBattleMoves: ["leafstorm", "leechseed", "sleeppowder", "sludgebomb", "substitute"],
12
+ randomBattleMoves: ["gigadrain", "leechseed", "sleeppowder", "sludgebomb", "substitute"],
13
13
  randomDoubleBattleMoves: ["gigadrain", "hiddenpowerfire", "hiddenpowerice", "powerwhip", "protect", "sleeppowder", "sludgebomb"],
14
14
  tier: "RU",
15
15
  doublesTier: "DOU",
@@ -141,7 +141,7 @@ exports.FormatsData = {
141
141
  tier: "LC",
142
142
  },
143
143
  pikachu: {
144
- randomBattleMoves: ["grassknot", "hiddenpowerice", "irontail", "knockoff", "voltswitch", "volttackle"],
144
+ randomBattleMoves: ["extremespeed", "grassknot", "hiddenpowerice", "knockoff", "voltswitch", "volttackle"],
145
145
  randomDoubleBattleMoves: ["brickbreak", "discharge", "encore", "extremespeed", "fakeout", "grassknot", "hiddenpowerice", "knockoff", "protect", "substitute", "thunderbolt", "voltswitch", "volttackle"],
146
146
  tier: "NFE",
147
147
  },
@@ -331,7 +331,7 @@ exports.FormatsData = {
331
331
  tier: "LC",
332
332
  },
333
333
  arcanine: {
334
- randomBattleMoves: ["closecombat", "crunch", "extremespeed", "flareblitz", "morningsun", "roar", "toxic", "wildcharge", "willowisp"],
334
+ randomBattleMoves: ["closecombat", "extremespeed", "flareblitz", "morningsun", "roar", "toxic", "wildcharge", "willowisp"],
335
335
  randomDoubleBattleMoves: ["closecombat", "extremespeed", "flareblitz", "protect", "snarl", "wildcharge", "willowisp"],
336
336
  tier: "UU",
337
337
  doublesTier: "DOU",
@@ -349,7 +349,7 @@ exports.FormatsData = {
349
349
  doublesTier: "(DUU)",
350
350
  },
351
351
  politoed: {
352
- randomBattleMoves: ["encore", "hypnosis", "perishsong", "protect", "rest", "scald", "toxic"],
352
+ randomBattleMoves: ["encore", "icebeam", "protect", "rest", "scald", "toxic"],
353
353
  randomDoubleBattleMoves: ["encore", "focusblast", "helpinghand", "hiddenpowergrass", "hydropump", "hypnosis", "icebeam", "icywind", "protect", "scald"],
354
354
  tier: "(PU)",
355
355
  doublesTier: "DOU",
@@ -393,7 +393,7 @@ exports.FormatsData = {
393
393
  tier: "NFE",
394
394
  },
395
395
  victreebel: {
396
- randomBattleMoves: ["growth", "knockoff", "powerwhip", "sleeppowder", "sludgebomb", "solarbeam", "suckerpunch", "sunnyday", "weatherball"],
396
+ randomBattleMoves: ["knockoff", "powerwhip", "sleeppowder", "sludgebomb", "solarbeam", "suckerpunch", "sunnyday", "weatherball"],
397
397
  randomDoubleBattleMoves: ["growth", "knockoff", "powerwhip", "protect", "sleeppowder", "sludgebomb", "solarbeam", "suckerpunch", "sunnyday", "weatherball"],
398
398
  tier: "PUBL",
399
399
  doublesTier: "(DUU)",
@@ -414,7 +414,7 @@ exports.FormatsData = {
414
414
  tier: "NFE",
415
415
  },
416
416
  golem: {
417
- randomBattleMoves: ["earthquake", "explosion", "rockblast", "stealthrock", "suckerpunch", "toxic"],
417
+ randomBattleMoves: ["earthquake", "explosion", "stoneedge", "stealthrock", "suckerpunch", "toxic"],
418
418
  randomDoubleBattleMoves: ["earthquake", "firepunch", "hammerarm", "protect", "rockslide", "stoneedge", "suckerpunch"],
419
419
  tier: "PU",
420
420
  doublesTier: "(DUU)",
@@ -423,7 +423,7 @@ exports.FormatsData = {
423
423
  tier: "LC",
424
424
  },
425
425
  rapidash: {
426
- randomBattleMoves: ["drillrun", "flareblitz", "morningsun", "solarbeam", "sunnyday", "wildcharge", "willowisp"],
426
+ randomBattleMoves: ["drillrun", "flareblitz", "morningsun", "wildcharge", "willowisp"],
427
427
  randomDoubleBattleMoves: ["drillrun", "flamecharge", "flareblitz", "hypnosis", "megahorn", "protect", "wildcharge", "willowisp"],
428
428
  tier: "PU",
429
429
  doublesTier: "(DUU)",
@@ -463,7 +463,7 @@ exports.FormatsData = {
463
463
  doublesTier: "(DUU)",
464
464
  },
465
465
  farfetchd: {
466
- randomBattleMoves: ["bravebird", "knockoff", "leafblade", "return", "roost", "swordsdance"],
466
+ randomBattleMoves: ["bravebird", "knockoff", "leafblade", "return", "swordsdance"],
467
467
  randomDoubleBattleMoves: ["bravebird", "leafblade", "nightslash", "protect", "return", "swordsdance"],
468
468
  tier: "(PU)",
469
469
  doublesTier: "(DUU)",
@@ -481,7 +481,7 @@ exports.FormatsData = {
481
481
  tier: "LC",
482
482
  },
483
483
  dewgong: {
484
- randomBattleMoves: ["encore", "icebeam", "perishsong", "protect", "surf", "toxic"],
484
+ randomBattleMoves: ["encore", "icebeam", "protect", "surf", "toxic"],
485
485
  randomDoubleBattleMoves: ["encore", "fakeout", "icebeam", "perishsong", "protect", "surf", "toxic"],
486
486
  tier: "(PU)",
487
487
  doublesTier: "(DUU)",
@@ -512,7 +512,7 @@ exports.FormatsData = {
512
512
  doublesTier: "NFE",
513
513
  },
514
514
  gengar: {
515
- randomBattleMoves: ["disable", "focusblast", "painsplit", "shadowball", "sludgewave", "substitute", "willowisp"],
515
+ randomBattleMoves: ["disable", "focusblast", "shadowball", "sludgewave", "substitute", "trick", "willowisp"],
516
516
  randomDoubleBattleMoves: ["dazzlinggleam", "disable", "focusblast", "hypnosis", "protect", "shadowball", "sludgebomb", "substitute", "taunt", "willowisp"],
517
517
  tier: "OU",
518
518
  doublesTier: "DOU",
@@ -560,7 +560,7 @@ exports.FormatsData = {
560
560
  tier: "LC",
561
561
  },
562
562
  electrode: {
563
- randomBattleMoves: ["foulplay", "hiddenpowergrass", "signalbeam", "taunt", "thunderbolt", "voltswitch"],
563
+ randomBattleMoves: ["foulplay", "hiddenpowergrass", "hiddenpowerice", "signalbeam", "taunt", "thunderbolt", "voltswitch"],
564
564
  randomDoubleBattleMoves: ["discharge", "foulplay", "hiddenpowerice", "protect", "taunt", "thunderwave", "voltswitch"],
565
565
  tier: "PU",
566
566
  doublesTier: "(DUU)",
@@ -617,7 +617,7 @@ exports.FormatsData = {
617
617
  tier: "LC",
618
618
  },
619
619
  weezing: {
620
- randomBattleMoves: ["fireblast", "painsplit", "protect", "sludgebomb", "toxicspikes", "willowisp"],
620
+ randomBattleMoves: ["fireblast", "painsplit", "sludgebomb", "toxicspikes", "willowisp"],
621
621
  randomDoubleBattleMoves: ["explosion", "fireblast", "painsplit", "protect", "sludgebomb", "thunderbolt", "toxic", "willowisp"],
622
622
  tier: "NU",
623
623
  doublesTier: "(DUU)",
@@ -626,12 +626,12 @@ exports.FormatsData = {
626
626
  tier: "LC",
627
627
  },
628
628
  rhydon: {
629
- randomBattleMoves: ["earthquake", "megahorn", "rockblast", "stealthrock", "stoneedge", "toxic"],
629
+ randomBattleMoves: ["earthquake", "megahorn", "stealthrock", "stoneedge", "toxic"],
630
630
  tier: "NU",
631
631
  doublesTier: "NFE",
632
632
  },
633
633
  rhyperior: {
634
- randomBattleMoves: ["dragontail", "earthquake", "icepunch", "megahorn", "rockblast", "rockpolish", "stoneedge"],
634
+ randomBattleMoves: ["dragontail", "earthquake", "icepunch", "megahorn", "rockpolish", "stoneedge"],
635
635
  randomDoubleBattleMoves: ["earthquake", "hammerarm", "megahorn", "protect", "rockslide", "stealthrock", "stoneedge"],
636
636
  tier: "RU",
637
637
  doublesTier: "DUU",
@@ -719,7 +719,7 @@ exports.FormatsData = {
719
719
  doublesTier: "NFE",
720
720
  },
721
721
  scizor: {
722
- randomBattleMoves: ["bugbite", "bulletpunch", "knockoff", "pursuit", "superpower", "swordsdance", "uturn"],
722
+ randomBattleMoves: ["bugbite", "bulletpunch", "defog", "knockoff", "pursuit", "roost", "superpower", "swordsdance", "uturn"],
723
723
  randomDoubleBattleMoves: ["bugbite", "bulletpunch", "feint", "knockoff", "protect", "roost", "superpower", "swordsdance", "uturn"],
724
724
  tier: "OU",
725
725
  doublesTier: "DOU",
@@ -785,7 +785,7 @@ exports.FormatsData = {
785
785
  tier: "LC",
786
786
  },
787
787
  gyarados: {
788
- randomBattleMoves: ["bounce", "dragondance", "dragontail", "earthquake", "rest", "sleeptalk", "stoneedge", "substitute", "waterfall"],
788
+ randomBattleMoves: ["bounce", "dragondance", "earthquake", "stoneedge", "substitute", "waterfall"],
789
789
  randomDoubleBattleMoves: ["bounce", "dragondance", "earthquake", "icefang", "protect", "stoneedge", "substitute", "taunt", "thunderwave", "waterfall"],
790
790
  tier: "UU",
791
791
  doublesTier: "(DUU)",
@@ -797,7 +797,7 @@ exports.FormatsData = {
797
797
  doublesTier: "(DUU)",
798
798
  },
799
799
  lapras: {
800
- randomBattleMoves: ["healbell", "hydropump", "icebeam", "substitute", "thunderbolt", "toxic"],
800
+ randomBattleMoves: ["freezedry", "healbell", "hydropump", "icebeam", "thunderbolt", "toxic"],
801
801
  randomDoubleBattleMoves: ["healbell", "hydropump", "icebeam", "iceshard", "icywind", "protect", "substitute", "surf", "thunderbolt"],
802
802
  tier: "PU",
803
803
  doublesTier: "(DUU)",
@@ -811,7 +811,7 @@ exports.FormatsData = {
811
811
  tier: "LC",
812
812
  },
813
813
  vaporeon: {
814
- randomBattleMoves: ["healbell", "icebeam", "protect", "roar", "scald", "wish"],
814
+ randomBattleMoves: ["healbell", "icebeam", "protect", "scald", "toxic", "wish"],
815
815
  randomDoubleBattleMoves: ["helpinghand", "hydropump", "icebeam", "muddywater", "protect", "scald", "toxic", "wish"],
816
816
  tier: "UU",
817
817
  doublesTier: "DUU",
@@ -871,7 +871,7 @@ exports.FormatsData = {
871
871
  tier: "LC",
872
872
  },
873
873
  omastar: {
874
- randomBattleMoves: ["earthpower", "hydropump", "icebeam", "scald", "shellsmash", "spikes", "stealthrock"],
874
+ randomBattleMoves: ["earthpower", "hydropump", "icebeam", "shellsmash", "spikes", "stealthrock"],
875
875
  randomDoubleBattleMoves: ["earthpower", "hiddenpowerelectric", "hydropump", "icebeam", "muddywater", "protect", "shellsmash"],
876
876
  tier: "NU",
877
877
  doublesTier: "(DUU)",
@@ -1034,7 +1034,7 @@ exports.FormatsData = {
1034
1034
  tier: "LC",
1035
1035
  },
1036
1036
  lanturn: {
1037
- randomBattleMoves: ["healbell", "hiddenpowergrass", "hydropump", "icebeam", "scald", "thunderbolt", "thunderwave", "toxic", "voltswitch"],
1037
+ randomBattleMoves: ["healbell", "hydropump", "icebeam", "scald", "thunderbolt", "thunderwave", "toxic", "voltswitch"],
1038
1038
  randomDoubleBattleMoves: ["discharge", "hiddenpowergrass", "hydropump", "icebeam", "protect", "scald", "surf", "thunderbolt", "thunderwave"],
1039
1039
  tier: "NU",
1040
1040
  doublesTier: "DUU",
@@ -1151,7 +1151,7 @@ exports.FormatsData = {
1151
1151
  tier: "NFE",
1152
1152
  },
1153
1153
  honchkrow: {
1154
- randomBattleMoves: ["bravebird", "heatwave", "pursuit", "roost", "substitute", "suckerpunch", "superpower"],
1154
+ randomBattleMoves: ["bravebird", "heatwave", "pursuit", "roost", "suckerpunch", "superpower"],
1155
1155
  randomDoubleBattleMoves: ["bravebird", "heatwave", "protect", "roost", "substitute", "suckerpunch", "superpower"],
1156
1156
  tier: "RUBL",
1157
1157
  doublesTier: "(DUU)",
@@ -1280,7 +1280,7 @@ exports.FormatsData = {
1280
1280
  doublesTier: "NFE",
1281
1281
  },
1282
1282
  mamoswine: {
1283
- randomBattleMoves: ["earthquake", "endeavor", "iceshard", "iciclecrash", "knockoff", "stealthrock", "superpower"],
1283
+ randomBattleMoves: ["earthquake", "iceshard", "iciclecrash", "knockoff", "stealthrock", "superpower"],
1284
1284
  randomDoubleBattleMoves: ["earthquake", "iceshard", "iciclecrash", "knockoff", "protect", "rockslide", "superpower"],
1285
1285
  tier: "UU",
1286
1286
  doublesTier: "(DUU)",
@@ -1406,7 +1406,7 @@ exports.FormatsData = {
1406
1406
  doublesTier: "DUber",
1407
1407
  },
1408
1408
  hooh: {
1409
- randomBattleMoves: ["bravebird", "earthquake", "flamecharge", "roost", "sacredfire", "substitute", "toxic"],
1409
+ randomBattleMoves: ["bravebird", "earthquake", "roost", "sacredfire", "substitute", "toxic"],
1410
1410
  randomDoubleBattleMoves: ["bravebird", "earthquake", "protect", "roost", "sacredfire", "skydrop", "substitute", "tailwind", "toxic"],
1411
1411
  tier: "Uber",
1412
1412
  doublesTier: "DUber",
@@ -1424,7 +1424,7 @@ exports.FormatsData = {
1424
1424
  tier: "NFE",
1425
1425
  },
1426
1426
  sceptile: {
1427
- randomBattleMoves: ["focusblast", "gigadrain", "hiddenpowerflying", "hiddenpowerice", "leafstorm"],
1427
+ randomBattleMoves: ["focusblast", "gigadrain", "hiddenpowerfire", "hiddenpowerice", "leafstorm", "leechseed", "substitute"],
1428
1428
  randomDoubleBattleMoves: ["focusblast", "gigadrain", "hiddenpowerfire", "hiddenpowerice", "leafstorm", "protect", "substitute"],
1429
1429
  tier: "NUBL",
1430
1430
  doublesTier: "(DUU)",
@@ -1570,7 +1570,7 @@ exports.FormatsData = {
1570
1570
  doublesTier: "DOU",
1571
1571
  },
1572
1572
  gallade: {
1573
- randomBattleMoves: ["bulkup", "closecombat", "drainpunch", "icepunch", "knockoff", "shadowsneak", "trick", "zenheadbutt"],
1573
+ randomBattleMoves: ["closecombat", "icepunch", "knockoff", "shadowsneak", "swordsdance", "trick", "zenheadbutt"],
1574
1574
  randomDoubleBattleMoves: ["closecombat", "drainpunch", "helpinghand", "icepunch", "knockoff", "protect", "shadowsneak", "stoneedge", "trick", "trickroom", "zenheadbutt"],
1575
1575
  tier: "RU",
1576
1576
  doublesTier: "(DUU)",
@@ -1702,7 +1702,7 @@ exports.FormatsData = {
1702
1702
  doublesTier: "(DUU)",
1703
1703
  },
1704
1704
  aggronmega: {
1705
- randomBattleMoves: ["earthquake", "heavyslam", "roar", "rockslide", "stealthrock", "thunderwave", "toxic"],
1705
+ randomBattleMoves: ["earthquake", "heavyslam", "roar", "stoneedge", "stealthrock", "thunderwave", "toxic"],
1706
1706
  randomDoubleBattleMoves: ["aquatail", "earthquake", "heavyslam", "lowkick", "protect", "rockslide"],
1707
1707
  tier: "UU",
1708
1708
  doublesTier: "(DUU)",
@@ -1897,7 +1897,7 @@ exports.FormatsData = {
1897
1897
  doublesTier: "(DUU)",
1898
1898
  },
1899
1899
  solrock: {
1900
- randomBattleMoves: ["explosion", "lightscreen", "morningsun", "reflect", "rockslide", "stealthrock", "willowisp"],
1900
+ randomBattleMoves: ["explosion", "earthquake", "lightscreen", "morningsun", "reflect", "rockslide", "stealthrock", "willowisp"],
1901
1901
  randomDoubleBattleMoves: ["helpinghand", "protect", "rockslide", "stoneedge", "trickroom", "willowisp", "zenheadbutt"],
1902
1902
  tier: "(PU)",
1903
1903
  doublesTier: "(DUU)",
@@ -2072,7 +2072,7 @@ exports.FormatsData = {
2072
2072
  doublesTier: "(DUU)",
2073
2073
  },
2074
2074
  gorebyss: {
2075
- randomBattleMoves: ["hiddenpowergrass", "hydropump", "icebeam", "shellsmash", "substitute"],
2075
+ randomBattleMoves: ["hiddenpowergrass", "hydropump", "icebeam", "shellsmash"],
2076
2076
  randomDoubleBattleMoves: ["hiddenpowergrass", "icebeam", "protect", "shellsmash", "substitute", "surf"],
2077
2077
  tier: "PU",
2078
2078
  doublesTier: "(DUU)",
@@ -2095,7 +2095,7 @@ exports.FormatsData = {
2095
2095
  tier: "NFE",
2096
2096
  },
2097
2097
  salamence: {
2098
- randomBattleMoves: ["dracometeor", "dragonclaw", "dragondance", "earthquake", "fireblast", "outrage"],
2098
+ randomBattleMoves: ["dracometeor", "dragonclaw", "dragondance", "earthquake", "fireblast", "outrage", "roost"],
2099
2099
  randomDoubleBattleMoves: ["dracometeor", "dragonclaw", "dragondance", "earthquake", "fireblast", "hydropump", "protect", "rockslide", "tailwind"],
2100
2100
  tier: "UUBL",
2101
2101
  doublesTier: "DUU",
@@ -2126,7 +2126,7 @@ exports.FormatsData = {
2126
2126
  doublesTier: "DUU",
2127
2127
  },
2128
2128
  regirock: {
2129
- randomBattleMoves: ["curse", "drainpunch", "rest", "rockslide", "stealthrock", "stoneedge", "thunderwave", "toxic"],
2129
+ randomBattleMoves: ["curse", "drainpunch", "earthquake", "rest", "stealthrock", "stoneedge", "thunderwave", "toxic"],
2130
2130
  randomDoubleBattleMoves: ["curse", "drainpunch", "protect", "rockslide", "stealthrock", "stoneedge", "thunderwave"],
2131
2131
  tier: "NU",
2132
2132
  doublesTier: "(DUU)",
@@ -2144,7 +2144,7 @@ exports.FormatsData = {
2144
2144
  doublesTier: "(DUU)",
2145
2145
  },
2146
2146
  latias: {
2147
- randomBattleMoves: ["defog", "dracometeor", "healingwish", "hiddenpowerfire", "psyshock", "roost", "thunderbolt"],
2147
+ randomBattleMoves: ["defog", "dracometeor", "healingwish", "hiddenpowerfire", "psyshock", "roost"],
2148
2148
  randomDoubleBattleMoves: ["dragonpulse", "healpulse", "helpinghand", "lightscreen", "protect", "psychic", "reflect", "tailwind"],
2149
2149
  tier: "OU",
2150
2150
  doublesTier: "(DUU)",
@@ -2156,13 +2156,13 @@ exports.FormatsData = {
2156
2156
  doublesTier: "(DUU)",
2157
2157
  },
2158
2158
  latios: {
2159
- randomBattleMoves: ["defog", "dracometeor", "hiddenpowerfire", "psyshock", "roost", "surf", "thunderbolt", "trick"],
2159
+ randomBattleMoves: ["calmmind", "dracometeor", "hiddenpowerfire", "psyshock", "roost", "trick"],
2160
2160
  randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "hiddenpowerfire", "protect", "psyshock", "substitute", "surf", "tailwind", "thunderbolt", "trick"],
2161
2161
  tier: "OU",
2162
2162
  doublesTier: "DOU",
2163
2163
  },
2164
2164
  latiosmega: {
2165
- randomBattleMoves: ["calmmind", "defog", "dracometeor", "hiddenpowerfire", "psyshock", "roost"],
2165
+ randomBattleMoves: ["calmmind", "dracometeor", "earthquake", "hiddenpowerfire", "psyshock", "roost"],
2166
2166
  randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "hiddenpowerfire", "protect", "psyshock", "substitute", "surf", "tailwind", "thunderbolt"],
2167
2167
  tier: "(OU)",
2168
2168
  doublesTier: "(DOU)",
@@ -2178,7 +2178,7 @@ exports.FormatsData = {
2178
2178
  randomDoubleBattleMoves: ["calmmind", "icebeam", "muddywater", "originpulse", "protect", "rest", "sleeptalk", "thunder", "waterspout"],
2179
2179
  },
2180
2180
  groudon: {
2181
- randomBattleMoves: ["dragonclaw", "earthquake", "firepunch", "lavaplume", "roar", "stealthrock", "stoneedge", "thunderwave", "toxic"],
2181
+ randomBattleMoves: ["earthquake", "firepunch", "lavaplume", "roar", "stealthrock", "stoneedge", "thunderwave", "toxic"],
2182
2182
  randomDoubleBattleMoves: ["dragonclaw", "firepunch", "precipiceblades", "protect", "rockpolish", "rockslide", "stoneedge", "swordsdance"],
2183
2183
  tier: "Uber",
2184
2184
  doublesTier: "DUber",
@@ -2248,7 +2248,7 @@ exports.FormatsData = {
2248
2248
  doublesTier: "NFE",
2249
2249
  },
2250
2250
  infernape: {
2251
- randomBattleMoves: ["closecombat", "earthquake", "fireblast", "flareblitz", "grassknot", "machpunch", "stealthrock", "stoneedge", "uturn"],
2251
+ randomBattleMoves: ["closecombat", "fireblast", "flareblitz", "grassknot", "machpunch", "stealthrock", "stoneedge", "uturn"],
2252
2252
  randomDoubleBattleMoves: ["closecombat", "fakeout", "feint", "flareblitz", "grassknot", "heatwave", "machpunch", "protect", "stoneedge", "taunt", "thunderpunch", "uturn"],
2253
2253
  tier: "UU",
2254
2254
  doublesTier: "DUU",
@@ -2330,7 +2330,7 @@ exports.FormatsData = {
2330
2330
  tier: "LC",
2331
2331
  },
2332
2332
  wormadam: {
2333
- randomBattleMoves: ["gigadrain", "protect", "signalbeam", "synthesis", "toxic"],
2333
+ randomBattleMoves: ["gigadrain", "hiddenpowerrock", "protect", "signalbeam", "synthesis", "toxic"],
2334
2334
  randomDoubleBattleMoves: ["gigadrain", "hiddenpowerice", "hiddenpowerrock", "leafstorm", "protect", "signalbeam", "stringshot"],
2335
2335
  tier: "(PU)",
2336
2336
  doublesTier: "(DUU)",
@@ -2654,7 +2654,7 @@ exports.FormatsData = {
2654
2654
  doublesTier: "(DUU)",
2655
2655
  },
2656
2656
  manaphy: {
2657
- randomBattleMoves: ["energyball", "icebeam", "psychic", "surf", "tailglow"],
2657
+ randomBattleMoves: ["energyball", "icebeam", "surf", "tailglow"],
2658
2658
  randomDoubleBattleMoves: ["energyball", "helpinghand", "icebeam", "icywind", "protect", "scald", "surf", "tailglow"],
2659
2659
  tier: "OU",
2660
2660
  doublesTier: "(DUU)",
@@ -2704,11 +2704,11 @@ exports.FormatsData = {
2704
2704
  randomDoubleBattleMoves: ["calmmind", "earthpower", "judgment", "protect", "recover", "thunderbolt", "willowisp"],
2705
2705
  },
2706
2706
  arceusfighting: {
2707
- randomBattleMoves: ["calmmind", "icebeam", "judgment", "recover", "roar", "shadowball", "stoneedge"],
2707
+ randomBattleMoves: ["calmmind", "icebeam", "judgment", "recover", "shadowball", "stoneedge"],
2708
2708
  randomDoubleBattleMoves: ["calmmind", "icebeam", "judgment", "protect", "recover", "shadowball", "willowisp"],
2709
2709
  },
2710
2710
  arceusfire: {
2711
- randomBattleMoves: ["calmmind", "fireblast", "icebeam", "recover", "roar", "thunderbolt"],
2711
+ randomBattleMoves: ["calmmind", "fireblast", "icebeam", "recover", "thunderbolt"],
2712
2712
  randomDoubleBattleMoves: ["calmmind", "heatwave", "judgment", "protect", "recover", "thunderbolt", "willowisp"],
2713
2713
  },
2714
2714
  arceusflying: {
@@ -2752,7 +2752,7 @@ exports.FormatsData = {
2752
2752
  randomDoubleBattleMoves: ["calmmind", "fireblast", "icebeam", "icywind", "judgment", "protect", "recover", "surf"],
2753
2753
  },
2754
2754
  victini: {
2755
- randomBattleMoves: ["blueflare", "boltstrike", "focusblast", "grassknot", "uturn", "vcreate", "zenheadbutt"],
2755
+ randomBattleMoves: ["blueflare", "boltstrike", "energyball", "glaciate", "uturn", "vcreate", "zenheadbutt"],
2756
2756
  randomDoubleBattleMoves: ["blueflare", "boltstrike", "focusblast", "protect", "psychic", "uturn", "vcreate"],
2757
2757
  tier: "UUBL",
2758
2758
  doublesTier: "DUU",
@@ -2875,7 +2875,7 @@ exports.FormatsData = {
2875
2875
  tier: "LC",
2876
2876
  },
2877
2877
  zebstrika: {
2878
- randomBattleMoves: ["hiddenpowergrass", "overheat", "thunderbolt", "voltswitch", "wildcharge"],
2878
+ randomBattleMoves: ["hiddenpowergrass", "hiddenpowerice", "overheat", "thunderbolt", "voltswitch", "wildcharge"],
2879
2879
  randomDoubleBattleMoves: ["hiddenpowergrass", "overheat", "protect", "voltswitch", "wildcharge"],
2880
2880
  tier: "PU",
2881
2881
  doublesTier: "(DUU)",
@@ -2887,7 +2887,7 @@ exports.FormatsData = {
2887
2887
  tier: "NFE",
2888
2888
  },
2889
2889
  gigalith: {
2890
- randomBattleMoves: ["earthquake", "explosion", "rockblast", "stealthrock", "stoneedge", "superpower"],
2890
+ randomBattleMoves: ["earthquake", "explosion", "stealthrock", "stoneedge", "superpower"],
2891
2891
  randomDoubleBattleMoves: ["autotomize", "earthquake", "explosion", "protect", "rockslide", "stealthrock", "stoneedge", "superpower", "wideguard"],
2892
2892
  tier: "(PU)",
2893
2893
  doublesTier: "(DUU)",
@@ -2911,7 +2911,7 @@ exports.FormatsData = {
2911
2911
  doublesTier: "DUU",
2912
2912
  },
2913
2913
  audino: {
2914
- randomBattleMoves: ["doubleedge", "encore", "healbell", "protect", "toxic", "wish"],
2914
+ randomBattleMoves: ["doubleedge", "encore", "healbell", "knockoff", "protect", "toxic", "wish"],
2915
2915
  randomDoubleBattleMoves: ["doubleedge", "healbell", "healpulse", "helpinghand", "lightscreen", "protect", "reflect", "thunderwave", "trickroom"],
2916
2916
  tier: "PU",
2917
2917
  doublesTier: "(DUU)",
@@ -2930,7 +2930,7 @@ exports.FormatsData = {
2930
2930
  doublesTier: "NFE",
2931
2931
  },
2932
2932
  conkeldurr: {
2933
- randomBattleMoves: ["bulkup", "drainpunch", "icepunch", "knockoff", "machpunch"],
2933
+ randomBattleMoves: ["bulkup", "drainpunch", "facade", "icepunch", "knockoff", "machpunch"],
2934
2934
  randomDoubleBattleMoves: ["drainpunch", "icepunch", "knockoff", "machpunch", "protect", "wideguard"],
2935
2935
  tier: "UUBL",
2936
2936
  doublesTier: "DOU",
@@ -2942,7 +2942,7 @@ exports.FormatsData = {
2942
2942
  tier: "NFE",
2943
2943
  },
2944
2944
  seismitoad: {
2945
- randomBattleMoves: ["earthquake", "hydropump", "knockoff", "raindance", "scald", "sludgewave", "stealthrock", "toxic"],
2945
+ randomBattleMoves: ["earthquake", "hydropump", "knockoff", "raindance", "scald", "sludgebomb", "stealthrock", "toxic"],
2946
2946
  randomDoubleBattleMoves: ["earthquake", "hiddenpowerelectric", "hydropump", "icywind", "muddywater", "protect", "sludgebomb"],
2947
2947
  tier: "RU",
2948
2948
  doublesTier: "(DUU)",
@@ -2987,7 +2987,7 @@ exports.FormatsData = {
2987
2987
  tier: "LC",
2988
2988
  },
2989
2989
  whimsicott: {
2990
- randomBattleMoves: ["encore", "leechseed", "memento", "moonblast", "stunspore", "tailwind", "taunt", "toxic", "uturn"],
2990
+ randomBattleMoves: ["encore", "energyball", "leechseed", "memento", "moonblast", "stunspore", "tailwind", "taunt", "toxic", "uturn"],
2991
2991
  randomDoubleBattleMoves: ["dazzlinggleam", "encore", "gigadrain", "helpinghand", "leechseed", "moonblast", "protect", "stunspore", "substitute", "tailwind", "taunt", "uturn"],
2992
2992
  tier: "UU",
2993
2993
  doublesTier: "DOU",
@@ -3044,7 +3044,7 @@ exports.FormatsData = {
3044
3044
  tier: "LC",
3045
3045
  },
3046
3046
  crustle: {
3047
- randomBattleMoves: ["earthquake", "rockblast", "shellsmash", "spikes", "stealthrock", "stoneedge", "xscissor"],
3047
+ randomBattleMoves: ["earthquake", "shellsmash", "spikes", "stealthrock", "stoneedge", "xscissor"],
3048
3048
  randomDoubleBattleMoves: ["earthquake", "protect", "rockslide", "shellsmash", "stoneedge", "xscissor"],
3049
3049
  tier: "PU",
3050
3050
  doublesTier: "(DUU)",
@@ -3125,7 +3125,7 @@ exports.FormatsData = {
3125
3125
  tier: "NFE",
3126
3126
  },
3127
3127
  gothitelle: {
3128
- randomBattleMoves: ["calmmind", "hiddenpowerfire", "psychic", "rest", "sleeptalk", "toxic"],
3128
+ randomBattleMoves: ["calmmind", "hiddenpowerfighting", "psychic", "rest", "sleeptalk", "toxic"],
3129
3129
  randomDoubleBattleMoves: ["energyball", "healpulse", "hiddenpowerfighting", "lightscreen", "protect", "psychic", "psyshock", "reflect", "shadowball", "taunt", "thunderbolt", "trickroom"],
3130
3130
  tier: "(PU)",
3131
3131
  doublesTier: "(DUU)",
@@ -3191,7 +3191,7 @@ exports.FormatsData = {
3191
3191
  tier: "LC",
3192
3192
  },
3193
3193
  amoonguss: {
3194
- randomBattleMoves: ["clearsmog", "foulplay", "gigadrain", "hiddenpowerfire", "sludgebomb", "spore", "stunspore", "synthesis"],
3194
+ randomBattleMoves: ["foulplay", "gigadrain", "hiddenpowerfire", "sludgebomb", "spore", "synthesis"],
3195
3195
  randomDoubleBattleMoves: ["gigadrain", "hiddenpowerfire", "protect", "ragepowder", "sludgebomb", "spore", "stunspore", "synthesis"],
3196
3196
  tier: "OU",
3197
3197
  doublesTier: "DOU",
@@ -3312,7 +3312,7 @@ exports.FormatsData = {
3312
3312
  doublesTier: "(DUU)",
3313
3313
  },
3314
3314
  stunfisk: {
3315
- randomBattleMoves: ["discharge", "earthpower", "rest", "scald", "sleeptalk", "stealthrock", "toxic"],
3315
+ randomBattleMoves: ["discharge", "earthpower", "foulplay", "rest", "sleeptalk", "stealthrock", "toxic"],
3316
3316
  randomDoubleBattleMoves: ["discharge", "earthpower", "electroweb", "protect", "scald", "stealthrock"],
3317
3317
  tier: "PU",
3318
3318
  doublesTier: "(DUU)",
@@ -3336,7 +3336,7 @@ exports.FormatsData = {
3336
3336
  tier: "LC",
3337
3337
  },
3338
3338
  golurk: {
3339
- randomBattleMoves: ["dynamicpunch", "earthquake", "icepunch", "rockpolish", "shadowpunch", "stealthrock"],
3339
+ randomBattleMoves: ["dynamicpunch", "earthquake", "icepunch", "rockpolish", "shadowpunch", "stealthrock", "stoneedge"],
3340
3340
  randomDoubleBattleMoves: ["dynamicpunch", "earthquake", "icepunch", "protect", "rockpolish", "shadowpunch", "stoneedge"],
3341
3341
  tier: "NU",
3342
3342
  doublesTier: "(DUU)",
@@ -3377,7 +3377,7 @@ exports.FormatsData = {
3377
3377
  doublesTier: "(DUU)",
3378
3378
  },
3379
3379
  heatmor: {
3380
- randomBattleMoves: ["fireblast", "focusblast", "gigadrain", "knockoff", "suckerpunch"],
3380
+ randomBattleMoves: ["fireblast", "gigadrain", "knockoff", "suckerpunch", "superpower"],
3381
3381
  randomDoubleBattleMoves: ["fireblast", "focusblast", "gigadrain", "heatwave", "protect", "suckerpunch"],
3382
3382
  tier: "(PU)",
3383
3383
  doublesTier: "(DUU)",
@@ -3410,7 +3410,7 @@ exports.FormatsData = {
3410
3410
  doublesTier: "DUU",
3411
3411
  },
3412
3412
  cobalion: {
3413
- randomBattleMoves: ["closecombat", "hiddenpowerice", "ironhead", "stealthrock", "stoneedge", "substitute", "swordsdance", "taunt", "voltswitch"],
3413
+ randomBattleMoves: ["closecombat", "ironhead", "stealthrock", "stoneedge", "substitute", "swordsdance", "taunt", "voltswitch"],
3414
3414
  randomDoubleBattleMoves: ["closecombat", "ironhead", "protect", "stoneedge", "substitute", "swordsdance", "thunderwave"],
3415
3415
  tier: "UU",
3416
3416
  doublesTier: "(DUU)",
@@ -3422,7 +3422,7 @@ exports.FormatsData = {
3422
3422
  doublesTier: "DOU",
3423
3423
  },
3424
3424
  virizion: {
3425
- randomBattleMoves: ["closecombat", "leafblade", "stoneedge", "swordsdance", "zenheadbutt"],
3425
+ randomBattleMoves: ["closecombat", "leafblade", "stoneedge", "swordsdance"],
3426
3426
  randomDoubleBattleMoves: ["closecombat", "leafblade", "protect", "stoneedge", "swordsdance", "synthesis", "taunt"],
3427
3427
  tier: "RU",
3428
3428
  doublesTier: "(DUU)",
@@ -3494,7 +3494,7 @@ exports.FormatsData = {
3494
3494
  doublesTier: "DUber",
3495
3495
  },
3496
3496
  keldeo: {
3497
- randomBattleMoves: ["calmmind", "hiddenpowerelectric", "hiddenpowerflying", "hydropump", "icywind", "scald", "secretsword", "substitute"],
3497
+ randomBattleMoves: ["calmmind", "hiddenpowerelectric", "hydropump", "icywind", "scald", "secretsword", "substitute"],
3498
3498
  randomDoubleBattleMoves: ["hiddenpowerelectric", "hiddenpowerflying", "hydropump", "icywind", "protect", "secretsword", "substitute", "surf", "taunt"],
3499
3499
  tier: "OU",
3500
3500
  doublesTier: "DOU",
@@ -3504,7 +3504,7 @@ exports.FormatsData = {
3504
3504
  doublesTier: "DOU",
3505
3505
  },
3506
3506
  meloetta: {
3507
- randomBattleMoves: ["calmmind", "focusblast", "hypervoice", "psyshock", "shadowball", "uturn"],
3507
+ randomBattleMoves: ["calmmind", "focusblast", "hypervoice", "psyshock", "shadowball", "trick", "uturn"],
3508
3508
  randomDoubleBattleMoves: ["calmmind", "focusblast", "hypervoice", "protect", "psyshock", "shadowball", "thunderbolt"],
3509
3509
  tier: "RU",
3510
3510
  doublesTier: "(DUU)",
@@ -3694,7 +3694,7 @@ exports.FormatsData = {
3694
3694
  tier: "LC",
3695
3695
  },
3696
3696
  aromatisse: {
3697
- randomBattleMoves: ["aromatherapy", "lightscreen", "moonblast", "protect", "reflect", "wish"],
3697
+ randomBattleMoves: ["aromatherapy", "moonblast", "protect", "toxic", "wish"],
3698
3698
  randomDoubleBattleMoves: ["aromatherapy", "healpulse", "moonblast", "protect", "thunderbolt", "trickroom", "wish"],
3699
3699
  tier: "RU",
3700
3700
  doublesTier: "DUU",
@@ -3802,7 +3802,7 @@ exports.FormatsData = {
3802
3802
  tier: "NFE",
3803
3803
  },
3804
3804
  goodra: {
3805
- randomBattleMoves: ["dracometeor", "dragonpulse", "dragontail", "earthquake", "fireblast", "sludgebomb", "thunderbolt"],
3805
+ randomBattleMoves: ["dracometeor", "dragontail", "earthquake", "fireblast", "powerwhip", "sludgebomb", "thunderbolt"],
3806
3806
  randomDoubleBattleMoves: ["dracometeor", "dragonpulse", "fireblast", "focusblast", "icebeam", "muddywater", "protect", "thunderbolt"],
3807
3807
  tier: "UU",
3808
3808
  doublesTier: "DUU",
@@ -3817,7 +3817,7 @@ exports.FormatsData = {
3817
3817
  tier: "LC",
3818
3818
  },
3819
3819
  trevenant: {
3820
- randomBattleMoves: ["earthquake", "hornleech", "rockslide", "shadowclaw", "trickroom", "woodhammer"],
3820
+ randomBattleMoves: ["earthquake", "hornleech", "rest", "rockslide", "shadowclaw", "trickroom", "woodhammer"],
3821
3821
  randomDoubleBattleMoves: ["earthquake", "hornleech", "leechseed", "protect", "rockslide", "shadowclaw", "trickroom", "willowisp", "woodhammer"],
3822
3822
  tier: "PU",
3823
3823
  doublesTier: "(DUU)",
@@ -3877,25 +3877,25 @@ exports.FormatsData = {
3877
3877
  doublesTier: "(DUU)",
3878
3878
  },
3879
3879
  xerneas: {
3880
- randomBattleMoves: ["closecombat", "focusblast", "geomancy", "hiddenpowerfire", "moonblast", "psyshock", "rockslide", "thunderbolt"],
3880
+ randomBattleMoves: ["closecombat", "focusblast", "geomancy", "hiddenpowerfire", "moonblast", "psyshock", "thunderbolt"],
3881
3881
  randomDoubleBattleMoves: ["closecombat", "dazzlinggleam", "focusblast", "geomancy", "hiddenpowerfire", "protect", "psyshock", "rockslide", "thunder", "thunderbolt"],
3882
3882
  tier: "Uber",
3883
3883
  doublesTier: "DUber",
3884
3884
  },
3885
3885
  yveltal: {
3886
- randomBattleMoves: ["darkpulse", "focusblast", "foulplay", "oblivionwing", "roost", "suckerpunch", "taunt", "toxic", "uturn"],
3886
+ randomBattleMoves: ["darkpulse", "foulplay", "oblivionwing", "roost", "suckerpunch", "taunt", "toxic", "uturn"],
3887
3887
  randomDoubleBattleMoves: ["darkpulse", "focusblast", "hurricane", "oblivionwing", "protect", "roost", "skydrop", "snarl", "suckerpunch", "taunt"],
3888
3888
  tier: "Uber",
3889
3889
  doublesTier: "DUber",
3890
3890
  },
3891
3891
  zygarde: {
3892
- randomBattleMoves: ["dragondance", "earthquake", "extremespeed", "outrage", "stoneedge"],
3892
+ randomBattleMoves: ["dragondance", "earthquake", "extremespeed", "glare", "outrage", "stoneedge"],
3893
3893
  randomDoubleBattleMoves: ["coil", "dragondance", "extremespeed", "glare", "landswrath", "protect", "rockslide", "stoneedge"],
3894
3894
  tier: "UUBL",
3895
3895
  doublesTier: "(DUU)",
3896
3896
  },
3897
3897
  diancie: {
3898
- randomBattleMoves: ["diamondstorm", "hiddenpowerfire", "lightscreen", "moonblast", "reflect", "stealthrock"],
3898
+ randomBattleMoves: ["diamondstorm", "earthpower", "hiddenpowerfire", "lightscreen", "moonblast", "reflect", "stealthrock"],
3899
3899
  randomDoubleBattleMoves: ["calmmind", "dazzlinggleam", "diamondstorm", "lightscreen", "moonblast", "protect", "psychic", "reflect", "safeguard", "substitute"],
3900
3900
  tier: "RU",
3901
3901
  doublesTier: "DUU",
@@ -3913,7 +3913,7 @@ exports.FormatsData = {
3913
3913
  doublesTier: "(DUU)",
3914
3914
  },
3915
3915
  hoopaunbound: {
3916
- randomBattleMoves: ["darkpulse", "drainpunch", "focusblast", "gunkshot", "hyperspacefury", "icepunch", "nastyplot", "psychic", "substitute", "trick", "zenheadbutt"],
3916
+ randomBattleMoves: ["darkpulse", "drainpunch", "focusblast", "gunkshot", "hyperspacefury", "nastyplot", "psychic", "substitute", "trick", "zenheadbutt"],
3917
3917
  randomDoubleBattleMoves: ["darkpulse", "drainpunch", "focusblast", "gunkshot", "hyperspacefury", "icepunch", "protect", "psychic", "zenheadbutt"],
3918
3918
  tier: "Uber",
3919
3919
  doublesTier: "DOU",