@pkmn/sim 0.5.20 → 0.5.23

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 (102) hide show
  1. package/build/config/formats.js +149 -126
  2. package/build/config/formats.js.map +1 -1
  3. package/build/data/abilities.js +1 -3
  4. package/build/data/abilities.js.map +1 -1
  5. package/build/data/aliases.js +4 -4
  6. package/build/data/aliases.js.map +1 -1
  7. package/build/data/conditions.js +5 -2
  8. package/build/data/conditions.js.map +1 -1
  9. package/build/data/formats-data.js +20 -17
  10. package/build/data/formats-data.js.map +1 -1
  11. package/build/data/learnsets.js +29 -0
  12. package/build/data/learnsets.js.map +1 -1
  13. package/build/data/mods/gen1/conditions.js +7 -0
  14. package/build/data/mods/gen1/conditions.js.map +1 -1
  15. package/build/data/mods/gen1/formats-data.js +2 -2
  16. package/build/data/mods/gen1/formats-data.js.map +1 -1
  17. package/build/data/mods/gen1/moves.js +2 -3
  18. package/build/data/mods/gen1/moves.js.map +1 -1
  19. package/build/data/mods/gen1/scripts.js +4 -2
  20. package/build/data/mods/gen1/scripts.js.map +1 -1
  21. package/build/data/mods/gen2/conditions.js +3 -0
  22. package/build/data/mods/gen2/conditions.js.map +1 -1
  23. package/build/data/mods/gen2/learnsets.js +2 -2
  24. package/build/data/mods/gen2/learnsets.js.map +1 -1
  25. package/build/data/mods/gen2/scripts.js +16 -0
  26. package/build/data/mods/gen2/scripts.js.map +1 -1
  27. package/build/data/mods/gen3/conditions.js +3 -0
  28. package/build/data/mods/gen3/conditions.js.map +1 -1
  29. package/build/data/mods/gen3/formats-data.js +3 -3
  30. package/build/data/mods/gen3/formats-data.js.map +1 -1
  31. package/build/data/mods/gen4/abilities.js +1 -1
  32. package/build/data/mods/gen4/abilities.js.map +1 -1
  33. package/build/data/mods/gen4/conditions.js +3 -0
  34. package/build/data/mods/gen4/conditions.js.map +1 -1
  35. package/build/data/mods/gen4/formats-data.js +1 -1
  36. package/build/data/mods/gen4/formats-data.js.map +1 -1
  37. package/build/data/mods/gen4/moves.js +9 -2
  38. package/build/data/mods/gen4/moves.js.map +1 -1
  39. package/build/data/mods/gen5/moves.js +4 -7
  40. package/build/data/mods/gen5/moves.js.map +1 -1
  41. package/build/data/mods/gen5/pokedex.js +24 -0
  42. package/build/data/mods/gen5/pokedex.js.map +1 -1
  43. package/build/data/mods/gen6/formats-data.js +65 -65
  44. package/build/data/mods/gen6/formats-data.js.map +1 -1
  45. package/build/data/mods/gen6/learnsets.js +0 -75
  46. package/build/data/mods/gen6/learnsets.js.map +1 -1
  47. package/build/data/mods/gen7/abilities.js +8 -0
  48. package/build/data/mods/gen7/abilities.js.map +1 -1
  49. package/build/data/mods/gen7/moves.js +2 -2
  50. package/build/data/mods/gen7/moves.js.map +1 -1
  51. package/build/data/moves.js +8 -3
  52. package/build/data/moves.js.map +1 -1
  53. package/build/data/pokedex.js +12 -0
  54. package/build/data/pokedex.js.map +1 -1
  55. package/build/data/rulesets.js +175 -0
  56. package/build/data/rulesets.js.map +1 -1
  57. package/build/data/tags.js +2 -2
  58. package/build/data/tags.js.map +1 -1
  59. package/build/sim/battle-stream.js +3 -0
  60. package/build/sim/battle-stream.js.map +1 -1
  61. package/build/sim/exported-global-types.d.ts +2 -0
  62. package/build/sim/global-types.d.ts +2 -0
  63. package/build/sim/pokemon.d.ts +1 -0
  64. package/build/sim/pokemon.js +9 -2
  65. package/build/sim/pokemon.js.map +1 -1
  66. package/build/sim/side.js +21 -0
  67. package/build/sim/side.js.map +1 -1
  68. package/config/formats.ts +152 -130
  69. package/data/abilities.ts +1 -3
  70. package/data/aliases.ts +4 -4
  71. package/data/conditions.ts +6 -2
  72. package/data/formats-data.ts +20 -17
  73. package/data/learnsets.ts +29 -0
  74. package/data/mods/gen1/conditions.ts +8 -0
  75. package/data/mods/gen1/formats-data.ts +2 -2
  76. package/data/mods/gen1/moves.ts +3 -2
  77. package/data/mods/gen1/scripts.ts +3 -2
  78. package/data/mods/gen2/conditions.ts +4 -0
  79. package/data/mods/gen2/learnsets.ts +2 -2
  80. package/data/mods/gen2/scripts.ts +16 -0
  81. package/data/mods/gen3/conditions.ts +4 -0
  82. package/data/mods/gen3/formats-data.ts +3 -3
  83. package/data/mods/gen4/abilities.ts +1 -1
  84. package/data/mods/gen4/conditions.ts +4 -0
  85. package/data/mods/gen4/formats-data.ts +1 -1
  86. package/data/mods/gen4/moves.ts +9 -2
  87. package/data/mods/gen5/moves.ts +4 -7
  88. package/data/mods/gen5/pokedex.ts +24 -0
  89. package/data/mods/gen6/formats-data.ts +65 -65
  90. package/data/mods/gen6/learnsets.ts +0 -75
  91. package/data/mods/gen7/abilities.ts +8 -0
  92. package/data/mods/gen7/moves.ts +2 -2
  93. package/data/moves.ts +8 -3
  94. package/data/pokedex.ts +12 -0
  95. package/data/rulesets.ts +155 -0
  96. package/data/tags.ts +2 -2
  97. package/package.json +2 -2
  98. package/sim/battle-stream.ts +3 -0
  99. package/sim/exported-global-types.ts +2 -0
  100. package/sim/global-types.ts +2 -0
  101. package/sim/pokemon.ts +9 -2
  102. package/sim/side.ts +20 -0
