@pkmn/sim 0.5.12 → 0.5.15

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 (109) hide show
  1. package/build/config/formats.js +163 -149
  2. package/build/config/formats.js.map +1 -1
  3. package/build/data/abilities.js +2 -2
  4. package/build/data/abilities.js.map +1 -1
  5. package/build/data/aliases.js +2 -2
  6. package/build/data/aliases.js.map +1 -1
  7. package/build/data/conditions.js +4 -1
  8. package/build/data/conditions.js.map +1 -1
  9. package/build/data/formats-data.js +2 -2
  10. package/build/data/formats-data.js.map +1 -1
  11. package/build/data/items.js +4 -2
  12. package/build/data/items.js.map +1 -1
  13. package/build/data/learnsets.js +5 -4
  14. package/build/data/learnsets.js.map +1 -1
  15. package/build/data/mods/gen1/formats-data.js +38 -36
  16. package/build/data/mods/gen1/formats-data.js.map +1 -1
  17. package/build/data/mods/gen1/scripts.js +1 -1
  18. package/build/data/mods/gen1/scripts.js.map +1 -1
  19. package/build/data/mods/gen2/items.js +28 -0
  20. package/build/data/mods/gen2/items.js.map +1 -1
  21. package/build/data/mods/gen2/moves.js +2 -2
  22. package/build/data/mods/gen2/moves.js.map +1 -1
  23. package/build/data/mods/gen3/items.js +28 -0
  24. package/build/data/mods/gen3/items.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 +14 -6
  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/formats-data.js +3 -3
  34. package/build/data/mods/gen6/formats-data.js.map +1 -1
  35. package/build/data/mods/gen6/items.js +24 -0
  36. package/build/data/mods/gen6/items.js.map +1 -1
  37. package/build/data/mods/gen7/abilities.js +31 -0
  38. package/build/data/mods/gen7/abilities.js.map +1 -1
  39. package/build/data/mods/gen7/items.js +12 -0
  40. package/build/data/mods/gen7/items.js.map +1 -1
  41. package/build/data/mods/gen7/moves.js +14 -0
  42. package/build/data/mods/gen7/moves.js.map +1 -1
  43. package/build/data/moves.js +45 -19
  44. package/build/data/moves.js.map +1 -1
  45. package/build/data/rulesets.js +72 -1
  46. package/build/data/rulesets.js.map +1 -1
  47. package/build/data/tags.js +3 -3
  48. package/build/data/tags.js.map +1 -1
  49. package/build/data/text/moves.js +8 -8
  50. package/build/data/text/moves.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 +42 -2
  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 +1 -0
  58. package/build/sim/dex-conditions.js.map +1 -1
  59. package/build/sim/dex-data.js +1 -0
  60. package/build/sim/dex-data.js.map +1 -1
  61. package/build/sim/dex-formats.js +1 -0
  62. package/build/sim/dex-formats.js.map +1 -1
  63. package/build/sim/dex-items.js +1 -0
  64. package/build/sim/dex-items.js.map +1 -1
  65. package/build/sim/dex-moves.d.ts +1 -0
  66. package/build/sim/dex-moves.js +1 -0
  67. package/build/sim/dex-moves.js.map +1 -1
  68. package/build/sim/dex-species.js +1 -0
  69. package/build/sim/dex-species.js.map +1 -1
  70. package/build/sim/pokemon.js +18 -5
  71. package/build/sim/pokemon.js.map +1 -1
  72. package/build/sim/team-validator.js +1 -1
  73. package/build/sim/team-validator.js.map +1 -1
  74. package/config/formats.ts +169 -154
  75. package/data/abilities.ts +2 -2
  76. package/data/aliases.ts +2 -2
  77. package/data/conditions.ts +4 -1
  78. package/data/formats-data.ts +2 -2
  79. package/data/items.ts +4 -2
  80. package/data/learnsets.ts +5 -4
  81. package/data/mods/gen1/formats-data.ts +38 -36
  82. package/data/mods/gen1/scripts.ts +1 -1
  83. package/data/mods/gen2/items.ts +28 -0
  84. package/data/mods/gen2/moves.ts +2 -2
  85. package/data/mods/gen3/items.ts +28 -0
  86. package/data/mods/gen4/abilities.ts +20 -0
  87. package/data/mods/gen4/items.ts +28 -0
  88. package/data/mods/gen4/moves.ts +14 -7
  89. package/data/mods/gen5/items.ts +0 -4
  90. package/data/mods/gen6/formats-data.ts +3 -3
  91. package/data/mods/gen6/items.ts +24 -0
  92. package/data/mods/gen7/abilities.ts +31 -0
  93. package/data/mods/gen7/items.ts +12 -0
  94. package/data/mods/gen7/moves.ts +14 -0
  95. package/data/moves.ts +45 -18
  96. package/data/rulesets.ts +71 -1
  97. package/data/tags.ts +3 -3
  98. package/data/text/moves.ts +8 -8
  99. package/package.json +3 -3
  100. package/sim/battle-queue.ts +10 -2
  101. package/sim/battle.ts +39 -2
  102. package/sim/dex-conditions.ts +7 -2
  103. package/sim/dex-data.ts +1 -0
  104. package/sim/dex-formats.ts +1 -0
  105. package/sim/dex-items.ts +1 -0
  106. package/sim/dex-moves.ts +2 -0
  107. package/sim/dex-species.ts +1 -0
  108. package/sim/pokemon.ts +19 -7
  109. package/sim/team-validator.ts +1 -1
