@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
@@ -41,7 +41,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
41
41
  },
42
42
  butterfree: {
43
43
  randomBattleMoves: ["bugbuzz", "hiddenpowerrock", "psychic", "quiverdance", "sleeppowder", "substitute"],
44
- tier: "(NU)",
44
+ tier: "(PU)",
45
45
  doublesTier: "DUU",
46
46
  },
47
47
  weedle: {
@@ -52,7 +52,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
52
52
  },
53
53
  beedrill: {
54
54
  randomBattleMoves: ["agility", "batonpass", "drillrun", "endeavor", "poisonjab", "toxicspikes", "uturn"],
55
- tier: "(NU)",
55
+ tier: "(PU)",
56
56
  doublesTier: "DUU",
57
57
  },
58
58
  pidgey: {
@@ -63,7 +63,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
63
63
  },
64
64
  pidgeot: {
65
65
  randomBattleMoves: ["bravebird", "heatwave", "quickattack", "return", "roost", "uturn", "workup"],
66
- tier: "(NU)",
66
+ tier: "(PU)",
67
67
  doublesTier: "DUU",
68
68
  },
69
69
  rattata: {
@@ -71,7 +71,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
71
71
  },
72
72
  raticate: {
73
73
  randomBattleMoves: ["crunch", "facade", "flamewheel", "suckerpunch", "swordsdance", "uturn"],
74
- tier: "(NU)",
74
+ tier: "(PU)",
75
75
  doublesTier: "DUU",
76
76
  },
77
77
  spearow: {
@@ -79,7 +79,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
79
79
  },
80
80
  fearow: {
81
81
  randomBattleMoves: ["doubleedge", "drillpeck", "drillrun", "pursuit", "quickattack", "return", "roost", "uturn"],
82
- tier: "(NU)",
82
+ tier: "(PU)",
83
83
  doublesTier: "DUU",
84
84
  },
85
85
  ekans: {
@@ -87,7 +87,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
87
87
  },
88
88
  arbok: {
89
89
  randomBattleMoves: ["aquatail", "coil", "earthquake", "glare", "gunkshot", "rest", "seedbomb", "suckerpunch"],
90
- tier: "(NU)",
90
+ tier: "(PU)",
91
91
  doublesTier: "DUU",
92
92
  },
93
93
  pichu: {
@@ -99,7 +99,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
99
99
  },
100
100
  raichu: {
101
101
  randomBattleMoves: ["encore", "focusblast", "grassknot", "hiddenpowerice", "nastyplot", "thunderbolt", "voltswitch"],
102
- tier: "(NU)",
102
+ tier: "(PU)",
103
103
  doublesTier: "DUU",
104
104
  },
105
105
  sandshrew: {
@@ -159,7 +159,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
159
159
  },
160
160
  wigglytuff: {
161
161
  randomBattleMoves: ["doubleedge", "fireblast", "healbell", "protect", "stealthrock", "toxic", "wish"],
162
- tier: "(NU)",
162
+ tier: "(PU)",
163
163
  doublesTier: "DUU",
164
164
  },
165
165
  zubat: {
@@ -182,12 +182,12 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
182
182
  },
183
183
  vileplume: {
184
184
  randomBattleMoves: ["aromatherapy", "gigadrain", "hiddenpowerfire", "leechseed", "sleeppowder", "sludgebomb", "synthesis"],
185
- tier: "(NU)",
185
+ tier: "PU",
186
186
  doublesTier: "DUU",
187
187
  },
188
188
  bellossom: {
189
189
  randomBattleMoves: ["gigadrain", "hiddenpowerfire", "hiddenpowerrock", "leafstorm", "leechseed", "sleeppowder", "stunspore", "synthesis"],
190
- tier: "(NU)",
190
+ tier: "(PU)",
191
191
  doublesTier: "DUU",
192
192
  },
193
193
  paras: {
@@ -195,7 +195,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
195
195
  },
196
196
  parasect: {
197
197
  randomBattleMoves: ["aromatherapy", "leechseed", "seedbomb", "spore", "stunspore", "synthesis", "xscissor"],
198
- tier: "(NU)",
198
+ tier: "(PU)",
199
199
  doublesTier: "DUU",
200
200
  },
201
201
  venonat: {
@@ -219,7 +219,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
219
219
  },
220
220
  persian: {
221
221
  randomBattleMoves: ["bite", "fakeout", "return", "switcheroo", "taunt", "uturn", "waterpulse"],
222
- tier: "(NU)",
222
+ tier: "(PU)",
223
223
  doublesTier: "DUU",
224
224
  },
225
225
  psyduck: {
@@ -227,7 +227,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
227
227
  },
228
228
  golduck: {
229
229
  randomBattleMoves: ["calmmind", "focusblast", "hydropump", "icebeam", "psyshock"],
230
- tier: "(NU)",
230
+ tier: "PU",
231
231
  doublesTier: "DUU",
232
232
  },
233
233
  mankey: {
@@ -293,11 +293,12 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
293
293
  },
294
294
  victreebel: {
295
295
  randomBattleMoves: ["growth", "powerwhip", "sleeppowder", "sludgebomb", "suckerpunch", "sunnyday", "weatherball"],
296
- tier: "(NU)",
296
+ tier: "PU",
297
297
  doublesTier: "DUU",
298
298
  },
299
299
  tentacool: {
300
- tier: "LC",
300
+ tier: "PU",
301
+ doublesTier: "LC",
301
302
  },
302
303
  tentacruel: {
303
304
  randomBattleMoves: ["gigadrain", "icebeam", "protect", "rapidspin", "scald", "toxic", "toxicspikes"],
@@ -320,7 +321,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
320
321
  },
321
322
  rapidash: {
322
323
  randomBattleMoves: ["drillrun", "flareblitz", "megahorn", "morningsun", "wildcharge", "willowisp"],
323
- tier: "(NU)",
324
+ tier: "PU",
324
325
  doublesTier: "DUU",
325
326
  },
326
327
  slowpoke: {
@@ -350,7 +351,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
350
351
  },
351
352
  farfetchd: {
352
353
  randomBattleMoves: ["batonpass", "bravebird", "leafblade", "quickattack", "swordsdance"],
353
- tier: "(NU)",
354
+ tier: "(PU)",
354
355
  doublesTier: "DUU",
355
356
  },
356
357
  doduo: {
@@ -358,7 +359,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
358
359
  },
359
360
  dodrio: {
360
361
  randomBattleMoves: ["bravebird", "pursuit", "quickattack", "return", "roost"],
361
- tier: "(NU)",
362
+ tier: "PU",
362
363
  doublesTier: "DUU",
363
364
  },
364
365
  seel: {
@@ -366,7 +367,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
366
367
  },
367
368
  dewgong: {
368
369
  randomBattleMoves: ["icebeam", "protect", "rest", "sleeptalk", "surf", "toxic"],
369
- tier: "(NU)",
370
+ tier: "(PU)",
370
371
  doublesTier: "DUU",
371
372
  },
372
373
  grimer: {
@@ -374,7 +375,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
374
375
  },
375
376
  muk: {
376
377
  randomBattleMoves: ["brickbreak", "curse", "firepunch", "gunkshot", "icepunch", "poisonjab", "rest", "shadowsneak"],
377
- tier: "(NU)",
378
+ tier: "(PU)",
378
379
  doublesTier: "DUU",
379
380
  },
380
381
  shellder: {
@@ -410,7 +411,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
410
411
  },
