@pkmn/sim 0.5.13 → 0.5.16

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 (98) hide show
  1. package/build/config/formats.js +151 -145
  2. package/build/config/formats.js.map +1 -1
  3. package/build/data/aliases.js +2 -2
  4. package/build/data/aliases.js.map +1 -1
  5. package/build/data/conditions.js +4 -1
  6. package/build/data/conditions.js.map +1 -1
  7. package/build/data/formats-data.js +3 -3
  8. package/build/data/formats-data.js.map +1 -1
  9. package/build/data/items.js +4 -2
  10. package/build/data/items.js.map +1 -1
  11. package/build/data/learnsets.js +5 -4
  12. package/build/data/learnsets.js.map +1 -1
  13. package/build/data/mods/gen1/formats-data.js +32 -32
  14. package/build/data/mods/gen1/formats-data.js.map +1 -1
  15. package/build/data/mods/gen1/scripts.js +1 -1
  16. package/build/data/mods/gen1/scripts.js.map +1 -1
  17. package/build/data/mods/gen2/items.js +28 -0
  18. package/build/data/mods/gen2/items.js.map +1 -1
  19. package/build/data/mods/gen2/moves.js +2 -5
  20. package/build/data/mods/gen2/moves.js.map +1 -1
  21. package/build/data/mods/gen3/items.js +28 -0
  22. package/build/data/mods/gen3/items.js.map +1 -1
  23. package/build/data/mods/gen3/moves.js +0 -3
  24. package/build/data/mods/gen3/moves.js.map +1 -1
  25. package/build/data/mods/gen4/abilities.js +20 -0
  26. package/build/data/mods/gen4/abilities.js.map +1 -1
  27. package/build/data/mods/gen4/items.js +28 -0
  28. package/build/data/mods/gen4/items.js.map +1 -1
  29. package/build/data/mods/gen4/moves.js +16 -9
  30. package/build/data/mods/gen4/moves.js.map +1 -1
  31. package/build/data/mods/gen5/items.js +0 -4
  32. package/build/data/mods/gen5/items.js.map +1 -1
  33. package/build/data/mods/gen6/items.js +24 -0
  34. package/build/data/mods/gen6/items.js.map +1 -1
  35. package/build/data/mods/gen7/abilities.js +31 -0
  36. package/build/data/mods/gen7/abilities.js.map +1 -1
  37. package/build/data/mods/gen7/items.js +12 -0
  38. package/build/data/mods/gen7/items.js.map +1 -1
  39. package/build/data/mods/gen7/moves.js +14 -0
  40. package/build/data/mods/gen7/moves.js.map +1 -1
  41. package/build/data/moves.js +45 -20
  42. package/build/data/moves.js.map +1 -1
  43. package/build/data/rulesets.js +71 -0
  44. package/build/data/rulesets.js.map +1 -1
  45. package/build/data/tags.js +3 -3
  46. package/build/data/tags.js.map +1 -1
  47. package/build/data/text/moves.js +8 -8
  48. package/build/data/text/moves.js.map +1 -1
  49. package/build/sim/battle-actions.js +3 -3
  50. package/build/sim/battle-actions.js.map +1 -1
  51. package/build/sim/battle-queue.d.ts +2 -2
  52. package/build/sim/battle-queue.js +8 -0
  53. package/build/sim/battle-queue.js.map +1 -1
  54. package/build/sim/battle.js +46 -6
  55. package/build/sim/battle.js.map +1 -1
  56. package/build/sim/dex-conditions.d.ts +2 -2
  57. package/build/sim/dex-conditions.js.map +1 -1
  58. package/build/sim/dex-data.js +0 -1
  59. package/build/sim/dex-data.js.map +1 -1
  60. package/build/sim/dex-moves.d.ts +2 -1
  61. package/build/sim/dex-moves.js.map +1 -1
  62. package/build/sim/pokemon.js +18 -5
  63. package/build/sim/pokemon.js.map +1 -1
  64. package/build/sim/team-validator.js +1 -1
  65. package/build/sim/team-validator.js.map +1 -1
  66. package/config/formats.ts +156 -150
  67. package/data/aliases.ts +2 -2
  68. package/data/conditions.ts +4 -1
  69. package/data/formats-data.ts +3 -3
  70. package/data/items.ts +4 -2
  71. package/data/learnsets.ts +5 -4
  72. package/data/mods/gen1/formats-data.ts +32 -32
  73. package/data/mods/gen1/scripts.ts +1 -1
  74. package/data/mods/gen2/items.ts +28 -0
  75. package/data/mods/gen2/moves.ts +2 -5
  76. package/data/mods/gen3/items.ts +28 -0
  77. package/data/mods/gen3/moves.ts +0 -3
  78. package/data/mods/gen4/abilities.ts +20 -0
  79. package/data/mods/gen4/items.ts +28 -0
  80. package/data/mods/gen4/moves.ts +15 -10
  81. package/data/mods/gen5/items.ts +0 -4
  82. package/data/mods/gen6/items.ts +24 -0
  83. package/data/mods/gen7/abilities.ts +31 -0
  84. package/data/mods/gen7/items.ts +12 -0
  85. package/data/mods/gen7/moves.ts +14 -0
  86. package/data/moves.ts +45 -19
  87. package/data/rulesets.ts +70 -0
  88. package/data/tags.ts +3 -3
  89. package/data/text/moves.ts +8 -8
  90. package/package.json +2 -2
  91. package/sim/battle-actions.ts +3 -4
  92. package/sim/battle-queue.ts +10 -2
  93. package/sim/battle.ts +43 -6
  94. package/sim/dex-conditions.ts +6 -2
  95. package/sim/dex-data.ts +0 -1
  96. package/sim/dex-moves.ts +2 -1
  97. package/sim/pokemon.ts +19 -7
  98. package/sim/team-validator.ts +1 -1
