@pkmn/sim 0.5.4 → 0.5.5
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 +60 -66
- package/build/config/formats.js.map +1 -1
- package/build/data/mods/gen5/formats-data.js +157 -140
- package/build/data/mods/gen5/formats-data.js.map +1 -1
- package/build/data/pokedex.js +1 -1
- package/build/data/pokedex.js.map +1 -1
- package/build/data/tags.d.ts +1 -0
- package/build/data/tags.js +1 -1
- package/build/data/tags.js.map +1 -1
- package/build/data/text/abilities.js +4 -4
- package/build/data/text/abilities.js.map +1 -1
- package/build/data/text/moves.js +18 -18
- package/build/data/text/moves.js.map +1 -1
- package/build/sim/battle-actions.js +4 -1
- package/build/sim/battle-actions.js.map +1 -1
- package/build/sim/dex-formats.d.ts +1 -0
- package/build/sim/dex-formats.js +3 -2
- package/build/sim/dex-formats.js.map +1 -1
- package/build/sim/index.d.ts +1 -0
- package/build/sim/index.js +3 -1
- package/build/sim/index.js.map +1 -1
- package/build/sim/team-validator.js +13 -0
- package/build/sim/team-validator.js.map +1 -1
- package/config/formats.ts +60 -67
- package/data/mods/gen5/formats-data.ts +157 -140
- package/data/pokedex.ts +1 -1
- package/data/tags.ts +3 -1
- package/data/text/abilities.ts +4 -4
- package/data/text/moves.ts +18 -18
- package/package.json +2 -2
- package/sim/battle-actions.ts +4 -1
- package/sim/dex-formats.ts +4 -1
- package/sim/index.ts +1 -0
- package/sim/team-validator.ts +12 -0
package/build/config/formats.js
CHANGED
|
@@ -132,7 +132,7 @@ exports.Formats = [
|
|
|
132
132
|
],
|
|
133
133
|
mod: 'gen8',
|
|
134
134
|
ruleset: ['[Gen 8] RU'],
|
|
135
|
-
banlist: ['RU', 'NUBL', 'Drizzle', 'Drought'],
|
|
135
|
+
banlist: ['RU', 'NUBL', 'Drizzle', 'Drought', 'Slush Rush'],
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
138
|
name: "[Gen 8] PU",
|
|
@@ -217,7 +217,7 @@ exports.Formats = [
|
|
|
217
217
|
mod: 'gen8',
|
|
218
218
|
ruleset: ['[Gen 8] PU'],
|
|
219
219
|
banlist: [
|
|
220
|
-
'PU', 'Centiskorch', 'Drampa', 'Exeggutor-Alola', 'Gallade', 'Haunter', 'Magmortar', 'Magneton', 'Omastar', 'Rotom-Frost',
|
|
220
|
+
'PU', 'Aurorus', 'Centiskorch', 'Drampa', 'Exeggutor-Alola', 'Gallade', 'Haunter', 'Magmortar', 'Magneton', 'Omastar', 'Rotom-Frost',
|
|
221
221
|
'Turtonator', 'Vanilluxe', 'Vikavolt', 'Silvally-Dragon', 'Silvally-Ground', 'Sneasel', 'Damp Rock', 'Grassy Seed',
|
|
222
222
|
],
|
|
223
223
|
},
|
|
@@ -274,20 +274,6 @@ exports.Formats = [
|
|
|
274
274
|
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8', 'Limit Two Restricted'],
|
|
275
275
|
restricted: ['Restricted Legendary'],
|
|
276
276
|
},
|
|
277
|
-
{
|
|
278
|
-
name: "[Gen 8] Test Your Luck!",
|
|
279
|
-
threads: [
|
|
280
|
-
`• <a href="https://www.smogon.com/forums/threads/3695144/">Test Your Luck! Discussion</a>`,
|
|
281
|
-
],
|
|
282
|
-
mod: 'gen8',
|
|
283
|
-
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'VGC Timer', 'Min Source Gen = 8'],
|
|
284
|
-
banlist: ['Azelf', 'Mesprit', 'Uxie'],
|
|
285
|
-
onValidateSet(set, format) {
|
|
286
|
-
if (set.moves.length !== 1 || this.dex.moves.get(set.moves[0]).id !== 'metronome') {
|
|
287
|
-
return [`${set.name || set.species} has illegal moves.`, `(${format.name} only allows the move Metronome)`];
|
|
288
|
-
}
|
|
289
|
-
},
|
|
290
|
-
},
|
|
291
277
|
{
|
|
292
278
|
name: "[Gen 8] Custom Game",
|
|
293
279
|
mod: 'gen8',
|
|
@@ -470,14 +456,15 @@ exports.Formats = [
|
|
|
470
456
|
mod: 'gen8',
|
|
471
457
|
ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Dynamax Clause', 'Sleep Clause Mod'],
|
|
472
458
|
banlist: [
|
|
473
|
-
'Alakazam-Mega', 'Arceus', 'Blastoise-Mega', 'Blaziken-Mega', 'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Darkrai',
|
|
474
|
-
'Deoxys-Attack', 'Deoxys-Base', 'Deoxys-Speed', 'Dialga', 'Dracovish', 'Dragapult', 'Eternatus',
|
|
475
|
-
'
|
|
476
|
-
'
|
|
477
|
-
'
|
|
478
|
-
'
|
|
479
|
-
'
|
|
480
|
-
'
|
|
459
|
+
'Alakazam-Mega', 'Arceus', 'Blastoise-Mega', 'Blaziken-Mega', 'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Darkrai',
|
|
460
|
+
'Darmanitan-Galar', 'Deoxys-Attack', 'Deoxys-Base', 'Deoxys-Speed', 'Dialga', 'Dracovish', 'Dragapult', 'Eternatus',
|
|
461
|
+
'Genesect', 'Gengar-Mega', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kangaskhan-Mega', 'Kyogre', 'Kyurem-Black',
|
|
462
|
+
'Kyurem-White', 'Landorus-Base', 'Lucario-Mega', 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Metagross-Mega', 'Mewtwo',
|
|
463
|
+
'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Necrozma-Ultra', 'Palkia', 'Pheromosa', 'Rayquaza', 'Reshiram',
|
|
464
|
+
'Salamence-Mega', 'Shaymin-Sky', 'Solgaleo', 'Spectrier', 'Tornadus-Therian', 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian',
|
|
465
|
+
'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Zygarde-Base', 'Zygarde-Complete', 'Arena Trap', 'Moody',
|
|
466
|
+
'Power Construct', 'Sand Veil', 'Shadow Tag', 'Snow Cloak', 'Bright Powder', 'King\'s Rock', 'Lax Incense', 'Razor Fang',
|
|
467
|
+
'Quick Claw', 'Baton Pass',
|
|
481
468
|
],
|
|
482
469
|
},
|
|
483
470
|
{
|
|
@@ -558,7 +545,7 @@ exports.Formats = [
|
|
|
558
545
|
'Pikachu-Belle', 'Pikachu-Idol', 'Pikachu-PhD', 'Pikachu-Libre', 'Pikachu-Partner', 'Pikachu-Starter', 'Darmanitan', 'Darmanitan-Zen', 'Darmanitan-Galar', 'Darmanitan-Galar-Zen',
|
|
559
546
|
'Aegishield', 'Aegislash', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Rotom', 'Rotom-Heat', 'Rotom-Wash', 'Rotom-Frost', 'Rotom-Fan', 'Rotom-Mow', 'Dugtrio',
|
|
560
547
|
'Dugtrio-Alola', 'Muk', 'Muk-Oilslick', 'Slowbro', 'Slowbro-Galar', 'Slowking', 'Slowking-Galar', 'Tornadus', 'Cummulus', 'Thundurus', 'Thundurus-Therian', 'Landorus', 'Landorus-Bengal',
|
|
561
|
-
'Vivillon-Fancy', 'Vivillon
|
|
548
|
+
'Vivillon-Fancy', 'Vivillon', 'Vivillon-Pokeball', 'Genesect', 'Genesect-Password', 'Genesect-Molten', 'Genesect-Freezer', 'Genesect-Type-Delta', 'Groudon', 'Groudon-Primal', 'Kyogre',
|
|
562
549
|
'Kyogre-Primal', 'Deoxys-Wood', 'Deoxys-Gem', 'Deoxys-Tank', 'Deoxys-Speed', 'Sandslash-Lustrous', 'Sandslash-Alola', 'Ninetales-Steamwork', 'Ninetales-Alola', 'Giratina', 'Giratina-Shadow',
|
|
563
550
|
'Eternatus', 'Manustorm', 'Exeggutor', 'Exeggutor-Lighthouse', 'Weezing', 'Weezing-King', 'Raticate', 'Raticate-Alola', 'Linoone', 'Linoone-Punk', 'Catastroform', 'Castform-Firestorm',
|
|
564
551
|
'Castform-Thunderstorm', 'Castform-Snowy', 'Wormadam', 'Wormadam-Sandy', 'Fibormadam', 'Farfetch\u2019d', 'Farfetch\u2019d-Galar', 'Corsola', 'Corsoul', 'Shaymin', 'Shaymin-Sky', 'Keldeo',
|
|
@@ -587,18 +574,17 @@ exports.Formats = [
|
|
|
587
574
|
],
|
|
588
575
|
mod: 'randomdex',
|
|
589
576
|
ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Dynamax Clause', 'Sleep Clause Mod'],
|
|
590
|
-
banlist: ['All Pokemon', 'Past', 'Arena Trap', 'Moody', 'Shadow Tag', 'Baton Pass', 'Bright Powder', 'Lax Incense', 'King\'s Rock',
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
"Volbeat", "Whimsicott", "Zarude"],
|
|
577
|
+
banlist: ['All Pokemon', 'Past', 'Arena Trap', 'Moody', 'Shadow Tag', 'Baton Pass', 'Bright Powder', 'Lax Incense', 'King\'s Rock', 'Razor Fang', 'Kangaskhanite', 'Medichamite', 'Kommonium Z'],
|
|
578
|
+
unbanlist: [
|
|
579
|
+
'Absol', 'Absol-Mega', 'Appletun', 'Articuno', 'Aurorus', 'Basculin', 'Beartic', 'Bisharp', 'Calyrex', 'Camerupt', 'Camerupt-Mega',
|
|
580
|
+
'Celesteela', 'Cloyster', 'Crawdaunt', 'Cursola', 'Dedenne', 'Delibird', 'Eelektross', 'Espeon', 'Flapple', 'Flareon', 'Flygon',
|
|
581
|
+
'Galvantula', 'Girafarig', 'Glaceon', 'Goodra', 'Gourgeist', 'Grimmsnarl', 'Guzzlord', 'Heliolisk', 'Hitmonchan', 'Hitmonlee',
|
|
582
|
+
'Hitmontop', 'Incineroar', 'Indeedee', 'Jolteon', 'Kangaskhan', 'Kommo-o', 'Lanturn', 'Leafeon', 'Leavanny', 'Ludicolo', 'Lunatone',
|
|
583
|
+
'Luvdisc', 'Machamp', 'Mandibuzz', 'Medicham', 'Nihilego', 'Palossand', 'Pidgeot', 'Pidgeot-Mega', 'Probopass', 'Pyroar', 'Sawk',
|
|
584
|
+
'Sceptile', 'Sceptile-Mega', 'Scolipede', 'Shiftry', 'Simisage', 'Slowbro', 'Slowbro-Mega', 'Slowking', 'Swoobat', 'Sylveon',
|
|
585
|
+
'Tapu Bulu', 'Tapu Fini', 'Tauros', 'Typhlosion', 'Umbreon', 'Ursaring', 'Vaporeon', 'Whiscash', 'Wishiwashi', 'Zebstrika', 'Absolite',
|
|
586
|
+
'Pidgeotite', 'Sceptilite', 'Cameruptite', 'Slowbronite',
|
|
587
|
+
],
|
|
602
588
|
},
|
|
603
589
|
{
|
|
604
590
|
name: "[Gen 6] NEXT OU",
|
|
@@ -626,11 +612,12 @@ exports.Formats = [
|
|
|
626
612
|
mod: 'pokebilities',
|
|
627
613
|
ruleset: ['Standard', 'Dynamax Clause'],
|
|
628
614
|
banlist: [
|
|
629
|
-
'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Darmanitan-Galar', 'Dialga', 'Dracovish', '
|
|
630
|
-
'Genesect', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kyogre', 'Kyurem-Black',
|
|
631
|
-
'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings',
|
|
632
|
-
'Pheromosa', 'Porygon-Z', 'Rayquaza', 'Reshiram', 'Solgaleo', 'Spectrier', 'Urshifu-Base',
|
|
633
|
-
'Zacian-Crowned', 'Zamazenta-Base', 'Zekrom', 'Zygarde-Base', 'Power Construct',
|
|
615
|
+
'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Conkeldurr', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dracozolt',
|
|
616
|
+
'Eternatus', 'Excadrill', 'Genesect', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kyogre', 'Kyurem-Black',
|
|
617
|
+
'Kyurem-White', 'Landorus-Base', 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings',
|
|
618
|
+
'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Porygon-Z', 'Rayquaza', 'Reshiram', 'Solgaleo', 'Spectrier', 'Urshifu-Base',
|
|
619
|
+
'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta-Base', 'Zekrom', 'Zygarde-Base', 'Power Construct',
|
|
620
|
+
'Baton Pass', 'King\'s Rock',
|
|
634
621
|
// Moody users
|
|
635
622
|
'Glalie', 'Octillery', 'Remoraid', 'Snorunt',
|
|
636
623
|
// Shadow Tag/Arena Trap
|
|
@@ -781,7 +768,8 @@ exports.Formats = [
|
|
|
781
768
|
restricted: [
|
|
782
769
|
'Calyrex-Ice', 'Dialga', 'Eternatus', 'Gengar', 'Giratina', 'Groudon', 'Ho-Oh', 'Kyurem-Black', 'Kyurem-White',
|
|
783
770
|
'Lugia', 'Lunala', 'Marshadow', 'Melmetal', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane',
|
|
784
|
-
'Palkia', 'Rayquaza', 'Regigigas', 'Reshiram', 'Urshifu
|
|
771
|
+
'Palkia', 'Pheromosa', 'Rayquaza', 'Regigigas', 'Reshiram', 'Urshifu', 'Urshifu-Rapid-Strike', 'Xerneas',
|
|
772
|
+
'Yveltal', 'Zekrom', 'Zygarde-Complete',
|
|
785
773
|
],
|
|
786
774
|
onValidateTeam(team) {
|
|
787
775
|
const itemTable = new Set();
|
|
@@ -831,16 +819,18 @@ exports.Formats = [
|
|
|
831
819
|
desc: `Pokémon can use any move of their typing, in addition to the moves they can normally learn.`,
|
|
832
820
|
threads: [
|
|
833
821
|
`• <a href="https://www.smogon.com/forums/threads/3656429/">STABmons</a>`,
|
|
822
|
+
`• <a href="https://www.smogon.com/forums/threads/3695169/">STABmons Resources</a>`,
|
|
834
823
|
],
|
|
835
824
|
mod: 'gen8',
|
|
836
|
-
ruleset: ['Standard', 'STABmons Move Legality', 'Dynamax Clause', 'Sleep Moves Clause'],
|
|
825
|
+
ruleset: ['Standard', 'STABmons Move Legality', 'Dynamax Clause', 'Sleep Moves Clause', '!Sleep Clause Mod'],
|
|
837
826
|
banlist: [
|
|
838
|
-
'Aegislash', 'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragapult', 'Dragonite',
|
|
839
|
-
'Garchomp', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem-Black',
|
|
840
|
-
'
|
|
841
|
-
'
|
|
842
|
-
'
|
|
843
|
-
'Power Construct', 'Shadow Tag', 'King\'s Rock',
|
|
827
|
+
'Aegislash', 'Blacephalon', 'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragapult', 'Dragonite',
|
|
828
|
+
'Eternatus', 'Genesect', 'Garchomp', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem-Black',
|
|
829
|
+
'Kyurem-White', 'Landorus', 'Landorus-Therian', 'Lugia', 'Lunala', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings',
|
|
830
|
+
'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Porygon-Z', 'Rayquaza', 'Reshiram', 'Silvally', 'Solgaleo', 'Spectrier', 'Tapu Bulu',
|
|
831
|
+
'Tapu Koko', 'Thundurus-Base', 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned',
|
|
832
|
+
'Zapdos-Galar', 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Magnet Pull', 'Moody', 'Power Construct', 'Shadow Tag', 'King\'s Rock',
|
|
833
|
+
'Baton Pass',
|
|
844
834
|
],
|
|
845
835
|
restricted: [
|
|
846
836
|
'Acupressure', 'Astral Barrage', 'Belly Drum', 'Bolt Beak', 'Clangorous Soul', 'Double Iron Bash', 'Electrify', 'Extreme Speed', 'Fishious Rend',
|
|
@@ -954,7 +944,8 @@ exports.Formats = [
|
|
|
954
944
|
name: "[Gen 8 BDSP] OU",
|
|
955
945
|
threads: [
|
|
956
946
|
`• <a href="https://www.smogon.com/forums/threads/3693629/">BDSP OU Metagame Discussion</a>`,
|
|
957
|
-
`• <a href="https://www.smogon.com/forums/threads/
|
|
947
|
+
`• <a href="https://www.smogon.com/forums/threads/3693721/">BDSP OU Sample Teams</a>`,
|
|
948
|
+
`• <a href="https://www.smogon.com/forums/threads/3696088/">BDSP OU Viability Rankings</a>`,
|
|
958
949
|
],
|
|
959
950
|
mod: 'gen8bdsp',
|
|
960
951
|
ruleset: ['Standard'],
|
|
@@ -992,10 +983,12 @@ exports.Formats = [
|
|
|
992
983
|
},
|
|
993
984
|
{
|
|
994
985
|
name: "[Gen 8 BDSP] LC",
|
|
986
|
+
threads: [
|
|
987
|
+
`• <a href="https://www.smogon.com/forums/threads/3696004/">BDSP LC</a>`,
|
|
988
|
+
],
|
|
995
989
|
mod: 'gen8bdsp',
|
|
996
|
-
searchShow: false,
|
|
997
990
|
ruleset: ['Little Cup', 'Standard'],
|
|
998
|
-
banlist: ['Gligar', 'Meditite', 'Misdreavus', 'Murkrow', 'Scyther', 'Sneasel', 'Tangela', 'Yanma', 'Baton Pass'],
|
|
991
|
+
banlist: ['Gligar', 'Meditite', 'Misdreavus', 'Murkrow', 'Scyther', 'Sneasel', 'Tangela', 'Vulpix', 'Yanma', 'Baton Pass'],
|
|
999
992
|
},
|
|
1000
993
|
{
|
|
1001
994
|
name: "[Gen 8 BDSP] Monotype",
|
|
@@ -1900,7 +1893,8 @@ exports.Formats = [
|
|
|
1900
1893
|
desc: `Randomized teams of level-balanced Pokémon with absolutely any ability, moves, and item.`,
|
|
1901
1894
|
mod: 'gen8',
|
|
1902
1895
|
team: 'randomHC',
|
|
1903
|
-
ruleset: ['
|
|
1896
|
+
ruleset: ['HP Percentage Mod', 'Cancel Mod'],
|
|
1897
|
+
banlist: ['Nonexistent'],
|
|
1904
1898
|
},
|
|
1905
1899
|
{
|
|
1906
1900
|
name: "[Gen 8] Doubles Hackmons Cup",
|
|
@@ -1908,7 +1902,8 @@ exports.Formats = [
|
|
|
1908
1902
|
gameType: 'doubles',
|
|
1909
1903
|
team: 'randomHC',
|
|
1910
1904
|
searchShow: false,
|
|
1911
|
-
ruleset: ['
|
|
1905
|
+
ruleset: ['HP Percentage Mod', 'Cancel Mod'],
|
|
1906
|
+
banlist: ['Nonexistent'],
|
|
1912
1907
|
},
|
|
1913
1908
|
{
|
|
1914
1909
|
name: "[Gen 8] CAP 1v1",
|
|
@@ -1977,6 +1972,7 @@ exports.Formats = [
|
|
|
1977
1972
|
team: 'randomHC',
|
|
1978
1973
|
searchShow: false,
|
|
1979
1974
|
ruleset: ['HP Percentage Mod', 'Cancel Mod'],
|
|
1975
|
+
banlist: ['Nonexistent'],
|
|
1980
1976
|
},
|
|
1981
1977
|
{
|
|
1982
1978
|
name: "[Gen 7 Let's Go] Random Battle",
|
|
@@ -2043,6 +2039,7 @@ exports.Formats = [
|
|
|
2043
2039
|
team: 'randomHC',
|
|
2044
2040
|
searchShow: false,
|
|
2045
2041
|
ruleset: ['HP Percentage Mod', 'Cancel Mod', 'Desync Clause Mod', 'Sleep Clause Mod', 'Freeze Clause Mod', 'Team Type Preview'],
|
|
2042
|
+
banlist: ['Nonexistent'],
|
|
2046
2043
|
onModifySpecies(species, target, source, effect) {
|
|
2047
2044
|
if (!target)
|
|
2048
2045
|
return;
|
|
@@ -2131,8 +2128,8 @@ exports.Formats = [
|
|
|
2131
2128
|
`• <a href="https://www.smogon.com/forums/threads/3668699/">BW2 OU Viability Rankings</a>`,
|
|
2132
2129
|
],
|
|
2133
2130
|
mod: 'gen5',
|
|
2134
|
-
ruleset: ['Standard', 'Evasion Abilities Clause', '
|
|
2135
|
-
banlist: ['Uber', 'Arena Trap', 'Drizzle ++ Swift Swim', 'Drought ++ Chlorophyll', 'Sand Rush', 'Shadow Tag', 'King\'s Rock', 'Razor Fang', 'Soul Dew', 'Assist'],
|
|
2131
|
+
ruleset: ['Standard', 'Evasion Abilities Clause', 'Sleep Moves Clause', 'Swagger Clause'],
|
|
2132
|
+
banlist: ['Uber', 'Arena Trap', 'Drizzle ++ Swift Swim', 'Drought ++ Chlorophyll', 'Sand Rush', 'Shadow Tag', 'King\'s Rock', 'Razor Fang', 'Soul Dew', 'Assist', 'Baton Pass'],
|
|
2136
2133
|
},
|
|
2137
2134
|
{
|
|
2138
2135
|
name: "[Gen 4] OU",
|
|
@@ -2304,13 +2301,7 @@ exports.Formats = [
|
|
|
2304
2301
|
],
|
|
2305
2302
|
mod: 'gen5',
|
|
2306
2303
|
ruleset: ['[Gen 5] PU'],
|
|
2307
|
-
banlist: [
|
|
2308
|
-
'Audino', 'Banette', 'Beheeyem', 'Bronzor', 'Dodrio', 'Duosion', 'Dwebble', 'Ferroseed', 'Fraxure', 'Gabite', 'Golduck', 'Glalie',
|
|
2309
|
-
'Huntail', 'Jumpluff', 'Klang', 'Krokorok', 'Machoke', 'Mantine', 'Maractus', 'Marowak', 'Mawile', 'Monferno', 'Murkrow', 'Natu',
|
|
2310
|
-
'Omanyte', 'Purugly', 'Rampardos', 'Rapidash', 'Regigigas', 'Relicanth', 'Scraggy', 'Shiftry', 'Sneasel', 'Simisage', 'Stoutland',
|
|
2311
|
-
'Stunfisk', 'Swanna', 'Swoobat', 'Tentacool', 'Torterra', 'Trubbish', 'Ursaring', 'Victreebel', 'Vileplume', 'Volbeat', 'Whirlipede',
|
|
2312
|
-
'Wynaut', 'Zebstrika', 'Zweilous', 'Baton Pass',
|
|
2313
|
-
],
|
|
2304
|
+
banlist: ['PU', 'Dragonair', 'Glalie', 'Machoke', 'Marowak', 'Omanyte', 'Regigigas', 'Trubbish', 'Whirlipede', 'Baton Pass'],
|
|
2314
2305
|
},
|
|
2315
2306
|
// US/UM Singles
|
|
2316
2307
|
///////////////////////////////////////////////////////////////////
|
|
@@ -2902,7 +2893,7 @@ exports.Formats = [
|
|
|
2902
2893
|
mod: 'gen5',
|
|
2903
2894
|
searchShow: false,
|
|
2904
2895
|
ruleset: ['[Gen 5] NU', 'Sleep Moves Clause'],
|
|
2905
|
-
banlist: ['NU', '
|
|
2896
|
+
banlist: ['NU', 'PUBL'],
|
|
2906
2897
|
},
|
|
2907
2898
|
{
|
|
2908
2899
|
name: "[Gen 5] Monotype",
|
|
@@ -3259,7 +3250,10 @@ exports.Formats = [
|
|
|
3259
3250
|
'Picked Team Size = 1', 'Max Team Size = 3',
|
|
3260
3251
|
'[Gen 2] OU', 'Accuracy Moves Clause', 'Sleep Moves Clause', 'Team Preview',
|
|
3261
3252
|
],
|
|
3262
|
-
banlist: [
|
|
3253
|
+
banlist: [
|
|
3254
|
+
'Clefable', 'Snorlax', 'Zapdos', 'Berserk Gene', 'Bright Powder', 'Focus Band', 'King\'s Rock', 'Quick Claw',
|
|
3255
|
+
'Attract', 'Destiny Bond', 'Explosion', 'Perish Song', 'Present', 'Self-Destruct', 'Swagger',
|
|
3256
|
+
],
|
|
3263
3257
|
},
|
|
3264
3258
|
{
|
|
3265
3259
|
name: "[Gen 2] Nintendo Cup 2000",
|