411
412
  hypno: {
412
413
  randomBattleMoves: ["foulplay", "protect", "psychic", "thunderwave", "toxic", "wish"],
413
- tier: "(NU)",
414
+ tier: "(PU)",
414
415
  doublesTier: "DUU",
415
416
  },
416
417
  krabby: {
@@ -418,7 +419,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
418
419
  },
419
420
  kingler: {
420
421
  randomBattleMoves: ["agility", "crabhammer", "return", "superpower", "swordsdance", "xscissor"],
421
- tier: "(NU)",
422
+ tier: "(PU)",
422
423
  doublesTier: "DUU",
423
424
  },
424
425
  voltorb: {
@@ -442,7 +443,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
442
443
  },
443
444
  marowak: {
444
445
  randomBattleMoves: ["bonemerang", "doubleedge", "earthquake", "firepunch", "stoneedge", "substitute"],
445
- tier: "(NU)",
446
+ tier: "(PU)",
446
447
  doublesTier: "DUU",
447
448
  },
448
449
  tyrogue: {
@@ -535,7 +536,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
535
536
  },
536
537
  seaking: {
537
538
  randomBattleMoves: ["drillrun", "icebeam", "megahorn", "return", "waterfall"],
538
- tier: "(NU)",
539
+ tier: "(PU)",
539
540
  doublesTier: "DUU",
540
541
  },
541
542
  staryu: {
@@ -551,7 +552,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
551
552
  },
552
553
  mrmime: {
553
554
  randomBattleMoves: ["batonpass", "encore", "hiddenpowerfighting", "nastyplot", "psychic", "substitute", "thunderbolt"],
554
- tier: "(NU)",
555
+ tier: "(PU)",
555
556
  doublesTier: "DUU",
556
557
  },
557
558
  scyther: {
@@ -638,7 +639,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
638
639
  },
639
640
  flareon: {
640
641
  randomBattleMoves: ["facade", "flamecharge", "rest", "sleeptalk"],
641
- tier: "(NU)",
642
+ tier: "(PU)",
642
643
  doublesTier: "DUU",
643
644
  },
644
645
  espeon: {
@@ -653,12 +654,12 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
653
654
  },
654
655
  leafeon: {
655
656
  randomBattleMoves: ["batonpass", "leafblade", "return", "substitute", "swordsdance", "xscissor"],
656
- tier: "(NU)",
657
+ tier: "(PU)",
657
658
  doublesTier: "DUU",
658
659
  },
659
660
  glaceon: {
660
- randomBattleMoves: ["hiddenpowerground", "icebeam", "protect", "shadowball", "wish"],
661
- tier: "(NU)",
661
+ randomBattleMoves: ["hiddenpowerground", "icebeam", "protect", "shadowball", "toxic", "wish"],
662
+ tier: "(PU)",
662
663
  doublesTier: "DUU",
663
664
  },
664
665
  porygon: {
@@ -705,7 +706,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
705
706
  },
706
707
  articuno: {
707
708
  randomBattleMoves: ["hurricane", "icebeam", "roost", "substitute", "toxic"],
708
- tier: "(NU)",
709
+ tier: "(PU)",
709
710
  doublesTier: "DUU",
710
711
  },
711
712
  zapdos: {
@@ -748,7 +749,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
748
749
  },
749
750
  meganium: {
750
751
  randomBattleMoves: ["aromatherapy", "dragontail", "gigadrain", "leechseed", "lightscreen", "reflect", "synthesis", "toxic"],
751
- tier: "(NU)",
752
+ tier: "(PU)",
752
753
  doublesTier: "DUU",
753
754
  },
754
755
  cyndaquil: {
@@ -778,7 +779,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
778
779
  },
779
780
  furret: {
780
781
  randomBattleMoves: ["aquatail", "doubleedge", "firepunch", "shadowclaw", "trick", "uturn"],
781
- tier: "(NU)",
782
+ tier: "(PU)",
782
783
  doublesTier: "DUU",
783
784
  },
784
785
  hoothoot: {
@@ -786,7 +787,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
786
787
  },
787
788
  noctowl: {
788
789
  randomBattleMoves: ["airslash", "magiccoat", "nightshade", "reflect", "roost", "toxic", "whirlwind"],
789
- tier: "(NU)",
790
+ tier: "(PU)",
790
791
  doublesTier: "DUU",
791
792
  },
792
793
  ledyba: {
@@ -794,7 +795,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
794
795
  },
795
796
  ledian: {
796
797
  randomBattleMoves: ["encore", "lightscreen", "reflect", "roost", "toxic", "uturn"],
797
- tier: "(NU)",
798
+ tier: "(PU)",
798
799
  doublesTier: "DUU",
799
800
  },
800
801
  spinarak: {
@@ -802,7 +803,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
802
803
  },
803
804
  ariados: {
804
805
  randomBattleMoves: ["agility", "batonpass", "poisonjab", "toxicspikes", "xscissor"],
805
- tier: "(NU)",
806
+ tier: "(PU)",
806
807
  doublesTier: "DUU",
807
808
  },
808
809
  chinchou: {
@@ -825,7 +826,8 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
825
826
  doublesTier: "DOU",
826
827
  },
827
828
  natu: {
828
- tier: "LC",
829
+ tier: "PU",
830
+ doublesTier: "LC",
829
831
  },
830
832
  xatu: {
831
833
  randomBattleMoves: ["heatwave", "lightscreen", "psychic", "reflect", "roost", "thunderwave", "toxic", "uturn"],
@@ -859,7 +861,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
859
861
  },
860
862
  sudowoodo: {
861
863
  randomBattleMoves: ["earthquake", "stealthrock", "stoneedge", "suckerpunch", "toxic", "woodhammer"],
862
- tier: "(NU)",
864
+ tier: "(PU)",
863
865
  doublesTier: "DUU",
864
866
  },
865
867
  hoppip: {
@@ -870,7 +872,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
870
872
  },
871
873
  jumpluff: {
872
874
  randomBattleMoves: ["acrobatics", "encore", "energyball", "leechseed", "sleeppowder", "uturn"],
873
- tier: "(NU)",
875
+ tier: "PU",
874
876
  doublesTier: "DUU",
875
877
  },
876
878
  aipom: {
@@ -886,7 +888,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
886
888
  },
887
889
  sunflora: {
888
890
  randomBattleMoves: ["earthpower", "encore", "gigadrain", "hiddenpowerrock", "solarbeam", "sunnyday"],
889
- tier: "(NU)",
891
+ tier: "(PU)",
890
892
  doublesTier: "DUU",
891
893
  },
892
894
  yanma: {
@@ -907,7 +909,8 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
907
909
  },
908
910
  murkrow: {
909
911
  randomBattleMoves: ["foulplay", "roost", "taunt", "thunderwave", "toxic"],
910
- tier: "NFE",
912
+ tier: "PU",
913
+ doublesTier: "NFE",
911
914
  },
912
915
  honchkrow: {
913
916
  randomBattleMoves: ["bravebird", "heatwave", "pursuit", "roost", "substitute", "suckerpunch", "superpower"],
@@ -925,7 +928,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
925
928
  },
926
929
  unown: {
927
930
  randomBattleMoves: ["hiddenpowerpsychic"],
928
- tier: "(NU)",
931
+ tier: "(PU)",
929
932
  doublesTier: "DUU",
930
933
  },
931
934
  wynaut: {
@@ -938,7 +941,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
938
941
  },