@@ -193,7 +193,8 @@ exports.Formats = [
193
193
  'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Dialga', 'Dragonite', 'Eternatus', 'Genesect', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Jirachi',
194
194
  'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Melmetal', 'Mew', 'Mewtwo', 'Mimikyu', 'Necrozma', 'Necrozma-Dawn-Wings',
195
195
  'Necrozma-Dusk-Mane', 'Palkia', 'Rayquaza', 'Reshiram', 'Sableye', 'Snorlax', 'Solgaleo', 'Victini', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned',
196
- 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Moody', 'Power Construct', 'Bright Powder', 'Focus Band', 'Focus Sash', 'Lax Incense', 'Quick Claw', 'Perish Song',
196
+ 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Moody', 'Power Construct', 'Bright Powder', 'Focus Band', 'Focus Sash', 'Lax Incense', 'Quick Claw',
197
+ 'Acupressure', 'Hypnosis', 'Perish Song', 'Sing',
197
198
  ],
198
199
  },
199
200
  {
@@ -217,7 +218,7 @@ exports.Formats = [
217
218
  mod: 'gen8',
218
219
  ruleset: ['[Gen 8] PU'],
219
220
  banlist: [
220
- 'PU', 'Arctovish', 'Aurorus', 'Centiskorch', 'Drampa', 'Exeggutor-Alola', 'Gallade', 'Haunter', 'Magmortar', 'Magneton', 'Omastar',
221
+ 'PU', 'Arctovish', 'Aurorus', 'Basculin', 'Centiskorch', 'Drampa', 'Exeggutor-Alola', 'Gallade', 'Haunter', 'Magmortar', 'Magneton', 'Omastar',
221
222
  'Rotom-Frost', 'Turtonator', 'Vanilluxe', 'Vikavolt', 'Silvally-Dragon', 'Silvally-Ground', 'Sneasel', 'Damp Rock', 'Grassy Seed',
222
223
  ],
223
224
  },
@@ -370,10 +371,10 @@ exports.Formats = [
370
371
  'Standard Doubles', 'Accuracy Moves Clause', 'Dynamax Clause', 'Sleep Clause Mod',
371
372
  ],
372
373
  banlist: [
373
- 'Calyrex-Ice', 'Calyrex-Shadow', 'Dialga', 'Eternatus', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Jirachi', 'Kyogre',
374
- 'Kyurem-White', 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Melmetal', 'Mewtwo', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia',
375
- 'Rayquaza', 'Reshiram', 'Solgaleo', 'Tornadus-Base', 'Urshifu-Base', 'Urshifu-Rapid-Strike', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned',
376
- 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Moody', 'Power Construct', 'Focus Sash', 'Ally Switch', 'Final Gambit', 'Perish Song', 'Swagger',
374
+ 'Calyrex-Ice', 'Calyrex-Shadow', 'Dialga', 'Eternatus', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Jirachi', 'Kyogre', 'Kyurem-White',
375
+ 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Melmetal', 'Mewtwo', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Rayquaza', 'Reshiram',
376
+ 'Solgaleo', 'Tornadus-Base', 'Urshifu-Base', 'Urshifu-Rapid-Strike', 'Whimsicott', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta',
377
+ 'Zamazenta-Crowned', 'Zekrom', 'Moody', 'Power Construct', 'Focus Sash', 'Ally Switch', 'Final Gambit', 'Perish Song', 'Swagger',
377
378
  ],
378
379
  },