@@ -154,7 +154,7 @@ exports.Formats = [
154
154
  mod: 'gen8',
155
155
  ruleset: ['Little Cup', 'Standard', 'Dynamax Clause'],
156
156
  banlist: [
157
- 'Corsola-Galar', 'Drifloon', 'Rufflet', 'Scraggy', 'Scyther', 'Sneasel', 'Swirlix', 'Tangela', 'Vulpix-Alola', 'Woobat', 'Zigzagoon-Base',
157
+ 'Corsola-Galar', 'Cutiefly', 'Drifloon', 'Gastly', 'Gothita', 'Rufflet', 'Scraggy', 'Scyther', 'Sneasel', 'Swirlix', 'Tangela', 'Vullaby', 'Vulpix-Alola', 'Woobat', 'Zigzagoon-Base',
158
158
  'Chlorophyll', 'Moody', 'Baton Pass', 'Sticky Web',
159
159
  ],
160
160
  },
@@ -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
  },
@@ -329,7 +330,7 @@ exports.Formats = [
329
330
  gameType: 'doubles',
330
331
  searchShow: false,
331
332
  ruleset: ['Standard Doubles', 'Little Cup', 'Dynamax Clause', 'Swagger Clause', 'Sleep Clause Mod'],
332
- banlist: ['Corsola-Galar', 'Cutiefly', 'Ponyta-Base', 'Scyther', 'Sneasel', 'Swirlix', 'Tangela', 'Vulpix', 'Vulpix-Alola'],
333
+ banlist: ['Corsola-Galar', 'Cutiefly', 'Ponyta-Base', 'Scyther', 'Sneasel', 'Swirlix', 'Tangela', 'Vulpix', 'Vulpix-Alola', 'Ally Switch'],
333
334
  },
334
335
  {
335
336
  name: "[Gen 8] VGC 2022",
@@ -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,42 @@ 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', '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', 'Ho-Oh', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base', 'Lugia', 'Lunala', 'Magearna',
583
+ 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Rayquaza', 'Reshiram',
584
+ 'Solgaleo', 'Spectrier', 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned',
585
+ 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag', 'Bright Powder', 'King\'s Rock', 'Lax Incense',
586
+ 'Baton Pass', 'Explosion', 'Final Gambit', 'Misty Explosion', 'Self-Destruct',
613
587
  ],
614
588
  },