939
942
  girafarig: {
940
943
  randomBattleMoves: ["batonpass", "calmmind", "hypervoice", "psychic", "thunderbolt"],
941
- tier: "(NU)",
944
+ tier: "(PU)",
942
945
  doublesTier: "DUU",
943
946
  },
944
947
  pineco: {
@@ -951,7 +954,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
951
954
  },
952
955
  dunsparce: {
953
956
  randomBattleMoves: ["bite", "bodyslam", "coil", "glare", "headbutt", "rockslide", "roost"],
954
- tier: "(NU)",
957
+ tier: "(PU)",
955
958
  doublesTier: "DUU",
956
959
  },
957
960
  gligar: {
@@ -969,7 +972,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
969
972
  },
970
973
  granbull: {
971
974
  randomBattleMoves: ["closecombat", "crunch", "healbell", "return", "thunderwave", "toxic"],
972
- tier: "(NU)",
975
+ tier: "(PU)",
973
976
  doublesTier: "DUU",
974
977
  },
975
978
  qwilfish: {
@@ -979,16 +982,17 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
979
982
  },
980
983
  shuckle: {
981
984
  randomBattleMoves: ["encore", "protect", "stealthrock", "toxic", "wrap"],
982
- tier: "(NU)",
985
+ tier: "(PU)",
983
986
  doublesTier: "DUU",
984
987
  },
985
988
  heracross: {
986
- randomBattleMoves: ["closecombat", "facade", "earthquake", "megahorn", "stoneedge"],
989
+ randomBattleMoves: ["closecombat", "earthquake", "facade", "megahorn", "stoneedge"],
987
990
  tier: "UU",
988
991
  doublesTier: "DUU",
989
992
  },
990
993
  sneasel: {
991
- tier: "NFE",
994
+ tier: "PU",
995
+ doublesTier: "NFE",
992
996
  },
993
997
  weavile: {
994
998
  randomBattleMoves: ["icepunch", "iceshard", "lowkick", "nightslash", "pursuit", "swordsdance"],
@@ -1000,7 +1004,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1000
1004
  },
1001
1005
  ursaring: {
1002
1006
  randomBattleMoves: ["closecombat", "crunch", "earthquake", "facade", "protect", "swordsdance"],
1003
- tier: "(NU)",
1007
+ tier: "PU",
1004
1008
  doublesTier: "DUU",
1005
1009
  },
1006
1010
  slugma: {
@@ -1008,7 +1012,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1008
1012
  },
1009
1013
  magcargo: {
1010
1014
  randomBattleMoves: ["hiddenpowerrock", "lavaplume", "recover", "stealthrock", "toxic"],
1011
- tier: "(NU)",
1015
+ tier: "(PU)",
1012
1016
  doublesTier: "DUU",
1013
1017
  },
1014
1018
  swinub: {
@@ -1025,7 +1029,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1025
1029
  },
1026
1030
  corsola: {
1027
1031
  randomBattleMoves: ["powergem", "recover", "scald", "stealthrock", "toxic"],
1028
- tier: "(NU)",
1032
+ tier: "(PU)",
1029
1033
  doublesTier: "DUU",
1030
1034
  },
1031
1035
  remoraid: {
@@ -1033,12 +1037,12 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1033
1037
  },
1034
1038
  octillery: {
1035
1039
  randomBattleMoves: ["energyball", "fireblast", "hydropump", "icebeam", "thunderwave"],
1036
- tier: "(NU)",
1040
+ tier: "(PU)",
1037
1041
  doublesTier: "DUU",
1038
1042
  },
1039
1043
  delibird: {
1040
1044
  randomBattleMoves: ["aerialace", "icebeam", "iceshard", "rapidspin"],
1041
- tier: "(NU)",
1045
+ tier: "(PU)",
1042
1046
  doublesTier: "DUU",
1043
1047
  },
1044
1048
  mantyke: {
@@ -1046,7 +1050,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1046
1050
  },
1047
1051
  mantine: {
1048
1052
  randomBattleMoves: ["airslash", "hydropump", "icebeam", "raindance", "rest", "scald", "sleeptalk"],
1049
- tier: "(NU)",
1053
+ tier: "PU",
1050
1054
  doublesTier: "DUU",
1051
1055
  },
1052
1056
  skarmory: {
@@ -1072,7 +1076,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1072
1076
  },
1073
1077
  stantler: {
1074
1078
  randomBattleMoves: ["doubleedge", "earthquake", "jumpkick", "megahorn", "suckerpunch"],
1075
- tier: "(NU)",
1079
+ tier: "(PU)",
1076
1080
  doublesTier: "DUU",
1077
1081
  },
1078
1082
  smeargle: {
@@ -1141,7 +1145,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1141
1145
  tier: "LC",
1142
1146
  },
1143
1147
  combusken: {
1144
- tier: "NFE",
1148
+ tier: "PUBL",
1145
1149
  doublesTier: "DUU",
1146
1150
  },
1147
1151
  blaziken: {
@@ -1165,7 +1169,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1165
1169
  },
1166
1170
  mightyena: {
1167
1171
  randomBattleMoves: ["crunch", "facade", "firefang", "howl", "suckerpunch"],
1168
- tier: "(NU)",
1172
+ tier: "(PU)",
1169
1173
  doublesTier: "DUU",
1170
1174
  },
1171
1175
  zigzagoon: {
@@ -1173,7 +1177,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1173
1177
  },
1174
1178
  linoone: {
1175
1179
  randomBattleMoves: ["bellydrum", "extremespeed", "seedbomb", "shadowclaw"],
1176
- tier: "(NU)",
1180
+ tier: "PUBL",
1177
1181
  doublesTier: "DUU",
1178
1182
  },
1179
1183
  wurmple: {
@@ -1184,7 +1188,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1184
1188
  },
1185
1189
  beautifly: {
1186
1190
  randomBattleMoves: ["bugbuzz", "hiddenpowerground", "psychic", "quiverdance"],
1187
- tier: "(NU)",
1191
+ tier: "(PU)",
1188
1192
  doublesTier: "DUU",
1189
1193
  },
1190
1194
  cascoon: {
@@ -1192,7 +1196,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1192
1196
  },
1193
1197
  dustox: {
1194
1198
  randomBattleMoves: ["bugbuzz", "quiverdance", "roost", "sludgebomb", "substitute"],
1195
- tier: "(NU)",
1199
+ tier: "(PU)",
1196
1200
  doublesTier: "DUU",
1197
1201
  },
1198
1202
  lotad: {
@@ -1214,7 +1218,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1214
1218
  },
1215
1219
  shiftry: {
1216
1220
  randomBattleMoves: ["darkpulse", "hiddenpowerfire", "leafstorm", "naturepower", "seedbomb", "suckerpunch", "swordsdance"],
1217
- tier: "(NU)",
1221
+ tier: "PU",
1218
1222
  doublesTier: "DUU",
1219
1223
  },
1220
1224
  taillow: {
@@ -1230,7 +1234,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1230
1234
  },
1231
1235
  pelipper: {
1232
1236
  randomBattleMoves: ["hurricane", "icebeam", "roost", "scald", "tailwind", "toxic", "uturn"],
1233
- tier: "(NU)",
1237
+ tier: "(PU)",
1234
1238
  doublesTier: "DUU",
1235
1239
  },
1236
1240
  ralts: {
@@ -1254,7 +1258,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1254
1258
  },