package/config/formats.ts CHANGED
@@ -235,8 +235,9 @@ export const Formats: FormatList = [
235
235
  mod: 'gen8',
236
236
  ruleset: ['[Gen 8] PU'],
237
237
  banlist: [
238
- 'PU', 'Arctovish', 'Aurorus', 'Basculin', 'Centiskorch', 'Drampa', 'Exeggutor-Alola', 'Gallade', 'Haunter', 'Magmortar', 'Magneton', 'Malamar',
239
- 'Omastar', 'Rotom-Frost', 'Turtonator', 'Vanilluxe', 'Vikavolt', 'Silvally-Dragon', 'Silvally-Ground', 'Sneasel', 'Damp Rock', 'Grassy Seed',
238
+ 'PU', 'Arctovish', 'Aurorus', 'Basculin', 'Centiskorch', 'Drampa', 'Exeggutor-Alola', 'Gallade', 'Haunter', 'Magmortar', 'Magneton',
239
+ 'Malamar', 'Ninjask', 'Omastar', 'Rotom-Frost', 'Turtonator', 'Vanilluxe', 'Vikavolt', 'Silvally-Dragon', 'Silvally-Ground', 'Sneasel',
240
+ 'Damp Rock', 'Grassy Seed',
240
241
  ],
241
242
  },