615
589
  {
616
- name: "[Gen 8] Flipped",
617
- desc: `Pok&eacute;mon have their base stats flipped.`,
590
+ name: "[Gen 8] Pokebilities AAA",
591
+ desc: `Pok&eacute;mon have all of their released abilities simultaneously alongside any additional ability.`,
618
592
  threads: [
619
- `&bullet; <a href="https://www.smogon.com/forums/threads/3662020/">Flipped</a>`,
593
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8821047">Pok&eacute;bilities AAA</a>`,
620
594
  ],
621
- mod: 'gen8',
622
- ruleset: ['Standard', 'Flipped Mod', 'Dynamax Clause'],
595
+ mod: 'pokebilities',
596
+ ruleset: ['[Gen 8] Pokebilities', '!Obtainable Abilities', 'AAA Restricted Abilities', '2 Ability Clause', 'Sleep Moves Clause', '!Sleep Clause Mod'],
623
597
  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', 'Mewtwo', 'Necrozma-Dawn Wings', 'Necrozma-Dusk Mane', 'Palkia', 'Rayquaza',
626
- 'Reshiram', 'Solgaleo', 'Steelix', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Zygarde-Base',
627
- 'Psychic Surge', 'Psychic Terrain', 'Shell Smash',
598
+ 'Blacephalon', 'Buzzwole', 'Clefable', 'Dragapult', 'Dragonite', 'Kartana', 'Melmetal', 'Noivern', 'Pangoro', 'Perrserker', 'Rillaboom',
599
+ 'Tapu Lele', 'Urshifu', 'Urshifu-Rapid-Strike', 'Victini', 'Zamazenta-Crowned', 'Arena Trap', 'Moody', 'Shadow Tag', 'Wonder Guard',
600
+ 'Chlorophyll + Desolate Land', 'Chlorophyll + Drought', 'Regenerator + Emergency Exit', 'Regenerator + Multiscale', 'Regenerator + Shadow Shield',
601
+ 'Regenerator + Wimp Out', 'Sand Rush + Sand Stream', 'Slush Rush + Snow Warning', 'Swift Swim + Drizzle', 'Swift Swim + Primordial Sea',
602
+ 'Regenerator > 2',
603
+ ],
604
+ unbanlist: ['Dracozolt'],
605
+ restricted: [
606
+ 'Comatose', 'Contrary', 'Fluffy', 'Fur Coat', 'Gorilla Tactics', 'Huge Power', 'Ice Scales', 'Illusion', 'Imposter', 'Innards Out',
607
+ 'Intrepid Sword', 'Libero', 'Neutralizing Gas', 'Parental Bond', 'Poison Heal', 'Prankster', 'Protean', 'Pure Power', 'Simple', 'Stakeout',
608
+ 'Speed Boost', 'Tinted Lens', 'Water Bubble',
628
609
  ],
629
610
  },
630
611
  // Other Metagames
@@ -814,9 +795,9 @@ exports.Formats = [
814
795
  mod: 'gen8',
815
796
  ruleset: ['Standard', 'Dynamax Clause', 'Sleep Moves Clause'],
816
797
  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',
798
+ 'Blissey', 'Calyrex-Shadow', 'Chansey', 'Crawdaunt', 'Dragapult', 'Eternatus', 'Hawlucha', 'Marowak-Alola', 'Melmetal',
799
+ 'Pikachu', 'Toxapex', 'Xerneas', 'Zacian', 'Zacian-Crowned', 'Uber > 1', 'AG ++ Uber > 1', 'Arena Trap', 'Huge Power',
800
+ 'Moody', 'Pure Power', 'Shadow Tag', 'Swift Swim', 'Bright Powder', 'Focus Band', 'King\'s Rock', 'Lax Incense', 'Quick Claw',
820
801
  'Baton Pass',
821
802
  ],