1255
1259
  masquerain: {
1256
1260
  randomBattleMoves: ["airslash", "bugbuzz", "hydropump", "quiverdance", "roost"],
1257
- tier: "(NU)",
1261
+ tier: "(PU)",
1258
1262
  doublesTier: "DUU",
1259
1263
  },
1260
1264
  shroomish: {
@@ -1270,11 +1274,12 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1270
1274
  },
1271
1275
  vigoroth: {
1272
1276
  randomBattleMoves: ["bulkup", "earthquake", "return", "slackoff", "taunt", "toxic"],
1273
- tier: "NFE",
1277
+ tier: "PUBL",
1278
+ doublesTier: "NFE",
1274
1279
  },
1275
1280
  slaking: {
1276
1281
  randomBattleMoves: ["earthquake", "nightslash", "pursuit", "retaliate", "return"],
1277
- tier: "(NU)",
1282
+ tier: "(PU)",
1278
1283
  doublesTier: "DUU",
1279
1284
  },
1280
1285
  nincada: {
@@ -1287,7 +1292,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1287
1292
  },
1288
1293
  shedinja: {
1289
1294
  randomBattleMoves: ["shadowclaw", "shadowsneak", "swordsdance", "willowisp", "xscissor"],
1290
- tier: "(NU)",
1295
+ tier: "(PU)",
1291
1296
  doublesTier: "DUU",
1292
1297
  },
1293
1298
  whismur: {
@@ -1298,7 +1303,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1298
1303
  },
1299
1304
  exploud: {
1300
1305
  randomBattleMoves: ["fireblast", "focusblast", "hypervoice", "lowkick", "surf"],
1301
- tier: "(NU)",
1306
+ tier: "(PU)",
1302
1307
  doublesTier: "DUU",
1303
1308
  },
1304
1309
  makuhita: {
@@ -1322,7 +1327,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1322
1327
  },
1323
1328
  delcatty: {
1324
1329
  randomBattleMoves: ["doubleedge", "fakeout", "icebeam", "suckerpunch", "thunderwave"],
1325
- tier: "(NU)",
1330
+ tier: "(PU)",
1326
1331
  doublesTier: "DUU",
1327
1332
  },
1328
1333
  sableye: {
@@ -1332,7 +1337,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1332
1337
  },
1333
1338
  mawile: {
1334
1339
  randomBattleMoves: ["batonpass", "firefang", "ironhead", "substitute", "suckerpunch", "swordsdance"],
1335
- tier: "(NU)",
1340
+ tier: "PU",
1336
1341
  doublesTier: "DUU",
1337
1342
  },
1338
1343
  aron: {
@@ -1363,23 +1368,23 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1363
1368
  doublesTier: "DUU",
1364
1369
  },
1365
1370
  plusle: {
1366
- randomBattleMoves: ["batonpass", "hiddenpowerice", "nastyplot", "thunderbolt", "substitute"],
1367
- tier: "(NU)",
1371
+ randomBattleMoves: ["batonpass", "hiddenpowerice", "nastyplot", "substitute", "thunderbolt"],
1372
+ tier: "(PU)",
1368
1373
  doublesTier: "DUU",
1369
1374
  },
1370
1375
  minun: {
1371
- randomBattleMoves: ["batonpass", "encore", "nastyplot", "thunderbolt", "substitute"],
1372
- tier: "(NU)",
1376
+ randomBattleMoves: ["batonpass", "encore", "nastyplot", "substitute", "thunderbolt"],
1377
+ tier: "(PU)",
1373
1378
  doublesTier: "DUU",
1374
1379
  },
1375
1380
  volbeat: {
1376
1381
  randomBattleMoves: ["batonpass", "bugbuzz", "encore", "substitute", "tailglow", "thunderwave"],
1377
- tier: "(NU)",
1382
+ tier: "PU",
1378
1383
  doublesTier: "DUU",
1379
1384
  },
1380
1385
  illumise: {
1381
1386
  randomBattleMoves: ["batonpass", "bugbuzz", "encore", "substitute", "thunderwave", "wish"],
1382
- tier: "(NU)",
1387
+ tier: "(PU)",
1383
1388
  doublesTier: "DUU",
1384
1389
  },
1385
1390
  budew: {
@@ -1399,7 +1404,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1399
1404
  },
1400
1405
  swalot: {
1401
1406
  randomBattleMoves: ["earthquake", "encore", "painsplit", "protect", "sludgebomb", "toxic"],
1402
- tier: "(NU)",
1407
+ tier: "(PU)",
1403
1408
  doublesTier: "DUU",
1404
1409
  },
1405
1410
  carvanha: {
@@ -1415,7 +1420,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1415
1420
  },
1416
1421
  wailord: {
1417
1422
  randomBattleMoves: ["hiddenpowergrass", "hydropump", "icebeam", "surf", "waterspout"],
1418
- tier: "(NU)",
1423
+ tier: "(PU)",
1419
1424
  doublesTier: "DUU",
1420
1425
  },
1421
1426
  numel: {
@@ -1436,12 +1441,12 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1436
1441
  },
1437
1442
  grumpig: {
1438
1443
  randomBattleMoves: ["focusblast", "healbell", "psychic", "shadowball", "thunderwave", "trick", "whirlwind"],
1439
- tier: "(NU)",
1444
+ tier: "(PU)",
1440
1445
  doublesTier: "DUU",
1441
1446
  },
1442
1447
  spinda: {
1443
1448
  randomBattleMoves: ["return", "suckerpunch", "superpower", "trickroom"],
1444
- tier: "(NU)",
1449
+ tier: "(PU)",
1445
1450
  doublesTier: "DUU",
1446
1451
  },
1447
1452
  trapinch: {
@@ -1478,17 +1483,17 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1478
1483
  },
1479
1484
  seviper: {
1480
1485
  randomBattleMoves: ["earthquake", "flamethrower", "gigadrain", "sludgebomb", "suckerpunch", "switcheroo"],
1481
- tier: "(NU)",
1486
+ tier: "(PU)",
1482
1487
  doublesTier: "DUU",
1483
1488
  },
1484
1489
  lunatone: {
1485
1490
  randomBattleMoves: ["batonpass", "earthpower", "hiddenpowerrock", "moonlight", "psychic", "rockpolish", "stealthrock", "toxic"],
1486
- tier: "(NU)",
1491
+ tier: "(PU)",
1487
1492
  doublesTier: "DUU",
1488
1493
  },
1489
1494
  solrock: {
1490
1495
  randomBattleMoves: ["explosion", "lightscreen", "morningsun", "reflect", "rockslide", "stealthrock", "willowisp"],
1491
- tier: "(NU)",
1496
+ tier: "(PU)",
1492
1497
  doublesTier: "DUU",
1493
1498
  },
1494
1499
  barboach: {
@@ -1496,7 +1501,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1496
1501
  },
1497
1502
  whiscash: {
1498
1503
  randomBattleMoves: ["dragondance", "earthquake", "icebeam", "waterfall"],
1499
- tier: "(NU)",
1504
+ tier: "(PU)",
1500
1505
  doublesTier: "DUU",
1501
1506
  },
1502
1507
  corphish: {
@@ -1540,7 +1545,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1540
1545
  doublesTier: "DUU",
1541
1546
  },
1542
1547
  castform: {
1543
- tier: "(NU)",
1548
+ tier: "(PU)",
1544
1549
  doublesTier: "DUU",
1545
1550
  },