242
243
  {
@@ -251,8 +252,8 @@ export const Formats: FormatList = [
251
252
  banlist: [
252
253
  // LC OU
253
254
  'Abra', 'Carvanha', 'Diglett-Base', 'Dwebble', 'Ferroseed', 'Foongus', 'Frillish', 'Grookey', 'Koffing',
254
- 'Larvesta', 'Magby', 'Magnemite', 'Mareanie', 'Mienfoo', 'Mudbray', 'Munchlax', 'Natu', 'Onix', 'Pawniard',
255
- 'Ponyta', 'Ponyta-Galar', 'Porygon', 'Slowpoke-Base', 'Staryu', 'Timburr', 'Trapinch', 'Tyrunt',
255
+ 'Larvesta', 'Magby', 'Magnemite', 'Mareanie', 'Mienfoo', 'Mudbray', 'Natu', 'Onix', 'Pawniard',
256
+ 'Ponyta-Base', 'Porygon', 'Slowpoke-Base', 'Staryu', 'Timburr', 'Trapinch', 'Tyrunt',
256
257
  // LC UUBL
257
258
  'Archen', 'Farfetch\u2019d-Galar', 'Scorbunny', 'Shellder', 'Wingull',
258
259
  ],
@@ -290,13 +291,15 @@ export const Formats: FormatList = [
290
291
  restricted: ['Restricted Legendary'],
291
292
  },
292
293
  {
293
- name: "[Gen 8] Single Battle Cup",
294
+ name: "[Gen 8] I Choose 'Chu!",
294
295
  threads: [
295
- `&bullet; <a href="https://www.pokemon.com/us/pokemon-news/register-now-for-the-single-battle-cup-competition/">Single Battle Cup</a>`,
296
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3705481/">I Choose 'Chu! Discussion</a>`,
296
297
  ],
297
298
 
298
299
  mod: 'gen8',
299
300
  ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8'],
301
+ banlist: ['All Pokemon', 'Raichu-Alola + Sing'],
302
+ unbanlist: ['Pichu', 'Pikachu', 'Raichu'],
300
303
  },
301
304
  {
302
305
  name: "[Gen 8] Custom Game",
@@ -413,10 +416,10 @@ export const Formats: FormatList = [
413
416
  'Standard Doubles', 'Accuracy Moves Clause', 'Dynamax Clause', 'Sleep Clause Mod',
414
417
  ],
415
418
  banlist: [
416
- 'Calyrex-Ice', 'Calyrex-Shadow', 'Dialga', 'Eternatus', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Jirachi', 'Kyogre', 'Kyurem-White',
417
- 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Melmetal', 'Mewtwo', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Rayquaza', 'Reshiram',
418
- 'Solgaleo', 'Tornadus-Base', 'Urshifu-Base', 'Urshifu-Rapid-Strike', 'Whimsicott', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta',
419
- 'Zamazenta-Crowned', 'Zekrom', 'Moody', 'Power Construct', 'Focus Sash', 'Ally Switch', 'Final Gambit', 'Perish Song', 'Swagger',
419
+ 'Calyrex-Ice', 'Calyrex-Shadow', 'Cottonee', 'Dialga', 'Eternatus', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Jirachi', 'Kyogre',
420
+ 'Kyurem-White', 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Melmetal', 'Mewtwo', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Rayquaza',
421
+ 'Reshiram', 'Solgaleo', 'Tornadus-Base', 'Urshifu-Base', 'Urshifu-Rapid-Strike', 'Whimsicott', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned',
422
+ 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Moody', 'Power Construct', 'Focus Sash', 'Ally Switch', 'Final Gambit', 'Perish Song', 'Swagger',
420
423
  ],
421
424
  },
422
425
  {
@@ -625,38 +628,42 @@ export const Formats: FormatList = [
625
628
  column: 2,
626
629
  },
627
630
  {
628
- name: "[Gen 8] Tier Shift",
629
- desc: `Pok&eacute;mon get a +10 boost to each stat, barring HP, per tier below OU they are in.`,
631
+ name: "[Gen 8] Re-Evolution",
632
+ desc: `Pok&eacute;mon gain the stat changes they would gain from evolving again.`,
630
633
  threads: [
631
- `&bullet; <a href="https://www.smogon.com/forums/threads/3662165/">Tier Shift</a>`,
634
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3703643/">Re-Evolution</a>`,
632
635
  ],
633
636
 
634
637
  mod: 'gen8',
635
- ruleset: ['Standard', 'Tier Shift Mod', 'Dynamax Clause'],
638
+ ruleset: ['Standard', 'Re-Evolution Mod', 'Evasion Abilities Clause', 'Dynamax Clause'],
636
639
  banlist: [
637
- 'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Eternatus', 'Genesect', 'Giratina', 'Giratina-Origin',
638
- 'Groudon', 'Ho-Oh', 'Kyogre', 'Kyurem', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base', 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Mewtwo',
639
- 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Rayquaza', 'Reshiram', 'Solgaleo', 'Spectrier', 'Urshifu-Base',
640
- 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta-Base', 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Moody', 'Power Construct', 'Sand Veil',
641
- 'Shadow Tag', 'Snow Cloak', 'Bright Powder', 'Damp Rock', 'Eviolite', 'Heat Rock', 'King\'s Rock', 'Lax Incense', 'Baton Pass',
640
+ 'Darmanitan-Galar', 'Gyarados', 'Lunala', 'Milotic', 'Naganadel', 'Solgaleo', 'Urshifu-Base', 'Volcarona',
641
+ 'Zacian-Crowned', 'Arena Trap', 'Moody', 'Shadow Tag', 'Bright Powder', 'King\'s Rock', 'Lax Incense', 'Baton Pass',
642
642
  ],
643
643
  },
644
644
  {
645
- name: "[Gen 8] Inverse",
646
- desc: `Weaknesses become resistances, while resistances and immunities become weaknesses.`,
645
+ name: "[Gen 8] Category Swap",
646
+ desc: `All physical moves become special, and all special moves become physical.`,
647
647
  threads: [
648
- `&bullet; <a href="https://www.smogon.com/forums/threads/3666858/">Inverse</a>`,
648
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3702709/">Category Swap</a>`,
649
649
  ],
650
650
 
651
651
  mod: 'gen8',
652
- ruleset: ['Standard', 'Inverse Mod', 'Dynamax Clause'],
652
+ ruleset: ['Standard', 'Dynamax Clause'],
653
653
  banlist: [
654
- 'Cinderace', 'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Diggersby', 'Dracovish', 'Dracozolt', 'Eternatus', 'Genesect', 'Giratina',
655
- 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base', 'Lugia', 'Lunala', 'Marshadow',
656
- 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Porygon-Z', 'Rayquaza', 'Regidrago', 'Regieleki', 'Reshiram',
657
- 'Reuniclus', 'Rillaboom', 'Solgaleo', 'Spectrier', 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta-Base', 'Zekrom', 'Arena Trap',
658
- 'Moody', 'Power Construct', 'Shadow Tag', 'King\'s Rock', 'Baton Pass',
659
- ],
654
+ 'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Eternatus', 'Genesect', 'Giratina', 'Giratina-Origin', 'Groudon',
655
+ 'Ho-Oh', 'Kyogre', 'Kyurem', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base', 'Lugia', 'Lunala', 'Mewtwo', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane',
656
+ 'Palkia', 'Pheromosa', 'Rayquaza', 'Reshiram', 'Solgaleo', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned',
657
+ 'Zekrom', 'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag', 'King\'s Rock', 'Baton Pass', 'Draco Meteor', 'Overheat',
658
+ ],
659
+ onModifyMove(move) {
660
+ if (move.category === 'Status') return;
661
+ if (move.category === 'Special') {
662
+ move.category = 'Physical';
663
+ } else {
664
+ move.category = 'Special';
665
+ }
666
+ },
660
667
  },
661
668
 
662
669
  // Other Metagames
@@ -680,8 +687,8 @@ export const Formats: FormatList = [
680
687
  'Calyrex-Shadow', 'Cramorant-Gorging', 'Darmanitan-Galar-Zen', 'Eternatus-Eternamax', 'Shedinja', 'Zacian-Crowned',
681
688
  'Arena Trap', 'Contrary', 'Gorilla Tactics', 'Huge Power', 'Illusion', 'Innards Out', 'Intrepid Sword', 'Libero',
682
689
  'Magnet Pull', 'Moody', 'Neutralizing Gas', 'Parental Bond', 'Protean', 'Pure Power', 'Shadow Tag', 'Stakeout',
683
- 'Water Bubble', 'Wonder Guard', 'Comatose + Sleep Talk', 'Rusted Sword', 'Court Change', 'Bolt Beak', 'Double Iron Bash',
684
- 'Octolock', 'Shell Smash',
690
+ 'Water Bubble', 'Wonder Guard', 'Comatose + Sleep Talk', 'Rusted Sword', 'Belly Drum', 'Bolt Beak', 'Court Change',
691
+ 'Double Iron Bash', 'Octolock', 'Shell Smash',
685
692
  ],
686
693
  },
687
694
  {
@@ -793,9 +800,9 @@ export const Formats: FormatList = [
793
800
  'Arena Trap', 'Magnet Pull', 'Moody', 'Power Construct', 'Shadow Tag', 'King\'s Rock', 'Baton Pass',
794
801
  ],
795
802
  restricted: [
796
- 'Acupressure', 'Astral Barrage', 'Belly Drum', 'Bolt Beak', 'Clangorous Soul', 'Double Iron Bash', 'Electrify', 'Extreme Speed', 'Fishious Rend',
797
- 'Geomancy', 'Glacial Lance', 'Oblivion Wing', 'Precipice Blades', 'Shell Smash', 'Shift Gear', 'Thousand Arrows', 'Thunderous Kick', 'V-create',
798
- 'Wicked Blow',
803
+ 'Acupressure', 'Astral Barrage', 'Belly Drum', 'Bolt Beak', 'Clangorous Soul', 'Double Iron Bash', 'Electrify', 'Extreme Speed', 'Final Gambit',
804
+ 'Fishious Rend', 'Geomancy', 'Glacial Lance', 'Oblivion Wing', 'Precipice Blades', 'Shell Smash', 'Shift Gear', 'Thousand Arrows', 'Thunderous Kick',
805
+ 'V-create', 'Wicked Blow',
799
806
  ],
800
807
  },
801
808
  {
@@ -823,8 +830,8 @@ export const Formats: FormatList = [
823
830
  mod: 'gen8',
824
831
  ruleset: ['Standard', 'Dynamax Clause', 'Sleep Moves Clause'],
825
832
  banlist: [
826
- 'Blissey', 'Calyrex-Shadow', 'Chansey', 'Crawdaunt', 'Dragapult', 'Eternatus', 'Hawlucha', 'Marowak-Alola', 'Melmetal',
827
- 'Pikachu', 'Toxapex', 'Xerneas', 'Zacian', 'Zacian-Crowned', 'Uber > 1', 'AG ++ Uber > 1', 'Arena Trap', 'Huge Power',
833
+ 'Blissey', 'Calyrex-Shadow', 'Chansey', 'Crawdaunt', 'Dragapult', 'Eternatus', 'Hawlucha', 'Marowak-Alola', 'Melmetal', 'Nidoking',
834
+ 'Nidoqueen', 'Pikachu', 'Toxapex', 'Xerneas', 'Zacian', 'Zacian-Crowned', 'Uber > 1', 'AG ++ Uber > 1', 'Arena Trap', 'Huge Power',
828
835
  'Moody', 'Pure Power', 'Shadow Tag', 'Swift Swim', 'Bright Powder', 'Focus Band', 'King\'s Rock', 'Lax Incense', 'Quick Claw',
829
836
  'Baton Pass',
830
837
  ],
@@ -990,7 +997,7 @@ export const Formats: FormatList = [
990
997
 
991
998
  mod: 'gen8bdsp',
992
999
  ruleset: ['Little Cup', 'Standard'],
993
- banlist: ['Gligar', 'Meditite', 'Misdreavus', 'Murkrow', 'Scyther', 'Sneasel', 'Tangela', 'Vulpix', 'Yanma', 'Moody', 'Baton Pass', 'Sticky Web'],
1000
+ banlist: ['Gligar', 'Meditite', 'Misdreavus', 'Munchlax', 'Murkrow', 'Scyther', 'Sneasel', 'Tangela', 'Vulpix', 'Yanma', 'Moody', 'Baton Pass', 'Sticky Web'],
994
1001
  },
995
1002
  {
996
1003
  name: "[Gen 8 BDSP] Monotype",
@@ -1042,17 +1049,6 @@ export const Formats: FormatList = [
1042
1049
  gameType: 'doubles',
1043
1050
  ruleset: ['Flat Rules', 'Min Source Gen = 8'],
1044
1051
  },
1045
- {
1046
- name: "[Gen 8 BDSP] Pure Hackmons",
1047
- desc: `Anything that can be hacked in-game and is usable in local battles is allowed.`,
1048
- threads: [
1049
- `&bullet; <a href="https://www.smogon.com/forums/threads/3693868/">Pure Hackmons</a>`,
1050
- ],
1051
-
1052
- mod: 'gen8bdsp',
1053
- searchShow: false,
1054
- ruleset: ['-Nonexistent', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Endless Battle Clause'],
1055
- },
1056
1052
  {
1057
1053
  section: "Challengeable OMs",
1058
1054
  column: 2,
@@ -1221,15 +1217,16 @@ export const Formats: FormatList = [
1221
1217
 
1222
1218
  mod: 'gen8',
1223
1219
  searchShow: false,
1224
- ruleset: ['Standard', '2 Ability Clause', 'Dynamax Clause'],
1220
+ ruleset: ['Standard', '!Sleep Clause Mod', 'Sleep Moves Clause', '2 Ability Clause', 'Dynamax Clause'],
1225
1221
  banlist: [
1226
- 'Blacephalon', 'Blaziken', 'Butterfree', 'Calyrex-Ice', 'Calyrex-Shadow', 'Chansey', 'Combusken', 'Cresselia', 'Darmanitan-Galar', 'Dialga', 'Dracovish',
1227
- 'Eternatus', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base', 'Lugia', 'Lunala',
1228
- 'Magearna', 'Marshadow', 'Melmetal', 'Mewtwo', 'Natu', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Rayquaza', 'Regieleki',
1229
- 'Regigigas', 'Reshiram', 'Sableye', 'Shedinja', 'Solgaleo', 'Spectrier', 'Tapu Koko', 'Toxtricity', 'Torkoal', 'Urshifu-Base', 'Xatu', 'Xerneas', 'Yveltal',
1230
- 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zeraora', 'Zekrom', 'Arena Trap', 'Contrary', 'Drizzle', 'Huge Power', 'Imposter', 'Innards Out',
1231
- 'Libero', 'Moody', 'Power Construct', 'Pure Power', 'Quick Draw', 'Shadow Tag', 'Sheer Force', 'Simple', 'Unaware', 'Unburden', 'Water Bubble', 'King\'s Rock',
1232
- 'Quick Claw', 'Baton Pass', 'Bolt Beak', 'Fishious Rend', 'Shell Smash', 'Thousand Arrows',
1222
+ 'Blacephalon', 'Blaziken', 'Butterfree', 'Calyrex-Ice', 'Calyrex-Shadow', 'Chansey', 'Combusken', 'Cresselia', 'Darmanitan-Galar', 'Dialga',
1223
+ 'Dracovish', 'Eternatus', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Lugia',
1224
+ 'Lunala', 'Magearna', 'Marshadow', 'Melmetal', 'Mewtwo', 'Natu', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Rayquaza',
1225
+ 'Regieleki', 'Regigigas', 'Reshiram', 'Sableye', 'Shedinja', 'Solgaleo', 'Spectrier', 'Tapu Koko', 'Toxtricity', 'Torkoal', 'Urshifu-Base',
1226
+ 'Xatu', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zeraora', 'Zekrom', 'Arena Trap', 'Contrary',
1227
+ 'Drizzle', 'Huge Power', 'Imposter', 'Innards Out', 'Libero', 'Moody', 'Power Construct', 'Pure Power', 'Quick Draw', 'Shadow Tag', 'Sheer Force',
1228
+ 'Simple', 'Unaware', 'Unburden', 'Water Bubble', 'King\'s Rock', 'Quick Claw', 'Baton Pass', 'Bolt Beak', 'Fishious Rend', 'Shell Smash',
1229
+ 'Thousand Arrows',
1233
1230
  ],
1234
1231
  getEvoFamily(speciesid) {
1235
1232
  let species = Dex.species.get(speciesid);
@@ -1745,6 +1742,17 @@ export const Formats: FormatList = [
1745
1742
  pokemon.m.innates = undefined;
1746
1743
  },
1747
1744
  },
1745
+ {
1746
+ name: "[Gen 8] Pure Hackmons",
1747
+ desc: `Anything that can be hacked in-game and is usable in local battles is allowed.`,
1748
+ threads: [
1749
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3656851/">Pure Hackmons</a>`,
1750
+ ],
1751
+
1752
+ mod: 'gen8',
1753
+ searchShow: false,
1754
+ ruleset: ['-Nonexistent', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Endless Battle Clause'],
1755
+ },
1748
1756
  {
1749
1757
  name: "[Gen 8] Shared Power",
1750
1758
  desc: `Once a Pok&eacute;mon switches in, its ability is shared with the rest of the team.`,
@@ -2393,38 +2401,39 @@ export const Formats: FormatList = [
2393
2401
  column: 3,
2394
2402
  },
2395
2403
  {
2396
- name: "[Gen 7] UU",
2404
+ name: "[Gen 3] Ubers",
2397
2405
  threads: [
2398
- `&bullet; <a href="https://www.smogon.com/forums/threads/3621217/">USM UU Sample Teams</a>`,
2399
- `&bullet; <a href="https://www.smogon.com/forums/threads/3641346/">USM UU Viability Rankings</a>`,
2406
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8286280/">ADV Ubers</a>`,
2400
2407
  ],
2401
2408
 
2402
- mod: 'gen7',
2409
+ mod: 'gen3',
2403
2410
  // searchShow: false,
2404
- ruleset: ['[Gen 7] OU'],
2405
- banlist: ['OU', 'UUBL', 'Drizzle', 'Drought', 'Kommonium Z', 'Mewnium Z'],
2411
+ ruleset: ['Standard', 'Deoxys Camouflage Clause', 'One Baton Pass Clause'],
2412
+ banlist: ['Wobbuffet + Leftovers'],
2406
2413
  },
2407
2414
  {
2408
- name: "[Gen 6] ZU",
2415
+ name: "[Gen 5] RU",
2409
2416
  threads: [
2410
- `&bullet; <a href="https://www.smogon.com/dex/xy/formats/zu/">ORAS ZU Banlist</a>`,
2411
- `&bullet; <a href="https://www.smogon.com/forums/posts/8034679/">ORAS ZU Viability Rankings</a>`,
2417
+ `&bullet; <a href="https://www.smogon.com/forums/posts/6431094/">BW2 Sample Teams</a>`,
2418
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3473124/">BW2 RU Viability Rankings</a>`,
2412
2419
  ],
2413
2420
 
2414
- mod: 'gen6',
2421
+ mod: 'gen5',
2415
2422
  // searchShow: false,
2416
- ruleset: ['[Gen 6] PU'],
2417
- banlist: ['PU', 'Fraxure', 'Regigigas', 'Simisear'],
2423
+ ruleset: ['[Gen 5] UU', 'Baton Pass Clause', '!Sleep Clause Mod', 'Sleep Moves Clause'],
2424
+ banlist: ['UU', 'RUBL', 'Shadow Tag', 'Shell Smash + Baton Pass'],
2425
+ unbanlist: ['Prankster + Assist', 'Prankster + Copycat', 'Baton Pass'],
2418
2426
  },
2419
2427
  {
2420
- name: "[Gen 1] Ubers",
2428
+ name: "[Gen 7 Let's Go] UU",
2421
2429
  threads: [
2422
- `&bullet; <a href="https://www.smogon.com/forums/posts/8286283/">RBY Ubers</a>`,
2430
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3659882/">LGPE UU Metagame Discussion &amp; Resources</a>`,
2423
2431
  ],
2424
2432
 
2425
- mod: 'gen1',
2433
+ mod: 'gen7letsgo',
2426
2434
  // searchShow: false,
2427
- ruleset: ['Standard'],
2435
+ ruleset: ['[Gen 7 Let\'s Go] OU'],
2436
+ banlist: ['OU', 'UUBL'],
2428
2437
  },
2429
2438
 
2430
2439
  // Past Gens OU
@@ -2466,7 +2475,7 @@ export const Formats: FormatList = [
2466
2475
  ],
2467
2476
 
2468
2477
  mod: 'gen5',
2469
- ruleset: ['Standard', 'Evasion Abilities Clause', 'Sleep Moves Clause', 'Swagger Clause'],
2478
+ ruleset: ['Standard', 'Evasion Abilities Clause', 'Sleep Moves Clause', 'Swagger Clause', 'Gems Clause'],
2470
2479
  banlist: ['Uber', 'Arena Trap', 'Drizzle ++ Swift Swim', 'Drought ++ Chlorophyll', 'Sand Rush', 'Shadow Tag', 'King\'s Rock', 'Razor Fang', 'Soul Dew', 'Assist', 'Baton Pass'],
2471
2480
  },
2472
2481
  {
@@ -2478,7 +2487,7 @@ export const Formats: FormatList = [
2478
2487
  ],
2479
2488
 
2480
2489
  mod: 'gen4',
2481
- ruleset: ['Standard'],
2490
+ ruleset: ['Standard', 'Freeze Clause Mod'],
2482
2491
  banlist: ['AG', 'Uber', 'Arena Trap', 'Sand Veil', 'Swinub + Snow Cloak', 'Piloswine + Snow Cloak', 'Mamoswine + Snow Cloak', 'Soul Dew', 'Baton Pass', 'Swagger'],
2483
2492
  },
2484
2493
  {
@@ -2489,7 +2498,7 @@ export const Formats: FormatList = [
2489
2498
  ],
2490
2499
 
2491
2500
  mod: 'gen3',
2492
- ruleset: ['Standard', 'One Boost Passer Clause'],
2501
+ ruleset: ['Standard', 'One Boost Passer Clause', 'Freeze Clause Mod'],
2493
2502
  banlist: ['Uber', 'Sand Veil', 'Soundproof', 'Assist', 'Baton Pass + Block', 'Baton Pass + Mean Look', 'Baton Pass + Spider Web', 'Smeargle + Ingrain'],
2494
2503
  },
2495
2504
  {
@@ -2501,7 +2510,7 @@ export const Formats: FormatList = [
2501
2510
 
2502
2511
  mod: 'gen2',
2503
2512
  ruleset: ['Standard'],
2504
- banlist: ['Uber'],
2513
+ banlist: ['Uber', 'Mean Look + Baton Pass', 'Spider Web + Baton Pass'],
2505
2514
  },
2506
2515
  {
2507
2516
  name: "[Gen 1] OU",
@@ -2658,6 +2667,18 @@ export const Formats: FormatList = [
2658
2667
  ruleset: ['Standard', 'Mega Rayquaza Clause'],
2659
2668
  banlist: ['Baton Pass'],
2660
2669
  },
2670
+ {
2671
+ name: "[Gen 7] UU",
2672
+ threads: [
2673
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3621217/">USM UU Sample Teams</a>`,
2674
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3641346/">USM UU Viability Rankings</a>`,
2675
+ ],
2676
+
2677
+ mod: 'gen7',
2678
+ searchShow: false,
2679
+ ruleset: ['[Gen 7] OU'],
2680
+ banlist: ['OU', 'UUBL', 'Drizzle', 'Drought', 'Kommonium Z', 'Mewnium Z'],
2681
+ },
2661
2682
  {
2662
2683
  name: "[Gen 7] RU",
2663
2684
  threads: [
@@ -2748,7 +2769,7 @@ export const Formats: FormatList = [
2748
2769
  'Arceus', 'Darkrai', 'Deoxys-Base', 'Deoxys-Attack', 'Deoxys-Defense', 'Dialga', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kangaskhan-Mega',
2749
2770
  'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Lugia', 'Lunala', 'Marshadow', 'Mewtwo', 'Mimikyu', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane',
2750
2771
  'Palkia', 'Rayquaza', 'Reshiram', 'Salamence-Mega', 'Shaymin-Sky', 'Snorlax', 'Solgaleo', 'Tapu Koko', 'Xerneas', 'Yveltal', 'Zekrom',
2751
- 'Moody', 'Focus Sash', 'Perish Song', 'Detect + Fightinium Z',
2772
+ 'Moody', 'Focus Sash', 'Grass Whistle', 'Hypnosis', 'Perish Song', 'Sing', 'Detect + Fightinium Z',
2752
2773
  ],
2753
2774
  },
2754
2775
  {
@@ -3077,6 +3098,18 @@ export const Formats: FormatList = [
3077
3098
  searchShow: false,
3078
3099
  ruleset: ['Obtainable', 'Team Preview', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod'],
3079
3100
  },
3101
+ {
3102
+ name: "[Gen 6] ZU",
3103
+ threads: [
3104
+ `&bullet; <a href="https://www.smogon.com/dex/xy/formats/zu/">ORAS ZU Banlist</a>`,
3105
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8034679/">ORAS ZU Viability Rankings</a>`,
3106
+ ],
3107
+
3108
+ mod: 'gen6',
3109
+ searchShow: false,
3110
+ ruleset: ['[Gen 6] PU'],
3111
+ banlist: ['PU', 'Fraxure', 'Regigigas', 'Simisear'],
3112
+ },
3080
3113
  {
3081
3114
  name: "[Gen 6] CAP",
3082
3115
  threads: [
@@ -3088,7 +3121,7 @@ export const Formats: FormatList = [
3088
3121
  mod: 'gen6',
3089
3122
  searchShow: false,
3090
3123
  ruleset: ['[Gen 6] OU', '+CAP'],
3091
- banlist: ['Aurumoth', 'Cawmodore', 'Crucibelle-Mega'],
3124
+ banlist: ['Aurumoth', 'Cawmodore'],
3092
3125
  },
3093
3126
  {
3094
3127
  name: "[Gen 6] Battle Spot Singles",
@@ -3251,19 +3284,6 @@ export const Formats: FormatList = [
3251
3284
  ruleset: ['Standard', 'Evasion Abilities Clause', 'Swagger Clause', 'Sleep Clause Mod'],
3252
3285
  banlist: ['Uber', 'OU', 'UUBL', 'Arena Trap', 'Drought', 'Sand Stream', 'Snow Warning', 'Prankster + Assist', 'Prankster + Copycat', 'Baton Pass'],
3253
3286
  },
3254
- {
3255
- name: "[Gen 5] RU",
3256
- threads: [
3257
- `&bullet; <a href="https://www.smogon.com/forums/posts/6431094/">BW2 Sample Teams</a>`,
3258
- `&bullet; <a href="https://www.smogon.com/forums/threads/3473124/">BW2 RU Viability Rankings</a>`,
3259
- ],
3260
-
3261
- mod: 'gen5',
3262
- searchShow: false,
3263
- ruleset: ['[Gen 5] UU', 'Baton Pass Clause', '!Sleep Clause Mod', 'Sleep Moves Clause'],
3264
- banlist: ['UU', 'RUBL', 'Shadow Tag', 'Shell Smash + Baton Pass'],
3265
- unbanlist: ['Prankster + Assist', 'Prankster + Copycat', 'Baton Pass'],
3266
- },
3267
3287
  {
3268
3288
  name: "[Gen 5] NU",
3269
3289
  threads: [
@@ -3285,7 +3305,7 @@ export const Formats: FormatList = [
3285
3305
  mod: 'gen5',
3286
3306
  searchShow: false,
3287
3307
  ruleset: ['[Gen 5] NU', 'Sleep Moves Clause'],
3288
- banlist: ['NU', 'PUBL'],
3308
+ banlist: ['NU', 'PUBL', 'Damp Rock'],
3289
3309
  },
3290
3310
  {
3291
3311
  name: "[Gen 5] LC",
@@ -3311,7 +3331,7 @@ export const Formats: FormatList = [
3311
3331
 
3312
3332
  mod: 'gen5',
3313
3333
  searchShow: false,
3314
- ruleset: ['[Gen 5] OU', 'Same Type Clause'],
3334
+ ruleset: ['[Gen 5] OU', 'Same Type Clause', '!Gems Clause'],
3315
3335
  },
3316
3336
  {
3317
3337
  name: "[Gen 5] 1v1",
@@ -3339,6 +3359,7 @@ export const Formats: FormatList = [
3339
3359
  searchShow: false,
3340
3360
  ruleset: ['[Gen 5] PU'],
3341
3361
  banlist: ['PU', 'Articuno', 'Dragonair', 'Glalie', 'Machoke', 'Marowak', 'Omanyte', 'Regigigas', 'Trubbish', 'Whirlipede', 'Baton Pass'],
3362
+ unbanlist: ['Damp Rock'],
3342
3363
  },
3343
3364
  {
3344
3365
  name: "[Gen 5] GBU Singles",
@@ -3457,7 +3478,7 @@ export const Formats: FormatList = [
3457
3478
 
3458
3479
  mod: 'gen4',
3459
3480
  searchShow: false,
3460
- ruleset: ['[Gen 4] OU'],
3481
+ ruleset: ['[Gen 4] OU', '!Freeze Clause Mod'],
3461
3482
  banlist: ['OU', 'UUBL'],
3462
3483
  unbanlist: ['Arena Trap', 'Swagger'],
3463
3484
  },
@@ -3524,7 +3545,7 @@ export const Formats: FormatList = [
3524
3545
  searchShow: false,
3525
3546
  ruleset: [
3526
3547
  'Picked Team Size = 1', 'Max Team Size = 3',
3527
- '[Gen 4] OU', 'Accuracy Moves Clause', 'Sleep Moves Clause', 'Team Preview',
3548
+ '[Gen 4] OU', 'Accuracy Moves Clause', 'Sleep Moves Clause', 'Team Preview', '!Freeze Clause Mod',
3528
3549
  ],
3529
3550
  banlist: ['Latias', 'Machamp', 'Porygon-Z', 'Shaymin', 'Snorlax', 'Togekiss', 'Focus Sash', 'Destiny Bond', 'Explosion', 'Perish Song', 'Self-Destruct'],
3530
3551
  unbanlist: ['Wobbuffet', 'Wynaut', 'Sand Veil', 'Swagger'],
@@ -3540,7 +3561,7 @@ export const Formats: FormatList = [
3540
3561
  ruleset: ['[Gen 4] PU'],
3541
3562
  banlist: [
3542
3563
  'Ampharos', 'Armaldo', 'Bellossom', 'Dragonair', 'Electabuzz', 'Gabite', 'Gastrodon', 'Glaceon', 'Glalie',
3543
- 'Golduck', 'Gorebyss', 'Hippopotas', 'Kadabra', 'Machoke', 'Magmar', 'Mantine', 'Marowak', 'Metang',
3564
+ 'Golduck', 'Gorebyss', 'Hippopotas', 'Kadabra', 'Lapras', 'Machoke', 'Magmar', 'Mantine', 'Marowak', 'Metang',
3544
3565
  'Misdreavus', 'Monferno', 'Mr. Mime', 'Muk', 'Murkrow', 'Pinsir', 'Politoed', 'Purugly', 'Quagsire',
3545
3566
  'Raichu', 'Rampardos', 'Rapidash', 'Regigigas', 'Relicanth', 'Rhydon', 'Scyther', 'Sneasel', 'Snover',
3546
3567
  'Solrock', 'Tangela', 'Torkoal', 'Victreebel', 'Xatu', 'Zangoose', 'Damp Rock',
@@ -3571,7 +3592,7 @@ export const Formats: FormatList = [
3571
3592
  mod: 'gen4',
3572
3593
  gameType: 'doubles',
3573
3594
  searchShow: false,
3574
- ruleset: ['[Gen 4] OU'],
3595
+ ruleset: ['[Gen 4] OU', '!Freeze Clause Mod'],
3575
3596
  banlist: ['Explosion'],
3576
3597
  unbanlist: ['Garchomp', 'Latias', 'Latios', 'Manaphy', 'Mew', 'Salamence', 'Wobbuffet', 'Wynaut', 'Swagger'],
3577
3598
  },
@@ -3614,40 +3635,46 @@ export const Formats: FormatList = [
3614
3635
  column: 5,
3615
3636
  },
3616
3637
  {
3617
- name: "[Gen 3] Ubers",
3638
+ name: "[Gen 3] UU",
3618
3639
  threads: [
3619
- `&bullet; <a href="https://www.smogon.com/forums/posts/8286280/">ADV Ubers</a>`,
3640
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3585923/">ADV UU Metagame Discussion</a>`,
3641
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3548578/">ADV UU Viability Rankings</a>`,
3620
3642
  ],
3621
3643
 
3622
3644
  mod: 'gen3',
3623
3645
  searchShow: false,
3624
- ruleset: ['Standard', 'Deoxys Camouflage Clause', 'One Baton Pass Clause'],
3625
- banlist: ['Wobbuffet + Leftovers'],
3646
+ ruleset: ['Standard'],
3647
+ banlist: ['Uber', 'OU', 'UUBL', 'Smeargle + Ingrain', 'Arena Trap', 'Bright Powder', 'Lax Incense', 'Baton Pass', 'Swagger'],
3626
3648
  },
3627
3649
  {
3628
- name: "[Gen 3] UU",
3650
+ name: "[Gen 3] NU",
3629
3651
  threads: [
3630
- `&bullet; <a href="https://www.smogon.com/forums/threads/3585923/">ADV UU Metagame Discussion</a>`,
3631
- `&bullet; <a href="https://www.smogon.com/forums/threads/3548578/">ADV UU Viability Rankings</a>`,
3652
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3503540/">ADV NU Viability Rankings</a>`,
3632
3653
  ],
3633
3654
 
3634
3655
  mod: 'gen3',
3635
3656
  searchShow: false,
3636
- ruleset: ['Standard', 'NFE Clause'],
3637
- banlist: ['Uber', 'OU', 'UUBL', 'Smeargle + Ingrain', 'Baton Pass'],
3638
- unbanlist: ['Scyther'],
3657
+ ruleset: ['Standard'],
3658
+ banlist: ['Uber', 'OU', 'UUBL', 'UU', 'Smeargle + Ingrain'],
3639
3659
  },
3640
3660
  {
3641
- name: "[Gen 3] NU",
3661
+ name: "[Gen 3] 1v1",
3662
+ desc: `Bring three Pok&eacute;mon to Team Preview and choose one to battle.`,
3642
3663
  threads: [
3643
- `&bullet; <a href="https://www.smogon.com/forums/threads/3503540/">ADV NU Viability Rankings</a>`,
3664
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8031456/">ADV 1v1</a>`,
3644
3665
  ],
3645
3666
 
3646
3667
  mod: 'gen3',
3647
3668
  searchShow: false,
3648
- ruleset: ['[Gen 3] UU', '!NFE Clause'],
3649
- banlist: ['UU'],
3650
- unbanlist: ['Baton Pass'],
3669
+ ruleset: [
3670
+ 'Picked Team Size = 1', 'Max Team Size = 3',
3671
+ '[Gen 3] OU', 'Accuracy Moves Clause', 'Sleep Moves Clause', 'Team Preview', '!Freeze Clause Mod',
3672
+ ],
3673
+ banlist: [
3674
+ 'Clefable', 'Slaking', 'Snorlax', 'Suicune', 'Zapdos', 'Destiny Bond', 'Explosion', 'Ingrain', 'Perish Song',
3675
+ 'Self-Destruct', 'Bright Powder', 'Focus Band', 'King\'s Rock', 'Lax Incense', 'Quick Claw',
3676
+ ],
3677
+ unbanlist: ['Mr. Mime', 'Wobbuffet', 'Wynaut', 'Sand Veil'],
3651
3678
  },
3652
3679
  {
3653
3680
  name: "[Gen 3] Doubles OU",
@@ -3662,22 +3689,6 @@ export const Formats: FormatList = [
3662
3689
  banlist: ['Uber'],
3663
3690
  unbanlist: ['Deoxys-Speed', 'Wobbuffet', 'Wynaut'],
3664
3691
  },
3665
- {
3666
- name: "[Gen 3] 1v1",
3667
- desc: `Bring three Pok&eacute;mon to Team Preview and choose one to battle.`,
3668
- threads: [
3669
- `&bullet; <a href="https://www.smogon.com/forums/posts/8031456/">ADV 1v1</a>`,
3670
- ],
3671
-
3672
- mod: 'gen3',
3673
- searchShow: false,
3674
- ruleset: [
3675
- 'Picked Team Size = 1', 'Max Team Size = 3',
3676
- '[Gen 3] OU', 'Accuracy Moves Clause', 'Sleep Moves Clause', 'Team Preview',
3677
- ],
3678
- banlist: ['Clefable', 'Slaking', 'Snorlax', 'Suicune', 'Destiny Bond', 'Explosion', 'Ingrain', 'Perish Song', 'Self-Destruct', 'Bright Powder', 'Focus Band', 'King\'s Rock', 'Lax Incense', 'Quick Claw'],
3679
- unbanlist: ['Mr. Mime', 'Wobbuffet', 'Wynaut', 'Sand Veil'],
3680
- },
3681
3692
  {
3682
3693
  name: "[Gen 3] Custom Game",
3683
3694
 
@@ -3714,6 +3725,7 @@ export const Formats: FormatList = [
3714
3725
  searchShow: false,
3715
3726
  ruleset: ['[Gen 2] OU'],
3716
3727
  banlist: ['OU', 'UUBL'],
3728
+ unbanlist: ['Mean Look + Baton Pass', 'Spider Web + Baton Pass'],
3717
3729
  },
3718
3730
  {
3719
3731
  name: "[Gen 2] NU",
@@ -3774,6 +3786,16 @@ export const Formats: FormatList = [
3774
3786
  battle: {trunc: Math.trunc},
3775
3787
  ruleset: ['HP Percentage Mod', 'Cancel Mod', 'Max Team Size = 24', 'Max Move Count = 24', 'Max Level = 9999', 'Default Level = 100'],
3776
3788
  },
3789
+ {
3790
+ name: "[Gen 1] Ubers",
3791
+ threads: [
3792
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8286283/">RBY Ubers</a>`,
3793
+ ],
3794
+
3795
+ mod: 'gen1',
3796
+ searchShow: false,
3797
+ ruleset: ['Standard'],
3798
+ },
3777
3799
  {
3778
3800
  name: "[Gen 1] UU",
3779
3801
  threads: [
@@ -3783,7 +3805,7 @@ export const Formats: FormatList = [
3783
3805
 
3784
3806
  mod: 'gen1',
3785
3807
  searchShow: false,
3786
- ruleset: ['[Gen 1] OU'],
3808
+ ruleset: ['[Gen 1] OU', 'APT Clause'],
3787
3809
  banlist: ['OU', 'UUBL'],
3788
3810
  },
3789
3811
  {
@@ -3794,7 +3816,7 @@ export const Formats: FormatList = [
3794
3816
 
3795
3817
  mod: 'gen1',
3796
3818
  searchShow: false,
3797
- ruleset: ['[Gen 1] UU'],
3819
+ ruleset: ['[Gen 1] UU', '!APT Clause'],
3798
3820
  banlist: ['UU', 'NUBL'],
3799
3821
  },
3800
3822
  {
package/data/abilities.ts CHANGED
@@ -642,7 +642,6 @@ export const Abilities: {[abilityid: string]: AbilityData} = {
642
642
  if (move.auraBooster !== this.effectState.target) return;
643
643
  return this.chainModify([move.hasAuraBreak ? 3072 : 5448, 4096]);
644
644
  },
645
- isBreakable: true,
646
645
  name: "Dark Aura",
647
646
  rating: 3,
648
647
  num: 186,
@@ -956,7 +955,6 @@ export const Abilities: {[abilityid: string]: AbilityData} = {
956
955
  if (move.auraBooster !== this.effectState.target) return;
957
956
  return this.chainModify([move.hasAuraBreak ? 3072 : 5448, 4096]);
958
957
  },
959
- isBreakable: true,
960
958
  name: "Fairy Aura",
961
959
  rating: 3,
962
960
  num: 187,
@@ -2326,7 +2324,7 @@ export const Abilities: {[abilityid: string]: AbilityData} = {
2326
2324
  if (pokemon.showCure === undefined) pokemon.showCure = true;
2327
2325
 
2328
2326
  if (pokemon.showCure) this.add('-curestatus', pokemon, pokemon.status, '[from] ability: Natural Cure');
2329
- pokemon.setStatus('');
2327
+ pokemon.clearStatus();
2330
2328
 
2331
2329
  // only reset .showCure if it's false
2332
2330
  // (once you know a Pokemon has Natural Cure, its cures are always known)
package/data/aliases.ts CHANGED
@@ -32,11 +32,11 @@ export const Aliases: {[alias: string]: string} = {
32
32
  mnm: "[Gen 8] Mix and Mega",
33
33
  aaa: "[Gen 8] Almost Any Ability",
34
34
  stab: "[Gen 8] STABmons",
35
+ gg: "[Gen 8] Godly Gift",
35
36
  camo: "[Gen 8] Camomons",
36
37
  ffa: "[Gen 8] Free-For-All",
37
38
  ts: "[Gen 8] Tier Shift",
38
- ph: "[Gen 8 BDSP] Pure Hackmons",
39
- purehackmons: "[Gen 8 BDSP] Pure Hackmons",
39
+ ph: "[Gen 8] Pure Hackmons",
40
40
  gen7bh: "[Gen 7] Balanced Hackmons",
41
41
  gen7mnm: "[Gen 7] Mix and Mega",
42
42
  gen7stab: "[Gen 7] STABmons",
@@ -68,8 +68,8 @@ export const Aliases: {[alias: string]: string} = {
68
68
  gen6ag: "[Gen 6] Anything Goes",
69
69
  crossevo: "[Gen 8] Cross Evolution",
70
70
  mayhem: "[Gen 8] Random Battle Mayhem",
71
- omotm: "[Gen 8] Tier Shift",
72
- lcotm: "[Gen 8] Inverse",
71
+ omotm: "[Gen 8] Re-Evolution",
72
+ lcotm: "[Gen 8] Category Swap",
73
73
 
74
74
  // mega evos
75
75
  fabio: "Ampharos-Mega",