822
803
  onValidateTeam(team) {
@@ -962,6 +943,15 @@ exports.Formats = [
962
943
  ruleset: ['[Gen 8 BDSP] RU'],
963
944
  banlist: ['RU', 'NUBL', 'Damp Rock', 'Heat Rock'],
964
945
  },
946
+ {
947
+ name: "[Gen 8 BDSP] PU",
948
+ threads: [
949
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3700009/">BDSP PU</a>`,
950
+ ],
951
+ mod: 'gen8bdsp',
952
+ ruleset: ['[Gen 8 BDSP] NU'],
953
+ banlist: ['NU', 'PUBL'],
954
+ },
965
955
  {
966
956
  name: "[Gen 8 BDSP] LC",
967
957
  threads: [
@@ -977,11 +967,7 @@ exports.Formats = [
977
967
  `&bullet; <a href="https://www.smogon.com/forums/threads/3694267/">BDSP Monotype</a>`,
978
968
  ],
979
969
  mod: 'gen8bdsp',
980
- ruleset: ['Standard', 'Same Type Clause'],
981
- banlist: [
982
- 'Arceus', 'Darkrai', 'Dialga', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kyogre', 'Lugia', 'Mewtwo', 'Palkia', 'Rayquaza', 'Shaymin-Sky',
983
- 'Arena Trap', 'Moody', 'Shadow Tag', 'Damp Rock', 'King\'s Rock', 'Razor Fang', 'Baton Pass',
984
- ],
970
+ ruleset: ['[Gen 8 BDSP] OU', 'Same Type Clause'],
985
971
  },
986
972
  {
987
973
  name: "[Gen 8 BDSP] CAP",
@@ -1009,7 +995,7 @@ exports.Formats = [
1009
995
  mod: 'gen8bdsp',
1010
996
  gameType: 'doubles',
1011
997
  ruleset: ['Standard Doubles'],
1012
- banlist: ['DUber'],
998
+ banlist: ['DUber', 'Dark Void'],
1013
999
  },
1014
1000
  {
1015
1001
  name: "[Gen 8 BDSP] Battle Festival Doubles",
@@ -2348,37 +2334,33 @@ exports.Formats = [
2348
2334
  column: 3,
2349
2335
  },
2350
2336
  {
2351
- name: "[Gen 5] UU",
2337
+ name: "[Gen 6] UU",
2352
2338
  threads: [
2353
- `&bullet; <a href="https://www.smogon.com/forums/threads/3474024/">BW2 UU Viability Rankings</a>`,
2354
- `&bullet; <a href="https://www.smogon.com/forums/posts/6431094/">BW2 Sample Teams</a>`,
2339
+ `&bullet; <a href="https://www.smogon.com/dex/xy/formats/uu/">ORAS UU Banlist</a>`,
2340
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3598164/">ORAS UU Viability Rankings</a>`,
2355
2341
  ],
2356
- mod: 'gen5',
2342
+ mod: 'gen6',
2357
2343
  // searchShow: false,
2358
- ruleset: ['Standard', 'Evasion Abilities Clause', 'Swagger Clause', 'Sleep Clause Mod'],
2359
- banlist: ['Uber', 'OU', 'UUBL', 'Arena Trap', 'Drought', 'Sand Stream', 'Snow Warning', 'Prankster + Assist', 'Prankster + Copycat', 'Baton Pass'],
2344
+ ruleset: ['[Gen 6] OU'],
2345
+ banlist: ['OU', 'UUBL', 'Drizzle', 'Drought'],
2360
2346
  },
2361
2347
  {
2362
- name: "[Gen 5] NU",
2363
- threads: [
2364
- `&bullet; <a href="https://www.smogon.com/forums/posts/6431094/">BW2 Sample Teams</a>`,
2365
- `&bullet; <a href="https://www.smogon.com/forums/threads/3484121/">BW2 NU Viability Rankings</a>`,
2366
- ],
2367
- mod: 'gen5',
2348
+ name: "[Gen 4] Anything Goes",
2349
+ mod: 'gen4',
2368
2350
  // searchShow: false,
2369
- ruleset: ['[Gen 5] RU', '!Sleep Moves Clause', 'Sleep Clause Mod'],
2370
- banlist: ['RU', 'NUBL', 'Assist', 'Copycat'],
2351
+ ruleset: ['Obtainable', 'Arceus EV Limit', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod'],
2371
2352
  },
2372
2353
  {
2373
- name: "[Gen 6] PU",
2354
+ name: "[Gen 7] RU",
2374
2355
  threads: [
2375
- `&bullet; <a href="https://www.smogon.com/dex/xy/tags/pu/">ORAS PU Banlist</a>`,
2376
- `&bullet; <a href="https://www.smogon.com/forums/threads/3528743/">ORAS PU Viability Rankings</a>`,
2356
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3645338/">USM RU Sample Teams</a>`,
2357
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3645873/">USM RU Viability Rankings</a>`,
2377
2358
  ],
2378
- mod: 'gen6',
2359
+ mod: 'gen7',
2379
2360
  // searchShow: false,
2380
- ruleset: ['[Gen 6] NU'],
2381
- banlist: ['NU', 'PUBL', 'Chatter'],
2361
+ ruleset: ['[Gen 7] UU'],
2362
+ banlist: ['UU', 'RUBL', 'Mimikyu', 'Aurora Veil'],
2363
+ unbanlist: ['Drought'],
2382
2364
  },
2383
2365
  // Past Gens OU
2384
2366
  ///////////////////////////////////////////////////////////////////
@@ -2437,7 +2419,7 @@ exports.Formats = [
2437
2419
  ],
2438
2420
  mod: 'gen3',
2439
2421
  ruleset: ['Standard', 'One Boost Passer Clause'],
2440
- banlist: ['Uber', 'Sand Veil', 'Assist', 'Baton Pass + Mean Look', 'Baton Pass + Spider Web', 'Smeargle + Ingrain'],
2422
+ banlist: ['Uber', 'Sand Veil', 'Soundproof', 'Assist', 'Baton Pass + Mean Look', 'Baton Pass + Spider Web', 'Smeargle + Ingrain'],
2441
2423
  },
2442
2424
  {
2443
2425
  name: "[Gen 2] OU",
@@ -2581,15 +2563,6 @@ exports.Formats = [
2581
2563
  mod: 'gen6',
2582
2564
  ruleset: ['-Nonexistent', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Endless Battle Clause', 'EV limit = 510'],
2583
2565
  },
2584
- {
2585
- name: "[Gen 5] ZU",
2586
- threads: [
2587
- `&bullet; <a href="https://www.smogon.com/forums/posts/8034680/">BW2 ZU</a>`,
2588
- ],
2589
- mod: 'gen5',
2590
- ruleset: ['[Gen 5] PU'],
2591
- banlist: ['PU', 'Dragonair', 'Glalie', 'Machoke', 'Marowak', 'Omanyte', 'Regigigas', 'Trubbish', 'Whirlipede', 'Baton Pass'],
2592
- },
2593
2566
  // US/UM Singles
2594
2567
  ///////////////////////////////////////////////////////////////////
2595
2568
  {
@@ -2617,18 +2590,6 @@ exports.Formats = [
2617
2590
  ruleset: ['[Gen 7] OU'],
2618
2591
  banlist: ['OU', 'UUBL', 'Drizzle', 'Drought', 'Kommonium Z', 'Mewnium Z'],
2619
2592
  },
2620
- {
2621
- name: "[Gen 7] RU",
2622
- threads: [
2623
- `&bullet; <a href="https://www.smogon.com/forums/threads/3645338/">USM RU Sample Teams</a>`,
2624
- `&bullet; <a href="https://www.smogon.com/forums/threads/3645873/">USM RU Viability Rankings</a>`,
2625
- ],
2626
- mod: 'gen7',
2627
- searchShow: false,
2628
- ruleset: ['[Gen 7] UU'],
2629
- banlist: ['UU', 'RUBL', 'Mimikyu', 'Aurora Veil'],
2630
- unbanlist: ['Drought'],
2631
- },
2632
2593
  {
2633
2594
  name: "[Gen 7] NU",
2634
2595
  threads: [
@@ -2727,7 +2688,7 @@ exports.Formats = [
2727
2688
  searchShow: false,
2728
2689
  ruleset: ['[Gen 7] PU'],
2729
2690
  banlist: [
2730
- 'PU', 'Carracosta', 'Crabominable', 'Gorebyss', 'Jynx', 'Raticate-Alola',
2691
+ 'PU', 'Carracosta', 'Crabominable', 'Exeggutor-Base', 'Gorebyss', 'Jynx', 'Raticate-Alola',
2731
2692
  'Shiftry', 'Throh', 'Turtonator', 'Type: Null', 'Ursaring', 'Victreebel',
2732
2693
  ],
2733
2694
  },
@@ -2898,17 +2859,6 @@ exports.Formats = [
2898
2859
  searchShow: false,
2899
2860
  ruleset: ['Standard', 'Swagger Clause', 'Mega Rayquaza Clause'],
2900
2861
  },
2901
- {
2902
- name: "[Gen 6] UU",
2903
- threads: [
2904
- `&bullet; <a href="https://www.smogon.com/dex/xy/formats/uu/">ORAS UU Banlist</a>`,
2905
- `&bullet; <a href="https://www.smogon.com/forums/threads/3598164/">ORAS UU Viability Rankings</a>`,
2906
- ],
2907
- mod: 'gen6',
2908
- searchShow: false,
2909
- ruleset: ['[Gen 6] OU'],
2910
- banlist: ['OU', 'UUBL', 'Drizzle', 'Drought'],
2911
- },
2912
2862
  {
2913
2863
  name: "[Gen 6] RU",
2914
2864
  threads: [
@@ -2931,6 +2881,17 @@ exports.Formats = [
2931
2881
  ruleset: ['[Gen 6] RU'],
2932
2882
  banlist: ['RU', 'NUBL'],
2933
2883
  },
2884
+ {
2885
+ name: "[Gen 6] PU",
2886
+ threads: [
2887
+ `&bullet; <a href="https://www.smogon.com/dex/xy/tags/pu/">ORAS PU Banlist</a>`,
2888
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3528743/">ORAS PU Viability Rankings</a>`,
2889
+ ],
2890
+ mod: 'gen6',
2891
+ searchShow: false,
2892
+ ruleset: ['[Gen 6] NU'],
2893
+ banlist: ['NU', 'PUBL', 'Chatter'],
2894
+ },
2934
2895
  {
2935
2896
  name: "[Gen 6] LC",
2936
2897
  threads: [
@@ -2993,6 +2954,17 @@ exports.Formats = [
2993
2954
  searchShow: false,
2994
2955
  ruleset: ['Obtainable', 'Team Preview', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod'],
2995
2956
  },
2957
+ {
2958
+ name: "[Gen 6] ZU",
2959
+ threads: [
2960
+ `&bullet; <a href="https://www.smogon.com/dex/xy/formats/zu/">ORAS ZU Banlist</a>`,
2961
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8034679/">ORAS ZU Viability Rankings</a>`,
2962
+ ],
2963
+ mod: 'gen6',
2964
+ searchShow: false,
2965
+ ruleset: ['[Gen 6] PU'],
2966
+ banlist: ['PU', 'Fraxure', 'Regigigas', 'Simisear'],
2967
+ },
2996
2968
  {
2997
2969
  name: "[Gen 6] CAP",
2998
2970
  threads: [
@@ -3139,6 +3111,17 @@ exports.Formats = [
3139
3111
  searchShow: false,
3140
3112
  ruleset: ['Standard', 'Sleep Clause Mod'],
3141
3113
  },
3114
+ {
3115
+ name: "[Gen 5] UU",
3116
+ threads: [
3117
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3474024/">BW2 UU Viability Rankings</a>`,
3118
+ `&bullet; <a href="https://www.smogon.com/forums/posts/6431094/">BW2 Sample Teams</a>`,
3119
+ ],
3120
+ mod: 'gen5',
3121
+ searchShow: false,
3122
+ ruleset: ['Standard', 'Evasion Abilities Clause', 'Swagger Clause', 'Sleep Clause Mod'],
3123
+ banlist: ['Uber', 'OU', 'UUBL', 'Arena Trap', 'Drought', 'Sand Stream', 'Snow Warning', 'Prankster + Assist', 'Prankster + Copycat', 'Baton Pass'],
3124
+ },
3142
3125
  {
3143
3126
  name: "[Gen 5] RU",
3144
3127
  threads: [
@@ -3151,6 +3134,17 @@ exports.Formats = [
3151
3134
  banlist: ['UU', 'RUBL', 'Shadow Tag', 'Shell Smash + Baton Pass'],
3152
3135
  unbanlist: ['Prankster + Assist', 'Prankster + Copycat', 'Baton Pass'],
3153
3136
  },
3137
+ {
3138
+ name: "[Gen 5] NU",
3139
+ threads: [
3140
+ `&bullet; <a href="https://www.smogon.com/forums/posts/6431094/">BW2 Sample Teams</a>`,
3141
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3484121/">BW2 NU Viability Rankings</a>`,
3142
+ ],
3143
+ mod: 'gen5',
3144
+ searchShow: false,
3145
+ ruleset: ['[Gen 5] RU', '!Sleep Moves Clause', 'Sleep Clause Mod'],
3146
+ banlist: ['RU', 'NUBL', 'Assist', 'Copycat'],
3147
+ },
3154
3148
  {
3155
3149
  name: "[Gen 5] PU",
3156
3150
  threads: [
@@ -3200,6 +3194,16 @@ exports.Formats = [
3200
3194
  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'],
3201
3195
  unbanlist: ['Genesect', 'Landorus', 'Manaphy', 'Thundurus', 'Tornadus-Therian'],
3202
3196
  },
3197
+ {
3198
+ name: "[Gen 5] ZU",
3199
+ threads: [
3200
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8034680/">BW2 ZU</a>`,
3201
+ ],
3202
+ mod: 'gen5',
3203
+ searchShow: false,
3204
+ ruleset: ['[Gen 5] PU'],
3205
+ banlist: ['PU', 'Articuno', 'Dragonair', 'Glalie', 'Machoke', 'Marowak', 'Omanyte', 'Regigigas', 'Trubbish', 'Whirlipede', 'Baton Pass'],
3206
+ },
3203
3207
  {
3204
3208
  name: "[Gen 5] GBU Singles",
3205
3209
  mod: 'gen5',
@@ -3365,10 +3369,20 @@ exports.Formats = [
3365
3369
  unbanlist: ['Wobbuffet', 'Wynaut', 'Sand Veil', 'Swagger'],
3366
3370
  },
3367
3371
  {
3368
- name: "[Gen 4] Anything Goes",
3372
+ name: "[Gen 4] ZU",
3373
+ threads: [
3374
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8034681/">DPP ZU</a>`,
3375
+ ],
3369
3376
  mod: 'gen4',
3370
3377
  searchShow: false,
3371
- ruleset: ['Obtainable', 'Arceus EV Limit', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod'],
3378
+ ruleset: ['[Gen 4] PU'],
3379
+ banlist: [
3380
+ 'Ampharos', 'Armaldo', 'Bellossom', 'Dragonair', 'Gabite', 'Gastrodon', 'Glaceon', 'Glalie', 'Golduck',
3381
+ 'Gorebyss', 'Hippopotas', 'Kadabra', 'Machoke', 'Magmar', 'Mantine', 'Marowak', 'Metang', 'Misdreavus',
3382
+ 'Monferno', 'Mr. Mime', 'Muk', 'Murkrow', 'Pinsir', 'Politoed', 'Purugly', 'Quagsire', 'Raichu',
3383
+ 'Rampardos', 'Rapidash', 'Regigigas', 'Relicanth', 'Rhydon', 'Scyther', 'Sneasel', 'Snover', 'Solrock',
3384
+ 'Tangela', 'Torkoal', 'Victreebel', 'Xatu', 'Zangoose', 'Damp Rock',
3385
+ ],
3372
3386
  },
3373
3387
  {
3374
3388
  name: "[Gen 4] Custom Game",
@@ -3448,7 +3462,7 @@ exports.Formats = [
3448
3462
  searchShow: false,
3449
3463
  ruleset: ['Standard', 'NFE Clause'],
3450
3464
  banlist: ['Uber', 'OU', 'UUBL', 'Smeargle + Ingrain', 'Baton Pass'],
3451
- unbanlist: ['Scyther', 'Sand Veil'],
3465
+ unbanlist: ['Scyther'],
3452
3466
  },
3453
3467
  {
3454
3468
  name: "[Gen 3] NU",