1546
1551
  castformsunny: {
@@ -1552,7 +1557,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1552
1557
  castformsnowy: {},
1553
1558
  kecleon: {
1554
1559
  randomBattleMoves: ["foulplay", "recover", "stealthrock", "thunderwave", "toxic"],
1555
- tier: "(NU)",
1560
+ tier: "(PU)",
1556
1561
  doublesTier: "DUU",
1557
1562
  },
1558
1563
  shuppet: {
@@ -1560,7 +1565,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1560
1565
  },
1561
1566
  banette: {
1562
1567
  randomBattleMoves: ["pursuit", "shadowclaw", "shadowsneak", "trick", "willowisp"],
1563
- tier: "(NU)",
1568
+ tier: "PU",
1564
1569
  doublesTier: "DUU",
1565
1570
  },
1566
1571
  duskull: {
@@ -1572,13 +1577,13 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1572
1577
  doublesTier: "NFE",
1573
1578
  },
1574
1579
  dusknoir: {
1575
- randomBattleMoves: ["earthquake", "icepunch", "painsplit", "shadowsneak", "willowisp", "trick"],
1580
+ randomBattleMoves: ["earthquake", "icepunch", "painsplit", "shadowsneak", "trick", "willowisp"],
1576
1581
  tier: "RU",
1577
1582
  doublesTier: "DUU",
1578
1583
  },
1579
1584
  tropius: {
1580
1585
  randomBattleMoves: ["airslash", "leechseed", "protect", "substitute", "toxic"],
1581
- tier: "(NU)",
1586
+ tier: "(PU)",
1582
1587
  doublesTier: "DUU",
1583
1588
  },
1584
1589
  chingling: {
@@ -1586,7 +1591,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1586
1591
  },
1587
1592
  chimecho: {
1588
1593
  randomBattleMoves: ["calmmind", "healingwish", "psychic", "recover", "shadowball", "toxic", "yawn"],
1589
- tier: "(NU)",
1594
+ tier: "(PU)",
1590
1595
  doublesTier: "DUU",
1591
1596
  },
1592
1597
  absol: {
@@ -1599,7 +1604,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1599
1604
  },
1600
1605
  glalie: {
1601
1606
  randomBattleMoves: ["earthquake", "explosion", "icebeam", "spikes", "taunt"],
1602
- tier: "(NU)",
1607
+ tier: "(PU)",
1603
1608
  doublesTier: "DUU",
1604
1609
  },
1605
1610
  froslass: {
@@ -1615,7 +1620,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1615
1620
  },
1616
1621
  walrein: {
1617
1622
  randomBattleMoves: ["encore", "icebeam", "protect", "roar", "surf", "toxic"],
1618
- tier: "(NU)",
1623
+ tier: "(PU)",
1619
1624
  doublesTier: "DUU",
1620
1625
  },
1621
1626
  clamperl: {
@@ -1623,7 +1628,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1623
1628
  },
1624
1629
  huntail: {
1625
1630
  randomBattleMoves: ["icebeam", "return", "shellsmash", "waterfall"],
1626
- tier: "(NU)",
1631
+ tier: "PU",
1627
1632
  doublesTier: "DUU",
1628
1633
  },
1629
1634
  gorebyss: {
@@ -1633,12 +1638,12 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1633
1638
  },
1634
1639
  relicanth: {
1635
1640
  randomBattleMoves: ["doubleedge", "earthquake", "headsmash", "stealthrock", "waterfall"],
1636
- tier: "(NU)",
1641
+ tier: "PU",
1637
1642
  doublesTier: "DUU",
1638
1643
  },
1639
1644
  luvdisc: {
1640
- randomBattleMoves: ["icebeam", "protect", "surf", "toxic", "sweetkiss"],
1641
- tier: "(NU)",
1645
+ randomBattleMoves: ["icebeam", "protect", "surf", "sweetkiss", "toxic"],
1646
+ tier: "(PU)",
1642
1647
  doublesTier: "DUU",
1643
1648
  },
1644
1649
  bagon: {
@@ -1670,12 +1675,12 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1670
1675
  doublesTier: "DUU",
1671
1676
  },
1672
1677
  regice: {
1673
- randomBattleMoves: ["focusblast", "icebeam", "rockpolish", "rest", "sleeptalk", "thunderbolt"],
1678
+ randomBattleMoves: ["focusblast", "icebeam", "rest", "rockpolish", "sleeptalk", "thunderbolt"],
1674
1679
  tier: "NU",
1675
1680
  doublesTier: "DUU",
1676
1681
  },
1677
1682
  registeel: {
1678
- randomBattleMoves: ["ironhead", "curse", "protect", "rest", "sleeptalk", "stealthrock", "toxic"],
1683
+ randomBattleMoves: ["curse", "ironhead", "protect", "rest", "sleeptalk", "stealthrock", "toxic"],
1679
1684
  tier: "UU",
1680
1685
  doublesTier: "DUU",
1681
1686
  },
@@ -1715,7 +1720,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1715
1720
  doublesTier: "DUU",
1716
1721
  },
1717
1722
  deoxysattack: {
1718
- randomBattleMoves: ["extremespeed", "hiddenpowerfire", "icebeam", "psychoboost", "superpower", "stealthrock"],
1723
+ randomBattleMoves: ["extremespeed", "hiddenpowerfire", "icebeam", "psychoboost", "stealthrock", "superpower"],
1719
1724
  tier: "Uber",
1720
1725
  doublesTier: "DUU",
1721
1726
  },
@@ -1737,14 +1742,15 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1737
1742
  },
1738
1743
  torterra: {
1739
1744
  randomBattleMoves: ["earthquake", "rockpolish", "stealthrock", "stoneedge", "synthesis", "woodhammer"],
1740
- tier: "(NU)",
1745
+ tier: "PU",
1741
1746
  doublesTier: "DUU",
1742
1747
  },
1743
1748
  chimchar: {
1744
1749
  tier: "LC",
1745
1750
  },
1746
1751
  monferno: {
1747
- tier: "NFE",
1752
+ tier: "PU",
1753
+ doublesTier: "NFE",
1748
1754
  },
1749
1755
  infernape: {
1750
1756
  randomBattleMoves: ["closecombat", "flareblitz", "hiddenpowerice", "machpunch", "overheat", "swordsdance", "thunderpunch", "uturn"],
@@ -1778,7 +1784,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1778
1784
  },
1779
1785
  bibarel: {
1780
1786
  randomBattleMoves: ["curse", "quickattack", "rest", "waterfall"],
1781
- tier: "(NU)",
1787
+ tier: "(PU)",
1782
1788
  doublesTier: "DUU",
1783
1789
  },
1784
1790
  kricketot: {
@@ -1786,7 +1792,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1786
1792
  },
1787
1793
  kricketune: {
1788
1794
  randomBattleMoves: ["brickbreak", "bugbite", "nightslash", "return", "swordsdance"],
1789
- tier: "(NU)",
1795
+ tier: "(PU)",
1790
1796
  doublesTier: "DUU",
1791
1797
  },
1792
1798
  shinx: {
@@ -1797,7 +1803,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1797
1803
  },
1798
1804
  luxray: {
1799
1805
  randomBattleMoves: ["crunch", "facade", "icefang", "superpower", "voltswitch", "wildcharge"],
1800
- tier: "(NU)",
1806
+ tier: "(PU)",
1801
1807
  doublesTier: "DUU",
1802
1808
  },
1803
1809
  cranidos: {
@@ -1805,7 +1811,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1805
1811
  },