379
380
  {
@@ -442,7 +443,7 @@ exports.Formats = [
442
443
  mod: 'gen8',
443
444
  ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Dynamax Clause', 'Sleep Clause Mod'],
444
445
  banlist: [
445
- 'Alakazam-Mega', 'Arceus', 'Blastoise-Mega', 'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Darkrai',
446
+ 'Alakazam-Mega', 'Arceus', 'Blastoise-Mega', 'Blaziken-Mega', 'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Darkrai',
446
447
  'Darmanitan-Galar', 'Deoxys-Attack', 'Deoxys-Base', 'Deoxys-Speed', 'Dialga', 'Dracovish', 'Dragapult', 'Eternatus',
447
448
  'Genesect', 'Gengar-Mega', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kangaskhan-Mega', 'Kyogre', 'Kyurem-Black',
448
449
  'Kyurem-White', 'Landorus-Base', 'Lucario-Mega', 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Metagross-Mega', 'Mewtwo',
@@ -469,11 +470,9 @@ exports.Formats = [
469
470
  'Magnezone', 'Mawile-Mega', 'Pelipper', 'Rillaboom', 'Scizor-Mega', 'Serperior', 'Slowbro-Base', 'Swampert-Mega', 'Tapu Fini',
470
471
  'Tapu Koko', 'Tapu Lele', 'Toxapex', 'Tyranitar', 'Victini', 'Volcarona', 'Weavile', 'Zapdos-Base',
471
472
  'ND UUBL',
472
- 'Drizzle', 'Drought',
473
+ 'Drizzle', 'Drought', 'Light Clay',
473
474
  // Slowbronite is banned so it doesn't validate on Galarian Slowbro
474
475
  'Slowbronite',
475
- // Ban for ou suspect
476
- 'Blaziken-Mega',
477
476
  ],
478
477
  // Used to distinguish UU from below UU in the client
479
478
  restricted: [
@@ -517,61 +516,41 @@ exports.Formats = [
517
516
  section: "Pet Mods",
518
517
  },
519
518
  {
520
- name: "[Gen 8] Alternatium",
521
- desc: `A metagame made up of only Pokémon with alternate forms, with all of them being separate and unique.`,
519
+ name: "[Gen 8] Restrictions",
520
+ desc: `A metagame made up of brand new Pokémon that are made according to various random and non-random restrictions.`,
522
521
  threads: [
523
- `&bullet; <a href="https://www.smogon.com/forums/threads/3683767/">Alternatium</a>`,
524
- `&bullet; <a href="https://docs.google.com/spreadsheets/d/1bvvkPg1CrUBJFJJeuwkts8elfJcEcahGOoHm-vGBXOI/edit?usp=sharing">Spreadsheet</a>`,
522
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3673824/">Restrictions</a>`,
523
+ `&bullet; <a href="https://docs.google.com/spreadsheets/d/1XsplBqN8njHZJT9cTP_3i3YSFITB9WaVfNOYAbNY75M/edit?usp=sharing">Spreadsheet</a>`,
525
524
  ],
526
- mod: 'alternatium',
527
- ruleset: ['Standard NatDex', 'Z-Move Clause', 'OHKO Clause', 'Evasion Moves Clause', 'Dynamax Clause', 'Sleep Clause Mod'],
525
+ mod: 'restrictions',
526
+ ruleset: ['Standard', 'Dynamax Clause'],
528
527
  banlist: ['All Pokemon', 'Past'],
529
528
  unbanlist: [
530
- 'Silvally', 'Silvally-Bug', 'Silvally-Dark', 'Silvally-Dragon', 'Silvally-Electric', 'Silvally-Fairy', 'Silvally-Fighting', 'Silvally-Fire', 'Silvally-Flying', 'Silvally-Ghost',
531
- 'Silvally-Grass', 'Silvally-Ground', 'Silvally-Ice', 'Silvally-Poison', 'Silvally-Psychic', 'Silvally-Rock', 'Silvally-Steel', 'Silvally-Water', 'Pikachu', 'Pikachu-Rock-Star',
532
- 'Pikachu-Belle', 'Pikachu-Idol', 'Pikachu-PhD', 'Pikachu-Libre', 'Pikachu-Partner', 'Pikachu-Starter', 'Darmanitan', 'Darmanitan-Zen', 'Darmanitan-Galar', 'Darmanitan-Galar-Zen',
533
- 'Aegishield', 'Aegislash', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Rotom', 'Rotom-Heat', 'Rotom-Wash', 'Rotom-Frost', 'Rotom-Fan', 'Rotom-Mow', 'Dugtrio',
534
- 'Dugtrio-Alola', 'Muk', 'Muk-Oilslick', 'Slowbro', 'Slowbro-Galar', 'Slowking', 'Slowking-Galar', 'Tornadus', 'Cummulus', 'Thundurus', 'Thundurus-Therian', 'Landorus', 'Landorus-Bengal',
535
- 'Vivillon-Fancy', 'Vivillon', 'Vivillon-Pokeball', 'Genesect', 'Genesect-Password', 'Genesect-Molten', 'Genesect-Freezer', 'Genesect-Type-Delta', 'Groudon', 'Groudon-Primal', 'Kyogre',
536
- 'Kyogre-Primal', 'Deoxys-Wood', 'Deoxys-Gem', 'Deoxys-Tank', 'Deoxys-Speed', 'Sandslash-Lustrous', 'Sandslash-Alola', 'Ninetales-Steamwork', 'Ninetales-Alola', 'Giratina', 'Giratina-Shadow',
537
- 'Eternatus', 'Manustorm', 'Exeggutor', 'Exeggutor-Lighthouse', 'Weezing', 'Weezing-King', 'Raticate', 'Raticate-Alola', 'Linoone', 'Linoone-Punk', 'Catastroform', 'Castform-Firestorm',
538
- 'Castform-Thunderstorm', 'Castform-Snowy', 'Wormadam', 'Wormadam-Sandy', 'Fibormadam', 'Farfetch\u2019d', 'Farfetch\u2019d-Galar', 'Corsola', 'Corsoul', 'Shaymin', 'Shaymin-Sky', 'Keldeo',
539
- 'Swordeo', 'Meloetta', 'Meloetta-Fighter', 'Lycanday', 'Lycanroc-Spectre', 'Lycanroc-Dusk', 'Gourgeist', 'Gourgeist-Fae', 'Gourgeist-Pulpy', 'Supergeist', 'Cramorant', 'Cramorant-Swimmer',
540
- 'Cramorant-Gorging', 'Eiscue', 'Eiscue-Noice', 'Mimikyu', 'Mimikyu-Sparkstone', 'Morpeko-Marsh', 'Morvilant', 'Zygarde-Wyrm', 'Zygarde-Canid', 'Zygarde-Goliath',
541
- ],
542
- onValidateTeam(team, format) {
543
- const speciesTable = new Set();
544
- for (const set of team) {
545
- const species = this.dex.species.get(set.species);
546
- if (speciesTable.has(species.id)) {
547
- return [
548
- `You are limited to one of each Pokémon by Species Clause (except for different formes).`,
549
- `(You have more than one ${species.id}.)`,
550
- ];
551
- }
552
- speciesTable.add(species.id);
553
- }
554
- },
529
+ 'Vulcaraptor', 'Parakinesis', 'Serpaint', 'Torgeist', 'Regolite', 'Polbearab', 'Centhorn', 'Donzyxote', 'Scimicobra', 'Folliclawe', 'Afloof', 'Nimbusteed',
530
+ 'Aerock', 'Borassa', 'Sharm', 'Nunopod', 'Crypterid', 'Abysseil', 'Faerenheit', 'Spiriteal', 'Zoltanka', 'Flydra', 'Coracrab', 'Quadringo', 'Teslaple',
531
+ 'Kapagon', 'Cyknight', 'Dirtoad', 'Crystelf', 'Rancourgar', 'Scalaron', 'Dragraceful', 'Tantrary', 'Modolith', 'Snailord', 'Arbrella', 'Draugelid',
532
+ 'Cinnastar', 'Refluse', 'Kelven', 'Kodokai', 'Cindarner', 'Thucotuco', 'Sorree', 'Gembezzle', 'Winterloper', 'Agapest', 'Volvolpa', 'Punduluum', 'Wraithful',
533
+ 'Panzarma', 'Krachiten', 'Cellsius', 'Borelem', 'Electangle', 'Orchile', 'Shinodori', 'Fluidrake', 'Potossum', 'Twygdrasill',
534
+ ],
555
535
  },
556
536
  {
557
- name: "[Gen 8] Random Dex",
558
- desc: `A micrometagame project consisting of 80 randomly selected fully-evolved Pok&eacute;mon.`,
537
+ name: "[Gen 8] Roulettemons Random Battle",
559
538
  threads: [
560
- `&bullet; <a href="https://www.smogon.com/forums/threads/3690182/">Random Dex</a>`,
561
- ],
562
- mod: 'randomdex',
563
- ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Dynamax Clause', 'Sleep Clause Mod'],
564
- banlist: ['All Pokemon', 'Past', 'Arena Trap', 'Moody', 'Shadow Tag', 'Baton Pass', 'Bright Powder', 'Lax Incense', 'King\'s Rock', 'Razor Fang', 'Kangaskhanite', 'Medichamite', 'Kommonium Z'],
565
- unbanlist: [
566
- 'Absol', 'Absol-Mega', 'Appletun', 'Articuno', 'Aurorus', 'Basculin', 'Beartic', 'Bisharp', 'Calyrex', 'Camerupt', 'Camerupt-Mega',
567
- 'Celesteela', 'Cloyster', 'Crawdaunt', 'Cursola', 'Dedenne', 'Delibird', 'Eelektross', 'Espeon', 'Flapple', 'Flareon', 'Flygon',
568
- 'Galvantula', 'Girafarig', 'Glaceon', 'Goodra', 'Gourgeist', 'Grimmsnarl', 'Guzzlord', 'Heliolisk', 'Hitmonchan', 'Hitmonlee',
569
- 'Hitmontop', 'Incineroar', 'Indeedee', 'Jolteon', 'Kangaskhan', 'Kommo-o', 'Lanturn', 'Leafeon', 'Leavanny', 'Ludicolo', 'Lunatone',
570
- 'Luvdisc', 'Machamp', 'Mandibuzz', 'Medicham', 'Nihilego', 'Palossand', 'Pidgeot', 'Pidgeot-Mega', 'Probopass', 'Pyroar', 'Sawk',
571
- 'Sceptile', 'Sceptile-Mega', 'Scolipede', 'Shiftry', 'Simisage', 'Slowbro', 'Slowbro-Mega', 'Slowking', 'Swoobat', 'Sylveon',
572
- 'Tapu Bulu', 'Tapu Fini', 'Tauros', 'Typhlosion', 'Umbreon', 'Ursaring', 'Vaporeon', 'Whiscash', 'Wishiwashi', 'Zebstrika', 'Absolite',
573
- 'Pidgeotite', 'Sceptilite', 'Cameruptite', 'Slowbronite',
539
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3649106/">Roulettemons</a>`,
540
+ `&bullet; <a href="https://docs.google.com/spreadsheets/d/1EOA1m7JXTq7Zz0ViVI4n6lBppFjVBa4S1GqhAwkPTZQ/edit?usp=sharing">Spreadsheet</a>`,
574
541
  ],
542
+ team: 'random',
543
+ mod: 'roulettemons',
544
+ ruleset: ['Standard NatDex'],
545
+ onSwitchIn(pokemon) {
546
+ this.add('-start', pokemon, 'typechange', pokemon.species.types.join('/'), '[silent]');
547
+ },
548
+ onChangeSet(set) {
549
+ if (set.species === 'Chillyte-Mega') {
550
+ set.species = 'Chillyte';
551
+ set.ability = 'Grassy Surge';
552
+ }
553
+ },
575
554
  },
576
555
  {
577
556
  name: "[Gen 6] NEXT OU",
@@ -591,40 +570,43 @@ exports.Formats = [
591
570
  column: 2,
592
571
  },
593
572
  {
594
- name: "[Gen 8] Sketchmons",
595
- desc: `Every Pok&eacute;mon gets a new move once.`,
573
+ name: "[Gen 8] Crazyhouse",
574
+ desc: `Pok&eacute;mon you KO are added to your team and removed from the opponent's, and vice versa.`,
596
575
  threads: [
597
- `&bullet; <a href="https://www.smogon.com/forums/threads/3680298/">Sketchmons</a>`,
576
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3699268/">Crazyhouse</a>`,
598
577
  ],
599
578
  mod: 'gen8',
600
- ruleset: ['Standard', 'Sketchmons Move Legality', 'Dynamax Clause'],
579
+ ruleset: ['Standard', 'Crazyhouse Rule', 'Dynamax Clause', 'Sleep Moves Clause', 'Evasion Abilities Clause', '!Sleep Clause Mod'],
601
580
  banlist: [
602
- 'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragapult', 'Eternatus', 'Genesect', 'Giratina',
603
- 'Giratina-Origin', 'Groudon', 'Hawlucha', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base', 'Lugia', 'Lunala',
604
- 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Porygon-Z', 'Pheromosa', 'Rayquaza', 'Regieleki',
605
- 'Reshiram', 'Rillaboom', 'Shedinja', 'Solgaleo', 'Spectrier', 'Swoobat', 'Tapu Bulu', 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned',
606
- 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Zeraora', 'Zygarde-Base', 'Arena Trap', 'Magnet Pull', 'Moody', 'Power Construct', 'Sand Rush',
607
- 'Shadow Tag', 'King\'s Rock', 'Baton Pass',
608
- ],
609
- restricted: [
610
- 'Acupressure', 'Astral Barrage', 'Belly Drum', 'Bolt Beak', 'Clangorous Soul', 'Double Iron Bash', 'Electrify', 'Extreme Speed', 'Fishious Rend',
611
- 'Geomancy', 'Glacial Lance', 'Lovely Kiss', 'No Retreat', 'Oblivion Wing', 'Octolock', 'Quiver Dance', 'Secret Sword', 'Shell Smash', 'Shift Gear',
612
- 'Sleep Powder', 'Spore', 'Thousand Arrows', 'Transform', 'V-create', 'Wicked Blow',
581
+ 'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Eternatus', 'Genesect', 'Giratina',
582
+ 'Giratina-Origin', 'Groudon', 'Hawlucha', 'Ho-Oh', 'Kyogre', 'Kyurem', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base', 'Lugia',
583
+ 'Lunala', 'Magearna', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa',
584
+ 'Rayquaza', 'Reshiram', 'Solgaleo', 'Spectrier', 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta',
585
+ 'Zamazenta-Crowned', 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag', 'Bright Powder',
586
+ 'King\'s Rock', 'Lax Incense', 'Baton Pass', 'Explosion', 'Final Gambit', 'Healing Wish', 'Lunar Dance', 'Memento',
587
+ 'Misty Explosion', 'Self-Destruct',
613
588
  ],
614
589
  },
615
590
  {
616
- name: "[Gen 8] Flipped",
617
- desc: `Pok&eacute;mon have their base stats flipped.`,
591
+ name: "[Gen 8] Pokebilities AAA",
592
+ desc: `Pok&eacute;mon have all of their released abilities simultaneously alongside any additional ability.`,
618
593
  threads: [
619
- `&bullet; <a href="https://www.smogon.com/forums/threads/3662020/">Flipped</a>`,
594
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8821047">Pok&eacute;bilities AAA</a>`,
620
595
  ],
621
- mod: 'gen8',
622
- ruleset: ['Standard', 'Flipped Mod', 'Dynamax Clause'],
596
+ mod: 'pokebilities',
597
+ ruleset: ['[Gen 8] Pokebilities', '!Obtainable Abilities', 'AAA Restricted Abilities', '2 Ability Clause', 'Sleep Moves Clause', '!Sleep Clause Mod'],
623
598
  banlist: [
624
- 'Azumarill', 'Blissey', 'Calyrex-Ice', 'Calyrex-Shadow', 'Dialga', 'Eternatus', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kyogre',
625
- 'Kyurem-Black', 'Kyurem-White', 'Lugia', 'Lunala', 'Marshadow', 'Melmetal', 'Mewtwo', 'Necrozma-Dawn Wings', 'Necrozma-Dusk Mane', 'Palkia',
626
- 'Rayquaza', 'Reshiram', 'Solgaleo', 'Steelix', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom',
627
- 'Zygarde-Base', 'Arena Trap', 'Moody', 'Power Construct', 'Psychic Surge', 'Shadow Tag', 'Baton Pass', 'Psychic Terrain', 'Shell Smash',
599
+ 'Blacephalon', 'Buzzwole', 'Clefable', 'Dragapult', 'Dragonite', 'Kartana', 'Keldeo', 'Kyurem', 'Melmetal', 'Mienshao',
600
+ 'Obstagoon', 'Noivern', 'Pangoro', 'Perrserker', 'Rillaboom', 'Tapu Bulu', 'Tapu Lele', 'Urshifu', 'Urshifu-Rapid-Strike',
601
+ 'Victini', 'Weavile', 'Zamazenta-Crowned', 'Arena Trap', 'Moody', 'Shadow Tag', 'Wonder Guard', 'Chlorophyll + Desolate Land',
602
+ 'Chlorophyll + Drought', 'Electric Surge + Surge Surfer', 'Regenerator + Emergency Exit', 'Regenerator + Multiscale',
603
+ 'Regenerator + Shadow Shield', 'Regenerator + Wimp Out', 'Sand Rush + Sand Stream', 'Slush Rush + Snow Warning', 'Swift Swim + Drizzle',
604
+ 'Swift Swim + Primordial Sea', 'Regenerator > 2',
605
+ ],
606
+ restricted: [
607
+ 'Comatose', 'Contrary', 'Fluffy', 'Fur Coat', 'Gorilla Tactics', 'Huge Power', 'Ice Scales', 'Illusion', 'Imposter', 'Innards Out',
608
+ 'Intrepid Sword', 'Libero', 'Magnet Pull', 'Neutralizing Gas', 'Parental Bond', 'Poison Heal', 'Prankster', 'Protean',
609
+ 'Pure Power', 'Simple', 'Stakeout', 'Stench', 'Speed Boost', 'Tinted Lens', 'Unburden', 'Water Bubble',
628
610
  ],
629
611
  },
630
612
  // Other Metagames
@@ -814,9 +796,9 @@ exports.Formats = [
814
796
  mod: 'gen8',
815
797
  ruleset: ['Standard', 'Dynamax Clause', 'Sleep Moves Clause'],
816
798
  banlist: [
817
- 'Blissey', 'Calyrex-Shadow', 'Chansey', 'Dragapult', 'Eternatus', 'Hawlucha', 'Marowak-Alola', 'Melmetal', 'Pikachu',
818
- 'Toxapex', 'Xerneas', 'Zacian', 'Zacian-Crowned', 'Uber > 1', 'AG ++ Uber > 1', 'Arena Trap', 'Huge Power', 'Moody',
819
- 'Pure Power', 'Shadow Tag', 'Swift Swim', 'Bright Powder', 'Focus Band', 'King\'s Rock', 'Lax Incense', 'Quick Claw',
799
+ 'Blissey', 'Calyrex-Shadow', 'Chansey', 'Crawdaunt', 'Dragapult', 'Eternatus', 'Hawlucha', 'Marowak-Alola', 'Melmetal',
800
+ 'Pikachu', 'Toxapex', 'Xerneas', 'Zacian', 'Zacian-Crowned', 'Uber > 1', 'AG ++ Uber > 1', 'Arena Trap', 'Huge Power',
801
+ 'Moody', 'Pure Power', 'Shadow Tag', 'Swift Swim', 'Bright Powder', 'Focus Band', 'King\'s Rock', 'Lax Incense', 'Quick Claw',
820
802
  'Baton Pass',
821
803
  ],
822
804
  onValidateTeam(team) {
@@ -986,11 +968,7 @@ exports.Formats = [
986
968
  `&bullet; <a href="https://www.smogon.com/forums/threads/3694267/">BDSP Monotype</a>`,
987
969
  ],
988
970
  mod: 'gen8bdsp',
989
- ruleset: ['Standard', 'Same Type Clause'],
990
- banlist: [
991
- 'Arceus', 'Darkrai', 'Dialga', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kyogre', 'Lugia', 'Mewtwo', 'Palkia', 'Rayquaza', 'Shaymin-Sky',
992
- 'Arena Trap', 'Moody', 'Shadow Tag', 'Damp Rock', 'King\'s Rock', 'Razor Fang', 'Baton Pass',
993
- ],
971
+ ruleset: ['[Gen 8 BDSP] OU', 'Same Type Clause'],
994
972
  },
995
973
  {
996
974
  name: "[Gen 8 BDSP] CAP",
@@ -2357,37 +2335,33 @@ exports.Formats = [
2357
2335
  column: 3,
2358
2336
  },
2359
2337
  {
2360
- name: "[Gen 5] UU",
2338
+ name: "[Gen 6] UU",
2361
2339
  threads: [
2362
- `&bullet; <a href="https://www.smogon.com/forums/threads/3474024/">BW2 UU Viability Rankings</a>`,
2363
- `&bullet; <a href="https://www.smogon.com/forums/posts/6431094/">BW2 Sample Teams</a>`,
2340
+ `&bullet; <a href="https://www.smogon.com/dex/xy/formats/uu/">ORAS UU Banlist</a>`,
2341
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3598164/">ORAS UU Viability Rankings</a>`,
2364
2342
  ],
2365
- mod: 'gen5',
2343
+ mod: 'gen6',
2366
2344
  // searchShow: false,
2367
- ruleset: ['Standard', 'Evasion Abilities Clause', 'Swagger Clause', 'Sleep Clause Mod'],
2368
- banlist: ['Uber', 'OU', 'UUBL', 'Arena Trap', 'Drought', 'Sand Stream', 'Snow Warning', 'Prankster + Assist', 'Prankster + Copycat', 'Baton Pass'],
2345
+ ruleset: ['[Gen 6] OU'],
2346
+ banlist: ['OU', 'UUBL', 'Drizzle', 'Drought'],
2369
2347
  },
2370
2348
  {
2371
- name: "[Gen 5] NU",
2372
- threads: [
2373
- `&bullet; <a href="https://www.smogon.com/forums/posts/6431094/">BW2 Sample Teams</a>`,
2374
- `&bullet; <a href="https://www.smogon.com/forums/threads/3484121/">BW2 NU Viability Rankings</a>`,
2375
- ],
2376
- mod: 'gen5',
2349
+ name: "[Gen 4] Anything Goes",
2350
+ mod: 'gen4',
2377
2351
  // searchShow: false,
2378
- ruleset: ['[Gen 5] RU', '!Sleep Moves Clause', 'Sleep Clause Mod'],
2379
- banlist: ['RU', 'NUBL', 'Assist', 'Copycat'],
2352
+ ruleset: ['Obtainable', 'Arceus EV Limit', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod'],
2380
2353
  },
2381
2354
  {
2382
- name: "[Gen 6] PU",
2355
+ name: "[Gen 7] RU",
2383
2356
  threads: [
2384
- `&bullet; <a href="https://www.smogon.com/dex/xy/tags/pu/">ORAS PU Banlist</a>`,
2385
- `&bullet; <a href="https://www.smogon.com/forums/threads/3528743/">ORAS PU Viability Rankings</a>`,
2357
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3645338/">USM RU Sample Teams</a>`,
2358
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3645873/">USM RU Viability Rankings</a>`,
2386
2359
  ],
2387
- mod: 'gen6',
2360
+ mod: 'gen7',
2388
2361
  // searchShow: false,
2389
- ruleset: ['[Gen 6] NU'],
2390
- banlist: ['NU', 'PUBL', 'Chatter'],
2362
+ ruleset: ['[Gen 7] UU'],
2363
+ banlist: ['UU', 'RUBL', 'Mimikyu', 'Aurora Veil'],
2364
+ unbanlist: ['Drought'],
2391
2365
  },
2392
2366
  // Past Gens OU
2393
2367
  ///////////////////////////////////////////////////////////////////
@@ -2585,20 +2559,11 @@ exports.Formats = [
2585
2559
  name: "[Gen 6] Pure Hackmons",
2586
2560
  desc: `Anything that can be hacked in-game and is usable in local battles is allowed.`,
2587
2561
  threads: [
2588
- `&bullet; <a href="https://www.smogon.com/forums/posts/8111004/">ORAS Pure Hackmons</a>`,
2562
+ `&bullet; <a href="https://www.smogon.com/forums/posts/9029427/">ORAS Pure Hackmons</a>`,
2589
2563
  ],
2590
2564
  mod: 'gen6',
2591
2565
  ruleset: ['-Nonexistent', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Endless Battle Clause', 'EV limit = 510'],
2592
2566
  },
2593
- {
2594
- name: "[Gen 5] ZU",
2595
- threads: [
2596
- `&bullet; <a href="https://www.smogon.com/forums/posts/8034680/">BW2 ZU</a>`,
2597
- ],
2598
- mod: 'gen5',
2599
- ruleset: ['[Gen 5] PU'],
2600
- banlist: ['PU', 'Dragonair', 'Glalie', 'Machoke', 'Marowak', 'Omanyte', 'Regigigas', 'Trubbish', 'Whirlipede', 'Baton Pass'],
2601
- },
2602
2567
  // US/UM Singles
2603
2568
  ///////////////////////////////////////////////////////////////////
2604
2569
  {
@@ -2626,18 +2591,6 @@ exports.Formats = [
2626
2591
  ruleset: ['[Gen 7] OU'],
2627
2592
  banlist: ['OU', 'UUBL', 'Drizzle', 'Drought', 'Kommonium Z', 'Mewnium Z'],
2628
2593
  },
2629
- {
2630
- name: "[Gen 7] RU",
2631
- threads: [
2632
- `&bullet; <a href="https://www.smogon.com/forums/threads/3645338/">USM RU Sample Teams</a>`,
2633
- `&bullet; <a href="https://www.smogon.com/forums/threads/3645873/">USM RU Viability Rankings</a>`,
2634
- ],
2635
- mod: 'gen7',
2636
- searchShow: false,
2637
- ruleset: ['[Gen 7] UU'],
2638
- banlist: ['UU', 'RUBL', 'Mimikyu', 'Aurora Veil'],
2639
- unbanlist: ['Drought'],
2640
- },
2641
2594
  {
2642
2595
  name: "[Gen 7] NU",
2643
2596
  threads: [
@@ -2736,7 +2689,7 @@ exports.Formats = [
2736
2689
  searchShow: false,
2737
2690
  ruleset: ['[Gen 7] PU'],
2738
2691
  banlist: [
2739
- 'PU', 'Carracosta', 'Crabominable', 'Gorebyss', 'Jynx', 'Raticate-Alola',
2692
+ 'PU', 'Carracosta', 'Crabominable', 'Exeggutor-Base', 'Gorebyss', 'Jynx', 'Raticate-Alola',
2740
2693
  'Shiftry', 'Throh', 'Turtonator', 'Type: Null', 'Ursaring', 'Victreebel',
2741
2694
  ],
2742
2695
  },
@@ -2907,17 +2860,6 @@ exports.Formats = [
2907
2860
  searchShow: false,
2908
2861
  ruleset: ['Standard', 'Swagger Clause', 'Mega Rayquaza Clause'],
2909
2862
  },
2910
- {
2911
- name: "[Gen 6] UU",
2912
- threads: [
2913
- `&bullet; <a href="https://www.smogon.com/dex/xy/formats/uu/">ORAS UU Banlist</a>`,
2914
- `&bullet; <a href="https://www.smogon.com/forums/threads/3598164/">ORAS UU Viability Rankings</a>`,
2915
- ],
2916
- mod: 'gen6',
2917
- searchShow: false,
2918
- ruleset: ['[Gen 6] OU'],
2919
- banlist: ['OU', 'UUBL', 'Drizzle', 'Drought'],
2920
- },
2921
2863
  {
2922
2864
  name: "[Gen 6] RU",
2923
2865
  threads: [
@@ -2940,6 +2882,17 @@ exports.Formats = [
2940
2882
  ruleset: ['[Gen 6] RU'],
2941
2883
  banlist: ['RU', 'NUBL'],
2942
2884
  },
2885
+ {
2886
+ name: "[Gen 6] PU",
2887
+ threads: [
2888
+ `&bullet; <a href="https://www.smogon.com/dex/xy/tags/pu/">ORAS PU Banlist</a>`,
2889
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3528743/">ORAS PU Viability Rankings</a>`,
2890
+ ],
2891
+ mod: 'gen6',
2892
+ searchShow: false,
2893
+ ruleset: ['[Gen 6] NU'],
2894
+ banlist: ['NU', 'PUBL', 'Chatter'],
2895
+ },
2943
2896
  {
2944
2897
  name: "[Gen 6] LC",
2945
2898
  threads: [
@@ -3002,6 +2955,17 @@ exports.Formats = [
3002
2955
  searchShow: false,
3003
2956
  ruleset: ['Obtainable', 'Team Preview', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod'],
3004
2957
  },
2958
+ {
2959
+ name: "[Gen 6] ZU",
2960
+ threads: [
2961
+ `&bullet; <a href="https://www.smogon.com/dex/xy/formats/zu/">ORAS ZU Banlist</a>`,
2962
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8034679/">ORAS ZU Viability Rankings</a>`,
2963
+ ],
2964
+ mod: 'gen6',
2965
+ searchShow: false,
2966
+ ruleset: ['[Gen 6] PU'],
2967
+ banlist: ['PU', 'Fraxure', 'Regigigas', 'Simisear'],
2968
+ },
3005
2969
  {
3006
2970
  name: "[Gen 6] CAP",
3007
2971
  threads: [
@@ -3148,6 +3112,17 @@ exports.Formats = [
3148
3112
  searchShow: false,
3149
3113
  ruleset: ['Standard', 'Sleep Clause Mod'],
3150
3114
  },
3115
+ {
3116
+ name: "[Gen 5] UU",
3117
+ threads: [
3118
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3474024/">BW2 UU Viability Rankings</a>`,
3119
+ `&bullet; <a href="https://www.smogon.com/forums/posts/6431094/">BW2 Sample Teams</a>`,
3120
+ ],
3121
+ mod: 'gen5',
3122
+ searchShow: false,
3123
+ ruleset: ['Standard', 'Evasion Abilities Clause', 'Swagger Clause', 'Sleep Clause Mod'],
3124
+ banlist: ['Uber', 'OU', 'UUBL', 'Arena Trap', 'Drought', 'Sand Stream', 'Snow Warning', 'Prankster + Assist', 'Prankster + Copycat', 'Baton Pass'],
3125
+ },
3151
3126
  {
3152
3127
  name: "[Gen 5] RU",
3153
3128
  threads: [
@@ -3160,6 +3135,17 @@ exports.Formats = [
3160
3135
  banlist: ['UU', 'RUBL', 'Shadow Tag', 'Shell Smash + Baton Pass'],
3161
3136
  unbanlist: ['Prankster + Assist', 'Prankster + Copycat', 'Baton Pass'],
3162
3137
  },
3138
+ {
3139
+ name: "[Gen 5] NU",
3140
+ threads: [
3141
+ `&bullet; <a href="https://www.smogon.com/forums/posts/6431094/">BW2 Sample Teams</a>`,
3142
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3484121/">BW2 NU Viability Rankings</a>`,
3143
+ ],
3144
+ mod: 'gen5',
3145
+ searchShow: false,
3146
+ ruleset: ['[Gen 5] RU', '!Sleep Moves Clause', 'Sleep Clause Mod'],
3147
+ banlist: ['RU', 'NUBL', 'Assist', 'Copycat'],
3148
+ },
3163
3149
  {
3164
3150
  name: "[Gen 5] PU",
3165
3151
  threads: [
@@ -3209,6 +3195,16 @@ exports.Formats = [
3209
3195
  banlist: ['Uber', 'Cottonee', 'Dragonite', 'Jirachi', 'Kyurem-Black', 'Mew', 'Togekiss', 'Whimsicott', 'Victini', 'Bright Powder', 'Focus Band', 'Focus Sash', 'Lax Incense', 'Quick Claw', 'Soul Dew', 'Perish Song'],
3210
3196
  unbanlist: ['Genesect', 'Landorus', 'Manaphy', 'Thundurus', 'Tornadus-Therian'],
3211
3197
  },
3198
+ {
3199
+ name: "[Gen 5] ZU",
3200
+ threads: [
3201
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8034680/">BW2 ZU</a>`,
3202
+ ],
3203
+ mod: 'gen5',
3204
+ searchShow: false,
3205
+ ruleset: ['[Gen 5] PU'],
3206
+ banlist: ['PU', 'Articuno', 'Dragonair', 'Glalie', 'Machoke', 'Marowak', 'Omanyte', 'Regigigas', 'Trubbish', 'Whirlipede', 'Baton Pass'],
3207
+ },
3212
3208
  {
3213
3209
  name: "[Gen 5] GBU Singles",
3214
3210
  mod: 'gen5',
@@ -3374,10 +3370,20 @@ exports.Formats = [
3374
3370
  unbanlist: ['Wobbuffet', 'Wynaut', 'Sand Veil', 'Swagger'],
3375
3371
  },
3376
3372
  {
3377
- name: "[Gen 4] Anything Goes",
3373
+ name: "[Gen 4] ZU",
3374
+ threads: [
3375
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8034681/">DPP ZU</a>`,
3376
+ ],
3378
3377
  mod: 'gen4',
3379
3378
  searchShow: false,
3380
- ruleset: ['Obtainable', 'Arceus EV Limit', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod'],
3379
+ ruleset: ['[Gen 4] PU'],
3380
+ banlist: [
3381
+ 'Ampharos', 'Armaldo', 'Bellossom', 'Dragonair', 'Gabite', 'Gastrodon', 'Glaceon', 'Glalie', 'Golduck',
3382
+ 'Gorebyss', 'Hippopotas', 'Kadabra', 'Machoke', 'Magmar', 'Mantine', 'Marowak', 'Metang', 'Misdreavus',
3383
+ 'Monferno', 'Mr. Mime', 'Muk', 'Murkrow', 'Pinsir', 'Politoed', 'Purugly', 'Quagsire', 'Raichu',
3384
+ 'Rampardos', 'Rapidash', 'Regigigas', 'Relicanth', 'Rhydon', 'Scyther', 'Sneasel', 'Snover', 'Solrock',
3385
+ 'Tangela', 'Torkoal', 'Victreebel', 'Xatu', 'Zangoose', 'Damp Rock',
3386
+ ],
3381
3387
  },
3382
3388
  {
3383
3389
  name: "[Gen 4] Custom Game",