@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.
- package/build/config/formats.js +163 -149
- package/build/config/formats.js.map +1 -1
- package/build/data/abilities.js +2 -2
- package/build/data/abilities.js.map +1 -1
- package/build/data/aliases.js +2 -2
- package/build/data/aliases.js.map +1 -1
- package/build/data/conditions.js +4 -1
- package/build/data/conditions.js.map +1 -1
- package/build/data/formats-data.js +2 -2
- package/build/data/formats-data.js.map +1 -1
- package/build/data/items.js +4 -2
- package/build/data/items.js.map +1 -1
- package/build/data/learnsets.js +5 -4
- package/build/data/learnsets.js.map +1 -1
- package/build/data/mods/gen1/formats-data.js +38 -36
- package/build/data/mods/gen1/formats-data.js.map +1 -1
- package/build/data/mods/gen1/scripts.js +1 -1
- package/build/data/mods/gen1/scripts.js.map +1 -1
- package/build/data/mods/gen2/items.js +28 -0
- package/build/data/mods/gen2/items.js.map +1 -1
- package/build/data/mods/gen2/moves.js +2 -2
- package/build/data/mods/gen2/moves.js.map +1 -1
- package/build/data/mods/gen3/items.js +28 -0
- package/build/data/mods/gen3/items.js.map +1 -1
- package/build/data/mods/gen4/abilities.js +20 -0
- package/build/data/mods/gen4/abilities.js.map +1 -1
- package/build/data/mods/gen4/items.js +28 -0
- package/build/data/mods/gen4/items.js.map +1 -1
- package/build/data/mods/gen4/moves.js +14 -6
- package/build/data/mods/gen4/moves.js.map +1 -1
- package/build/data/mods/gen5/items.js +0 -4
- package/build/data/mods/gen5/items.js.map +1 -1
- package/build/data/mods/gen6/formats-data.js +3 -3
- package/build/data/mods/gen6/formats-data.js.map +1 -1
- package/build/data/mods/gen6/items.js +24 -0
- package/build/data/mods/gen6/items.js.map +1 -1
- package/build/data/mods/gen7/abilities.js +31 -0
- package/build/data/mods/gen7/abilities.js.map +1 -1
- package/build/data/mods/gen7/items.js +12 -0
- package/build/data/mods/gen7/items.js.map +1 -1
- package/build/data/mods/gen7/moves.js +14 -0
- package/build/data/mods/gen7/moves.js.map +1 -1
- package/build/data/moves.js +45 -19
- package/build/data/moves.js.map +1 -1
- package/build/data/rulesets.js +72 -1
- package/build/data/rulesets.js.map +1 -1
- package/build/data/tags.js +3 -3
- package/build/data/tags.js.map +1 -1
- package/build/data/text/moves.js +8 -8
- package/build/data/text/moves.js.map +1 -1
- package/build/sim/battle-queue.d.ts +2 -2
- package/build/sim/battle-queue.js +8 -0
- package/build/sim/battle-queue.js.map +1 -1
- package/build/sim/battle.js +42 -2
- package/build/sim/battle.js.map +1 -1
- package/build/sim/dex-conditions.d.ts +2 -2
- package/build/sim/dex-conditions.js +1 -0
- package/build/sim/dex-conditions.js.map +1 -1
- package/build/sim/dex-data.js +1 -0
- package/build/sim/dex-data.js.map +1 -1
- package/build/sim/dex-formats.js +1 -0
- package/build/sim/dex-formats.js.map +1 -1
- package/build/sim/dex-items.js +1 -0
- package/build/sim/dex-items.js.map +1 -1
- package/build/sim/dex-moves.d.ts +1 -0
- package/build/sim/dex-moves.js +1 -0
- package/build/sim/dex-moves.js.map +1 -1
- package/build/sim/dex-species.js +1 -0
- package/build/sim/dex-species.js.map +1 -1
- package/build/sim/pokemon.js +18 -5
- package/build/sim/pokemon.js.map +1 -1
- package/build/sim/team-validator.js +1 -1
- package/build/sim/team-validator.js.map +1 -1
- package/config/formats.ts +169 -154
- package/data/abilities.ts +2 -2
- package/data/aliases.ts +2 -2
- package/data/conditions.ts +4 -1
- package/data/formats-data.ts +2 -2
- package/data/items.ts +4 -2
- package/data/learnsets.ts +5 -4
- package/data/mods/gen1/formats-data.ts +38 -36
- package/data/mods/gen1/scripts.ts +1 -1
- package/data/mods/gen2/items.ts +28 -0
- package/data/mods/gen2/moves.ts +2 -2
- package/data/mods/gen3/items.ts +28 -0
- package/data/mods/gen4/abilities.ts +20 -0
- package/data/mods/gen4/items.ts +28 -0
- package/data/mods/gen4/moves.ts +14 -7
- package/data/mods/gen5/items.ts +0 -4
- package/data/mods/gen6/formats-data.ts +3 -3
- package/data/mods/gen6/items.ts +24 -0
- package/data/mods/gen7/abilities.ts +31 -0
- package/data/mods/gen7/items.ts +12 -0
- package/data/mods/gen7/moves.ts +14 -0
- package/data/moves.ts +45 -18
- package/data/rulesets.ts +71 -1
- package/data/tags.ts +3 -3
- package/data/text/moves.ts +8 -8
- package/package.json +3 -3
- package/sim/battle-queue.ts +10 -2
- package/sim/battle.ts +39 -2
- package/sim/dex-conditions.ts +7 -2
- package/sim/dex-data.ts +1 -0
- package/sim/dex-formats.ts +1 -0
- package/sim/dex-items.ts +1 -0
- package/sim/dex-moves.ts +2 -0
- package/sim/dex-species.ts +1 -0
- package/sim/pokemon.ts +19 -7
- package/sim/team-validator.ts +1 -1
package/build/config/formats.js
CHANGED
|
@@ -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',
|
|
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
|
-
'
|
|
375
|
-
'
|
|
376
|
-
'Zamazenta
|
|
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]
|
|
521
|
-
desc: `A metagame made up of
|
|
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
|
-
`• <a href="https://www.smogon.com/forums/threads/
|
|
524
|
-
`• <a href="https://docs.google.com/spreadsheets/d/
|
|
522
|
+
`• <a href="https://www.smogon.com/forums/threads/3673824/">Restrictions</a>`,
|
|
523
|
+
`• <a href="https://docs.google.com/spreadsheets/d/1XsplBqN8njHZJT9cTP_3i3YSFITB9WaVfNOYAbNY75M/edit?usp=sharing">Spreadsheet</a>`,
|
|
525
524
|
],
|
|
526
|
-
mod: '
|
|
527
|
-
ruleset: ['Standard
|
|
525
|
+
mod: 'restrictions',
|
|
526
|
+
ruleset: ['Standard', 'Dynamax Clause'],
|
|
528
527
|
banlist: ['All Pokemon', 'Past'],
|
|
529
528
|
unbanlist: [
|
|
530
|
-
'
|
|
531
|
-
'
|
|
532
|
-
'
|
|
533
|
-
'
|
|
534
|
-
'
|
|
535
|
-
|
|
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
|
|
558
|
-
desc: `A micrometagame project consisting of 80 randomly selected fully-evolved Pokémon.`,
|
|
537
|
+
name: "[Gen 8] Roulettemons Random Battle",
|
|
559
538
|
threads: [
|
|
560
|
-
`• <a href="https://www.smogon.com/forums/threads/
|
|
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
|
+
`• <a href="https://www.smogon.com/forums/threads/3649106/">Roulettemons</a>`,
|
|
540
|
+
`• <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]
|
|
595
|
-
desc: `
|
|
573
|
+
name: "[Gen 8] Crazyhouse",
|
|
574
|
+
desc: `Pokémon you KO are added to your team and removed from the opponent's, and vice versa.`,
|
|
596
575
|
threads: [
|
|
597
|
-
`• <a href="https://www.smogon.com/forums/threads/
|
|
576
|
+
`• <a href="https://www.smogon.com/forums/threads/3699268/">Crazyhouse</a>`,
|
|
598
577
|
],
|
|
599
578
|
mod: 'gen8',
|
|
600
|
-
ruleset: ['Standard', '
|
|
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', '
|
|
603
|
-
'Giratina-Origin', 'Groudon', '
|
|
604
|
-
'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', '
|
|
605
|
-
'
|
|
606
|
-
'
|
|
607
|
-
'
|
|
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]
|
|
617
|
-
desc: `Pokémon have their
|
|
590
|
+
name: "[Gen 8] Pokebilities AAA",
|
|
591
|
+
desc: `Pokémon have all of their released abilities simultaneously alongside any additional ability.`,
|
|
618
592
|
threads: [
|
|
619
|
-
`• <a href="https://www.smogon.com/forums/
|
|
593
|
+
`• <a href="https://www.smogon.com/forums/posts/8821047">Pokébilities AAA</a>`,
|
|
620
594
|
],
|
|
621
|
-
mod: '
|
|
622
|
-
ruleset: ['
|
|
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
|
-
'
|
|
625
|
-
'
|
|
626
|
-
'
|
|
627
|
-
'
|
|
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',
|
|
818
|
-
'Toxapex', 'Xerneas', 'Zacian', 'Zacian-Crowned', 'Uber > 1', 'AG ++ Uber > 1', 'Arena Trap', 'Huge Power',
|
|
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
|
+
`• <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
|
`• <a href="https://www.smogon.com/forums/threads/3694267/">BDSP Monotype</a>`,
|
|
978
968
|
],
|
|
979
969
|
mod: 'gen8bdsp',
|
|
980
|
-
ruleset: ['
|
|
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
|
|
2337
|
+
name: "[Gen 6] UU",
|
|
2352
2338
|
threads: [
|
|
2353
|
-
`• <a href="https://www.smogon.com/
|
|
2354
|
-
`• <a href="https://www.smogon.com/forums/
|
|
2339
|
+
`• <a href="https://www.smogon.com/dex/xy/formats/uu/">ORAS UU Banlist</a>`,
|
|
2340
|
+
`• <a href="https://www.smogon.com/forums/threads/3598164/">ORAS UU Viability Rankings</a>`,
|
|
2355
2341
|
],
|
|
2356
|
-
mod: '
|
|
2342
|
+
mod: 'gen6',
|
|
2357
2343
|
// searchShow: false,
|
|
2358
|
-
ruleset: ['
|
|
2359
|
-
banlist: ['
|
|
2344
|
+
ruleset: ['[Gen 6] OU'],
|
|
2345
|
+
banlist: ['OU', 'UUBL', 'Drizzle', 'Drought'],
|
|
2360
2346
|
},
|
|
2361
2347
|
{
|
|
2362
|
-
name: "[Gen
|
|
2363
|
-
|
|
2364
|
-
`• <a href="https://www.smogon.com/forums/posts/6431094/">BW2 Sample Teams</a>`,
|
|
2365
|
-
`• <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: ['
|
|
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
|
|
2354
|
+
name: "[Gen 7] RU",
|
|
2374
2355
|
threads: [
|
|
2375
|
-
`• <a href="https://www.smogon.com/
|
|
2376
|
-
`• <a href="https://www.smogon.com/forums/threads/
|
|
2356
|
+
`• <a href="https://www.smogon.com/forums/threads/3645338/">USM RU Sample Teams</a>`,
|
|
2357
|
+
`• <a href="https://www.smogon.com/forums/threads/3645873/">USM RU Viability Rankings</a>`,
|
|
2377
2358
|
],
|
|
2378
|
-
mod: '
|
|
2359
|
+
mod: 'gen7',
|
|
2379
2360
|
// searchShow: false,
|
|
2380
|
-
ruleset: ['[Gen
|
|
2381
|
-
banlist: ['
|
|
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
|
-
`• <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
|
-
`• <a href="https://www.smogon.com/forums/threads/3645338/">USM RU Sample Teams</a>`,
|
|
2624
|
-
`• <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
|
-
`• <a href="https://www.smogon.com/dex/xy/formats/uu/">ORAS UU Banlist</a>`,
|
|
2905
|
-
`• <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
|
+
`• <a href="https://www.smogon.com/dex/xy/tags/pu/">ORAS PU Banlist</a>`,
|
|
2888
|
+
`• <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
|
+
`• <a href="https://www.smogon.com/dex/xy/formats/zu/">ORAS ZU Banlist</a>`,
|
|
2961
|
+
`• <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
|
+
`• <a href="https://www.smogon.com/forums/threads/3474024/">BW2 UU Viability Rankings</a>`,
|
|
3118
|
+
`• <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
|
+
`• <a href="https://www.smogon.com/forums/posts/6431094/">BW2 Sample Teams</a>`,
|
|
3141
|
+
`• <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
|
+
`• <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]
|
|
3372
|
+
name: "[Gen 4] ZU",
|
|
3373
|
+
threads: [
|
|
3374
|
+
`• <a href="https://www.smogon.com/forums/posts/8034681/">DPP ZU</a>`,
|
|
3375
|
+
],
|
|
3369
3376
|
mod: 'gen4',
|
|
3370
3377
|
searchShow: false,
|
|
3371
|
-
ruleset: ['
|
|
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'
|
|
3465
|
+
unbanlist: ['Scyther'],
|
|
3452
3466
|
},
|
|
3453
3467
|
{
|
|
3454
3468
|
name: "[Gen 3] NU",
|