1806
1812
  rampardos: {
1807
1813
  randomBattleMoves: ["crunch", "earthquake", "firepunch", "headsmash", "rockpolish", "superpower"],
1808
- tier: "(NU)",
1814
+ tier: "PU",
1809
1815
  doublesTier: "DUU",
1810
1816
  },
1811
1817
  shieldon: {
@@ -1821,22 +1827,22 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1821
1827
  },
1822
1828
  wormadam: {
1823
1829
  randomBattleMoves: ["gigadrain", "hiddenpowerrock", "leafstorm", "protect", "signalbeam", "toxic"],
1824
- tier: "(NU)",
1830
+ tier: "(PU)",
1825
1831
  doublesTier: "DUU",
1826
1832
  },
1827
1833
  wormadamsandy: {
1828
1834
  randomBattleMoves: ["earthquake", "protect", "rockblast", "stealthrock", "toxic"],
1829
- tier: "(NU)",
1835
+ tier: "(PU)",
1830
1836
  doublesTier: "DUU",
1831
1837
  },
1832
1838
  wormadamtrash: {
1833
1839
  randomBattleMoves: ["ironhead", "protect", "stealthrock", "toxic"],
1834
- tier: "(NU)",
1840
+ tier: "(PU)",
1835
1841
  doublesTier: "DUU",
1836
1842
  },
1837
1843
  mothim: {
1838
1844
  randomBattleMoves: ["airslash", "bugbuzz", "hiddenpowerground", "quiverdance", "substitute"],
1839
- tier: "(NU)",
1845
+ tier: "(PU)",
1840
1846
  doublesTier: "DUU",
1841
1847
  },
1842
1848
  combee: {
@@ -1844,12 +1850,12 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1844
1850
  },
1845
1851
  vespiquen: {
1846
1852
  randomBattleMoves: ["attackorder", "protect", "roost", "substitute", "toxic"],
1847
- tier: "(NU)",
1853
+ tier: "(PU)",
1848
1854
  doublesTier: "DUU",
1849
1855
  },
1850
1856
  pachirisu: {
1851
1857
  randomBattleMoves: ["protect", "superfang", "thunderwave", "toxic", "voltswitch"],
1852
- tier: "(NU)",
1858
+ tier: "(PU)",
1853
1859
  doublesTier: "DUU",
1854
1860
  },
1855
1861
  buizel: {
@@ -1865,7 +1871,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1865
1871
  },
1866
1872
  cherrim: {
1867
1873
  randomBattleMoves: ["energyball", "healingwish", "hiddenpowerrock", "naturepower"],
1868
- tier: "(NU)",
1874
+ tier: "(PU)",
1869
1875
  doublesTier: "DUU",
1870
1876
  },
1871
1877
  cherrimsunshine: {
@@ -1892,7 +1898,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1892
1898
  },
1893
1899
  lopunny: {
1894
1900
  randomBattleMoves: ["firepunch", "healingwish", "icepunch", "jumpkick", "return", "switcheroo", "thunderpunch"],
1895
- tier: "(NU)",
1901
+ tier: "(PU)",
1896
1902
  doublesTier: "DUU",
1897
1903
  },
1898
1904
  glameow: {
@@ -1900,7 +1906,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1900
1906
  },
1901
1907
  purugly: {
1902
1908
  randomBattleMoves: ["fakeout", "hypnosis", "return", "suckerpunch", "uturn"],
1903
- tier: "(NU)",
1909
+ tier: "PU",
1904
1910
  doublesTier: "DUU",
1905
1911
  },
1906
1912
  stunky: {
@@ -1912,7 +1918,8 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1912
1918
  doublesTier: "DUU",
1913
1919
  },
1914
1920
  bronzor: {
1915
- tier: "LC",
1921
+ tier: "PU",
1922
+ doublesTier: "LC",
1916
1923
  },
1917
1924
  bronzong: {
1918
1925
  randomBattleMoves: ["earthquake", "hypnosis", "lightscreen", "psychic", "reflect", "stealthrock", "toxic"],
@@ -1921,7 +1928,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1921
1928
  },
1922
1929
  chatot: {
1923
1930
  randomBattleMoves: ["chatter", "heatwave", "hiddenpowerground", "hypervoice", "nastyplot", "substitute", "uturn"],
1924
- tier: "(NU)",
1931
+ tier: "(PU)",
1925
1932
  doublesTier: "DUU",
1926
1933
  },
1927
1934
  spiritomb: {
@@ -1933,7 +1940,8 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1933
1940
  tier: "LC",
1934
1941
  },
1935
1942
  gabite: {
1936
- tier: "NFE",
1943
+ tier: "PU",
1944
+ doublesTier: "NFE",
1937
1945
  },
1938
1946
  garchomp: {
1939
1947
  randomBattleMoves: ["aquatail", "earthquake", "fireblast", "outrage", "stealthrock", "stoneedge", "swordsdance"],
@@ -1941,7 +1949,8 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1941
1949
  doublesTier: "DOU",
1942
1950
  },
1943
1951
  riolu: {
1944
- tier: "LC",
1952
+ tier: "PUBL",
1953
+ doublesTier: "LC",
1945
1954
  },
1946
1955
  lucario: {
1947
1956
  randomBattleMoves: ["closecombat", "crunch", "extremespeed", "icepunch", "swordsdance"],
@@ -1953,7 +1962,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1953
1962
  },
1954
1963
  hippowdon: {
1955
1964
  randomBattleMoves: ["earthquake", "icefang", "slackoff", "stealthrock", "toxic", "whirlwind"],
1956
- tier: "OU",
1965
+ tier: "(OU)",
1957
1966
  doublesTier: "DUU",
1958
1967
  },
1959
1968
  skorupi: {
@@ -1974,7 +1983,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1974
1983
  },
1975
1984
  carnivine: {
1976
1985
  randomBattleMoves: ["leechseed", "powerwhip", "return", "sleeppowder", "substitute", "swordsdance"],
1977
- tier: "(NU)",
1986
+ tier: "(PU)",
1978
1987
  doublesTier: "DUU",
1979
1988
  },
1980
1989
  finneon: {
@@ -1982,7 +1991,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1982
1991
  },
1983
1992
  lumineon: {
1984
1993
  randomBattleMoves: ["icebeam", "protect", "scald", "toxic", "uturn"],
1985
- tier: "(NU)",
1994
+ tier: "(PU)",
1986
1995
  doublesTier: "DUU",
1987
1996
  },
1988
1997
  snover: {
@@ -1994,7 +2003,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1994
2003
  doublesTier: "DOU",
1995
2004
  },
1996
2005
  rotom: {
1997
- randomBattleMoves: ["hiddenpowerice", "shadowball", "substitute", "painsplit", "thunderbolt", "trick", "voltswitch", "willowisp"],
2006
+ randomBattleMoves: ["hiddenpowerice", "painsplit", "shadowball", "substitute", "thunderbolt", "trick", "voltswitch", "willowisp"],
1998
2007
  tier: "RU",
1999
2008
  doublesTier: "DUU",
2000
2009
  },
@@ -2010,7 +2019,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2010
2019
  },
2011
2020
  rotomfrost: {
2012
2021
  randomBattleMoves: ["blizzard", "hiddenpowerfire", "painsplit", "substitute", "thunderbolt", "trick", "voltswitch", "willowisp"],
2013
- tier: "(NU)",
2022
+ tier: "PUBL",
2014
2023
  doublesTier: "DUU",
2015
2024
  },
2016
2025
  rotomfan: {
@@ -2055,11 +2064,11 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2055
2064
  },
2056
2065
  regigigas: {
2057
2066
  randomBattleMoves: ["confuseray", "return", "rockslide", "substitute", "thunderwave"],
2058
- tier: "(NU)",
2067
+ tier: "(PU)",
2059
2068
  doublesTier: "DUU",
2060
2069
  },
2061
2070
  giratina: {
2062
- randomBattleMoves: ["calmmind", "dragontail", "dragonpulse", "rest", "sleeptalk", "willowisp"],
2071
+ randomBattleMoves: ["calmmind", "dragonpulse", "dragontail", "rest", "sleeptalk", "willowisp"],
2063
2072
  tier: "Uber",
2064
2073
  doublesTier: "DUber",
2065
2074
  },
@@ -2075,7 +2084,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2075
2084
  },
2076
2085
  phione: {
2077
2086
  randomBattleMoves: ["healbell", "icebeam", "scald", "toxic", "uturn"],
2078
- tier: "(NU)",
2087
+ tier: "(PU)",
2079
2088
  doublesTier: "DUU",
2080
2089
  },
2081
2090
  manaphy: {
@@ -2089,7 +2098,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2089
2098
  doublesTier: "DUU",
2090
2099
  },
2091
2100
  shaymin: {
2092
- randomBattleMoves: ["earthpower", "hiddenpowerfire", "leechseed", "psychic", "seedflare", "rest", "substitute"],
2101
+ randomBattleMoves: ["earthpower", "hiddenpowerfire", "leechseed", "psychic", "rest", "seedflare", "substitute"],
2093
2102
  tier: "UU",
2094
2103
  doublesTier: "DUU",
2095
2104
  },
@@ -2143,7 +2152,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2143
2152
  randomBattleMoves: ["calmmind", "darkpulse", "judgment", "recover", "willowisp"],
2144
2153
  },
2145
2154
  arceusrock: {
2146
- randomBattleMoves: ["earthquake", "stoneedge", "swordsdance", "recover"],
2155
+ randomBattleMoves: ["earthquake", "recover", "stoneedge", "swordsdance"],
2147
2156
  },
2148
2157
  arceussteel: {
2149
2158
  randomBattleMoves: ["calmmind", "judgment", "recover", "thunderbolt", "willowisp"],
@@ -2194,7 +2203,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2194
2203
  },
2195
2204
  watchog: {
2196
2205
  randomBattleMoves: ["batonpass", "hypnosis", "return", "substitute", "superfang", "swordsdance"],
2197
- tier: "(NU)",
2206
+ tier: "(PU)",
2198
2207
  doublesTier: "DUU",
2199
2208
  },
2200
2209
  lillipup: {
@@ -2205,7 +2214,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2205
2214
  },
2206
2215
  stoutland: {
2207
2216
  randomBattleMoves: ["crunch", "return", "superpower", "thunderwave", "wildcharge"],
2208
- tier: "(NU)",
2217
+ tier: "PU",
2209
2218
  doublesTier: "DUU",
2210
2219
  },
2211
2220
  purrloin: {
@@ -2221,7 +2230,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2221
2230
  },
2222
2231
  simisage: {
2223
2232
  randomBattleMoves: ["focusblast", "gigadrain", "hiddenpowerrock", "leechseed", "nastyplot", "substitute"],
2224
- tier: "(NU)",
2233
+ tier: "PU",
2225
2234
  doublesTier: "DUU",
2226
2235
  },
2227
2236
  pansear: {
@@ -2229,7 +2238,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2229
2238
  },
2230
2239
  simisear: {
2231
2240
  randomBattleMoves: ["fireblast", "focusblast", "grassknot", "hiddenpowerrock", "nastyplot", "substitute"],
2232
- tier: "(NU)",
2241
+ tier: "(PU)",
2233
2242
  doublesTier: "DUU",
2234
2243
  },
2235
2244
  panpour: {
@@ -2237,7 +2246,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2237
2246
  },
2238
2247
  simipour: {
2239
2248
  randomBattleMoves: ["focusblast", "hiddenpowergrass", "hydropump", "icebeam", "nastyplot", "substitute"],
2240
- tier: "(NU)",
2249
+ tier: "PUBL",
2241
2250
  doublesTier: "DUU",
2242
2251
  },
2243
2252
  munna: {
@@ -2256,7 +2265,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2256
2265
  },
2257
2266
  unfezant: {
2258
2267
  randomBattleMoves: ["hypnosis", "pluck", "return", "roost", "tailwind", "uturn"],
2259
- tier: "(NU)",
2268
+ tier: "(PU)",
2260
2269
  doublesTier: "DUU",
2261
2270
  },
2262
2271
  blitzle: {
@@ -2264,7 +2273,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2264
2273
  },
2265
2274
  zebstrika: {
2266
2275
  randomBattleMoves: ["hiddenpowergrass", "overheat", "thunderbolt", "voltswitch", "wildcharge"],
2267
- tier: "(NU)",
2276
+ tier: "PU",
2268
2277
  doublesTier: "DUU",
2269
2278
  },
2270
2279
  roggenrola: {
@@ -2283,7 +2292,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2283
2292
  },
2284
2293
  swoobat: {
2285
2294
  randomBattleMoves: ["airslash", "calmmind", "heatwave", "roost", "storedpower"],
2286
- tier: "(NU)",
2295
+ tier: "PU",
2287
2296
  doublesTier: "DUU",
2288
2297
  },
2289
2298
  drilbur: {
@@ -2296,7 +2305,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2296
2305
  },
2297
2306
  audino: {
2298
2307
  randomBattleMoves: ["doubleedge", "healbell", "magiccoat", "protect", "toxic", "wish"],
2299
- tier: "(NU)",
2308
+ tier: "PU",
2300
2309
  doublesTier: "DUU",
2301
2310
  },
2302
2311
  timburr: {
@@ -2324,7 +2333,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2324
2333
  },
2325
2334
  throh: {
2326
2335
  randomBattleMoves: ["bulkup", "icepunch", "payback", "rest", "sleeptalk", "stormthrow", "substitute"],
2327
- tier: "(NU)",
2336
+ tier: "PUBL",
2328
2337
  doublesTier: "DUU",
2329
2338
  },
2330
2339
  sawk: {
@@ -2340,7 +2349,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2340
2349
  },
2341
2350
  leavanny: {
2342
2351
  randomBattleMoves: ["batonpass", "leafblade", "swordsdance", "xscissor"],
2343
- tier: "(NU)",
2352
+ tier: "(PU)",
2344
2353
  doublesTier: "DUU",
2345
2354
  },
2346
2355
  venipede: {
@@ -2384,7 +2393,8 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2384
2393
  tier: "LC",
2385
2394
  },
2386
2395
  krokorok: {
2387
- tier: "NFE",
2396
+ tier: "PU",
2397
+ doublesTier: "NFE",
2388
2398
  },
2389
2399
  krookodile: {
2390
2400
  randomBattleMoves: ["crunch", "earthquake", "pursuit", "stealthrock", "stoneedge", "superpower"],
@@ -2401,11 +2411,12 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2401
2411
  },
2402
2412
  maractus: {
2403
2413
  randomBattleMoves: ["gigadrain", "hiddenpowerfire", "leechseed", "spikes", "toxic"],
2404
- tier: "(NU)",
2414
+ tier: "PU",
2405
2415
  doublesTier: "DUU",
2406
2416
  },
2407
2417
  dwebble: {
2408
- tier: "LC",
2418
+ tier: "PU",
2419
+ doublesTier: "LC",
2409
2420
  },
2410
2421
  crustle: {
2411
2422
  randomBattleMoves: ["earthquake", "rockblast", "shellsmash", "spikes", "stealthrock", "stoneedge", "xscissor"],
@@ -2413,7 +2424,8 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2413
2424
  doublesTier: "DUU",
2414
2425
  },
2415
2426
  scraggy: {
2416
- tier: "NFE",
2427
+ tier: "PU",
2428
+ doublesTier: "NFE",
2417
2429
  },
2418
2430
  scrafty: {
2419
2431
  randomBattleMoves: ["crunch", "dragondance", "highjumpkick", "icepunch", "zenheadbutt"],
@@ -2477,7 +2489,8 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2477
2489
  tier: "LC",
2478
2490
  },
2479
2491
  gothorita: {
2480
- tier: "NFE",
2492
+ tier: "PUBL",
2493
+ doublesTier: "NFE",
2481
2494
  },
2482
2495
  gothitelle: {
2483
2496
  randomBattleMoves: ["calmmind", "hiddenpowerfighting", "psychic", "rest", "thunderbolt", "trick"],
@@ -2488,7 +2501,8 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2488
2501
  tier: "LC",
2489
2502
  },
2490
2503
  duosion: {
2491
- tier: "NFE",
2504
+ tier: "PU",
2505
+ doublesTier: "NFE",
2492
2506
  },
2493
2507
  reuniclus: {
2494
2508
  randomBattleMoves: ["calmmind", "focusblast", "psychic", "recover", "shadowball", "trickroom"],
@@ -2500,7 +2514,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2500
2514
  },
2501
2515
  swanna: {
2502
2516
  randomBattleMoves: ["hurricane", "icebeam", "raindance", "roost", "surf"],
2503
- tier: "(NU)",
2517
+ tier: "PU",
2504
2518
  doublesTier: "DUU",
2505
2519
  },
2506
2520
  vanillite: {
@@ -2511,7 +2525,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2511
2525
  },
2512
2526
  vanilluxe: {
2513
2527
  randomBattleMoves: ["autotomize", "explosion", "flashcannon", "hiddenpowerground", "icebeam"],
2514
- tier: "(NU)",
2528
+ tier: "(PU)",
2515
2529
  doublesTier: "DUU",
2516
2530
  },
2517
2531
  deerling: {
@@ -2524,7 +2538,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2524
2538
  },
2525
2539
  emolga: {
2526
2540
  randomBattleMoves: ["acrobatics", "encore", "roost", "thunderbolt", "toxic", "uturn"],
2527
- tier: "(NU)",
2541
+ tier: "(PU)",
2528
2542
  doublesTier: "DUU",
2529
2543
  },
2530
2544
  karrablast: {
@@ -2577,7 +2591,8 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2577
2591
  tier: "LC",
2578
2592
  },
2579
2593
  klang: {
2580
- tier: "NFE",
2594
+ tier: "PU",
2595
+ doublesTier: "NFE",
2581
2596
  },
2582
2597
  klinklang: {
2583
2598
  randomBattleMoves: ["geargrind", "return", "shiftgear", "wildcharge"],
@@ -2600,7 +2615,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2600
2615
  },
2601
2616
  beheeyem: {
2602
2617
  randomBattleMoves: ["hiddenpowerfighting", "psychic", "thunderbolt", "trick", "trickroom"],
2603
- tier: "(NU)",
2618
+ tier: "PU",
2604
2619
  doublesTier: "DUU",
2605
2620
  },
2606
2621
  litwick: {
@@ -2618,7 +2633,8 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2618
2633
  tier: "LC",
2619
2634
  },
2620
2635
  fraxure: {
2621
- tier: "NFE",
2636
+ tier: "PU",
2637
+ doublesTier: "NFE",
2622
2638
  },
2623
2639
  haxorus: {
2624
2640
  randomBattleMoves: ["aquatail", "dragondance", "earthquake", "outrage", "superpower", "swordsdance"],
@@ -2630,7 +2646,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2630
2646
  },
2631
2647
  beartic: {
2632
2648
  randomBattleMoves: ["aquajet", "iciclecrash", "stoneedge", "superpower", "swordsdance"],
2633
- tier: "(NU)",
2649
+ tier: "(PU)",
2634
2650
  doublesTier: "DUU",
2635
2651
  },
2636
2652
  cryogonal: {
@@ -2648,14 +2664,14 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2648
2664
  },
2649
2665
  stunfisk: {
2650
2666
  randomBattleMoves: ["discharge", "earthpower", "rest", "scald", "sleeptalk", "stealthrock", "toxic"],
2651
- tier: "(NU)",
2667
+ tier: "PU",
2652
2668
  doublesTier: "DUU",
2653
2669
  },
2654
2670
  mienfoo: {
2655
2671
  tier: "LC",
2656
2672
  },
2657
2673
  mienshao: {
2658
- randomBattleMoves: ["batonpass", "highjumpkick", "stoneedge", "swordsdance", "substitute", "uturn"],
2674
+ randomBattleMoves: ["batonpass", "highjumpkick", "stoneedge", "substitute", "swordsdance", "uturn"],
2659
2675
  tier: "UU",
2660
2676
  doublesTier: "DUU",
2661
2677
  },
@@ -2703,7 +2719,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2703
2719
  },
2704
2720
  heatmor: {
2705
2721
  randomBattleMoves: ["fireblast", "gigadrain", "suckerpunch", "superpower"],
2706
- tier: "(NU)",
2722
+ tier: "(PU)",
2707
2723
  doublesTier: "DUU",
2708
2724
  },
2709
2725
  durant: {
@@ -2715,7 +2731,8 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2715
2731
  tier: "LC",
2716
2732
  },
2717
2733
  zweilous: {
2718
- tier: "NFE",
2734
+ tier: "PU",
2735
+ doublesTier: "NFE",
2719
2736
  },
2720
2737
  hydreigon: {
2721
2738
  randomBattleMoves: ["darkpulse", "dracometeor", "flamethrower", "focusblast", "roost", "uturn"],
@@ -2741,7 +2758,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2741
2758
  doublesTier: "DOU",
2742
2759
  },
2743
2760
  virizion: {
2744
- randomBattleMoves: ["calmmind", "closecombat", "focusblast", "gigadrain", "leafblade", "hiddenpowerice", "stoneedge", "swordsdance"],
2761
+ randomBattleMoves: ["calmmind", "closecombat", "focusblast", "gigadrain", "hiddenpowerice", "leafblade", "stoneedge", "swordsdance"],
2745
2762
  tier: "UU",
2746
2763
  doublesTier: "DUU",
2747
2764
  },
@@ -2781,7 +2798,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
2781
2798
  doublesTier: "DUU",
2782
2799
  },
2783
2800
  landorustherian: {
2784
- randomBattleMoves: ["earthquake", "hiddenpowerice", "rockpolish", "stealthrock", "stoneedge", "swordsdance", "superpower", "uturn"],
2801
+ randomBattleMoves: ["earthquake", "hiddenpowerice", "rockpolish", "stealthrock", "stoneedge", "superpower", "swordsdance", "uturn"],
2785
2802
  tier: "OU",
2786
2803
  doublesTier: "DOU",
2787
2804
  },