@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/config/formats.ts
CHANGED
|
@@ -143,7 +143,7 @@ export const Formats: FormatList = [
|
|
|
143
143
|
|
|
144
144
|
mod: 'gen8',
|
|
145
145
|
ruleset: ['[Gen 8] RU'],
|
|
146
|
-
banlist: ['RU', 'NUBL', 'Drizzle', 'Drought'],
|
|
146
|
+
banlist: ['RU', 'NUBL', 'Drizzle', 'Drought', 'Slush Rush'],
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
149
|
name: "[Gen 8] PU",
|
|
@@ -234,7 +234,7 @@ export const Formats: FormatList = [
|
|
|
234
234
|
mod: 'gen8',
|
|
235
235
|
ruleset: ['[Gen 8] PU'],
|
|
236
236
|
banlist: [
|
|
237
|
-
'PU', 'Centiskorch', 'Drampa', 'Exeggutor-Alola', 'Gallade', 'Haunter', 'Magmortar', 'Magneton', 'Omastar', 'Rotom-Frost',
|
|
237
|
+
'PU', 'Aurorus', 'Centiskorch', 'Drampa', 'Exeggutor-Alola', 'Gallade', 'Haunter', 'Magmortar', 'Magneton', 'Omastar', 'Rotom-Frost',
|
|
238
238
|
'Turtonator', 'Vanilluxe', 'Vikavolt', 'Silvally-Dragon', 'Silvally-Ground', 'Sneasel', 'Damp Rock', 'Grassy Seed',
|
|
239
239
|
],
|
|
240
240
|
},
|
|
@@ -296,21 +296,6 @@ export const Formats: FormatList = [
|
|
|
296
296
|
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8', 'Limit Two Restricted'],
|
|
297
297
|
restricted: ['Restricted Legendary'],
|
|
298
298
|
},
|
|
299
|
-
{
|
|
300
|
-
name: "[Gen 8] Test Your Luck!",
|
|
301
|
-
threads: [
|
|
302
|
-
`• <a href="https://www.smogon.com/forums/threads/3695144/">Test Your Luck! Discussion</a>`,
|
|
303
|
-
],
|
|
304
|
-
|
|
305
|
-
mod: 'gen8',
|
|
306
|
-
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'VGC Timer', 'Min Source Gen = 8'],
|
|
307
|
-
banlist: ['Azelf', 'Mesprit', 'Uxie'],
|
|
308
|
-
onValidateSet(set, format) {
|
|
309
|
-
if (set.moves.length !== 1 || this.dex.moves.get(set.moves[0]).id !== 'metronome') {
|
|
310
|
-
return [`${set.name || set.species} has illegal moves.`, `(${format.name} only allows the move Metronome)`];
|
|
311
|
-
}
|
|
312
|
-
},
|
|
313
|
-
},
|
|
314
299
|
{
|
|
315
300
|
name: "[Gen 8] Custom Game",
|
|
316
301
|
|
|
@@ -511,14 +496,15 @@ export const Formats: FormatList = [
|
|
|
511
496
|
mod: 'gen8',
|
|
512
497
|
ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Dynamax Clause', 'Sleep Clause Mod'],
|
|
513
498
|
banlist: [
|
|
514
|
-
'Alakazam-Mega', 'Arceus', 'Blastoise-Mega', 'Blaziken-Mega', 'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Darkrai',
|
|
515
|
-
'Deoxys-Attack', 'Deoxys-Base', 'Deoxys-Speed', 'Dialga', 'Dracovish', 'Dragapult', 'Eternatus',
|
|
516
|
-
'
|
|
517
|
-
'
|
|
518
|
-
'
|
|
519
|
-
'
|
|
520
|
-
'
|
|
521
|
-
'
|
|
499
|
+
'Alakazam-Mega', 'Arceus', 'Blastoise-Mega', 'Blaziken-Mega', 'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Darkrai',
|
|
500
|
+
'Darmanitan-Galar', 'Deoxys-Attack', 'Deoxys-Base', 'Deoxys-Speed', 'Dialga', 'Dracovish', 'Dragapult', 'Eternatus',
|
|
501
|
+
'Genesect', 'Gengar-Mega', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kangaskhan-Mega', 'Kyogre', 'Kyurem-Black',
|
|
502
|
+
'Kyurem-White', 'Landorus-Base', 'Lucario-Mega', 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Metagross-Mega', 'Mewtwo',
|
|
503
|
+
'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Necrozma-Ultra', 'Palkia', 'Pheromosa', 'Rayquaza', 'Reshiram',
|
|
504
|
+
'Salamence-Mega', 'Shaymin-Sky', 'Solgaleo', 'Spectrier', 'Tornadus-Therian', 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian',
|
|
505
|
+
'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Zygarde-Base', 'Zygarde-Complete', 'Arena Trap', 'Moody',
|
|
506
|
+
'Power Construct', 'Sand Veil', 'Shadow Tag', 'Snow Cloak', 'Bright Powder', 'King\'s Rock', 'Lax Incense', 'Razor Fang',
|
|
507
|
+
'Quick Claw', 'Baton Pass',
|
|
522
508
|
],
|
|
523
509
|
},
|
|
524
510
|
{
|
|
@@ -605,7 +591,7 @@ export const Formats: FormatList = [
|
|
|
605
591
|
'Pikachu-Belle', 'Pikachu-Idol', 'Pikachu-PhD', 'Pikachu-Libre', 'Pikachu-Partner', 'Pikachu-Starter', 'Darmanitan', 'Darmanitan-Zen', 'Darmanitan-Galar', 'Darmanitan-Galar-Zen',
|
|
606
592
|
'Aegishield', 'Aegislash', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Rotom', 'Rotom-Heat', 'Rotom-Wash', 'Rotom-Frost', 'Rotom-Fan', 'Rotom-Mow', 'Dugtrio',
|
|
607
593
|
'Dugtrio-Alola', 'Muk', 'Muk-Oilslick', 'Slowbro', 'Slowbro-Galar', 'Slowking', 'Slowking-Galar', 'Tornadus', 'Cummulus', 'Thundurus', 'Thundurus-Therian', 'Landorus', 'Landorus-Bengal',
|
|
608
|
-
'Vivillon-Fancy', 'Vivillon
|
|
594
|
+
'Vivillon-Fancy', 'Vivillon', 'Vivillon-Pokeball', 'Genesect', 'Genesect-Password', 'Genesect-Molten', 'Genesect-Freezer', 'Genesect-Type-Delta', 'Groudon', 'Groudon-Primal', 'Kyogre',
|
|
609
595
|
'Kyogre-Primal', 'Deoxys-Wood', 'Deoxys-Gem', 'Deoxys-Tank', 'Deoxys-Speed', 'Sandslash-Lustrous', 'Sandslash-Alola', 'Ninetales-Steamwork', 'Ninetales-Alola', 'Giratina', 'Giratina-Shadow',
|
|
610
596
|
'Eternatus', 'Manustorm', 'Exeggutor', 'Exeggutor-Lighthouse', 'Weezing', 'Weezing-King', 'Raticate', 'Raticate-Alola', 'Linoone', 'Linoone-Punk', 'Catastroform', 'Castform-Firestorm',
|
|
611
597
|
'Castform-Thunderstorm', 'Castform-Snowy', 'Wormadam', 'Wormadam-Sandy', 'Fibormadam', 'Farfetch\u2019d', 'Farfetch\u2019d-Galar', 'Corsola', 'Corsoul', 'Shaymin', 'Shaymin-Sky', 'Keldeo',
|
|
@@ -635,18 +621,17 @@ export const Formats: FormatList = [
|
|
|
635
621
|
|
|
636
622
|
mod: 'randomdex',
|
|
637
623
|
ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Dynamax Clause', 'Sleep Clause Mod'],
|
|
638
|
-
banlist: ['All Pokemon', 'Past', 'Arena Trap', 'Moody', 'Shadow Tag', 'Baton Pass', 'Bright Powder', 'Lax Incense', 'King\'s Rock',
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
"Volbeat", "Whimsicott", "Zarude"],
|
|
624
|
+
banlist: ['All Pokemon', 'Past', 'Arena Trap', 'Moody', 'Shadow Tag', 'Baton Pass', 'Bright Powder', 'Lax Incense', 'King\'s Rock', 'Razor Fang', 'Kangaskhanite', 'Medichamite', 'Kommonium Z'],
|
|
625
|
+
unbanlist: [
|
|
626
|
+
'Absol', 'Absol-Mega', 'Appletun', 'Articuno', 'Aurorus', 'Basculin', 'Beartic', 'Bisharp', 'Calyrex', 'Camerupt', 'Camerupt-Mega',
|
|
627
|
+
'Celesteela', 'Cloyster', 'Crawdaunt', 'Cursola', 'Dedenne', 'Delibird', 'Eelektross', 'Espeon', 'Flapple', 'Flareon', 'Flygon',
|
|
628
|
+
'Galvantula', 'Girafarig', 'Glaceon', 'Goodra', 'Gourgeist', 'Grimmsnarl', 'Guzzlord', 'Heliolisk', 'Hitmonchan', 'Hitmonlee',
|
|
629
|
+
'Hitmontop', 'Incineroar', 'Indeedee', 'Jolteon', 'Kangaskhan', 'Kommo-o', 'Lanturn', 'Leafeon', 'Leavanny', 'Ludicolo', 'Lunatone',
|
|
630
|
+
'Luvdisc', 'Machamp', 'Mandibuzz', 'Medicham', 'Nihilego', 'Palossand', 'Pidgeot', 'Pidgeot-Mega', 'Probopass', 'Pyroar', 'Sawk',
|
|
631
|
+
'Sceptile', 'Sceptile-Mega', 'Scolipede', 'Shiftry', 'Simisage', 'Slowbro', 'Slowbro-Mega', 'Slowking', 'Swoobat', 'Sylveon',
|
|
632
|
+
'Tapu Bulu', 'Tapu Fini', 'Tauros', 'Typhlosion', 'Umbreon', 'Ursaring', 'Vaporeon', 'Whiscash', 'Wishiwashi', 'Zebstrika', 'Absolite',
|
|
633
|
+
'Pidgeotite', 'Sceptilite', 'Cameruptite', 'Slowbronite',
|
|
634
|
+
],
|
|
650
635
|
},
|
|
651
636
|
{
|
|
652
637
|
name: "[Gen 6] NEXT OU",
|
|
@@ -677,11 +662,12 @@ export const Formats: FormatList = [
|
|
|
677
662
|
mod: 'pokebilities',
|
|
678
663
|
ruleset: ['Standard', 'Dynamax Clause'],
|
|
679
664
|
banlist: [
|
|
680
|
-
'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Darmanitan-Galar', 'Dialga', 'Dracovish', '
|
|
681
|
-
'Genesect', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kyogre', 'Kyurem-Black',
|
|
682
|
-
'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings',
|
|
683
|
-
'Pheromosa', 'Porygon-Z', 'Rayquaza', 'Reshiram', 'Solgaleo', 'Spectrier', 'Urshifu-Base',
|
|
684
|
-
'Zacian-Crowned', 'Zamazenta-Base', 'Zekrom', 'Zygarde-Base', 'Power Construct',
|
|
665
|
+
'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Conkeldurr', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dracozolt',
|
|
666
|
+
'Eternatus', 'Excadrill', 'Genesect', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kyogre', 'Kyurem-Black',
|
|
667
|
+
'Kyurem-White', 'Landorus-Base', 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings',
|
|
668
|
+
'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Porygon-Z', 'Rayquaza', 'Reshiram', 'Solgaleo', 'Spectrier', 'Urshifu-Base',
|
|
669
|
+
'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta-Base', 'Zekrom', 'Zygarde-Base', 'Power Construct',
|
|
670
|
+
'Baton Pass', 'King\'s Rock',
|
|
685
671
|
// Moody users
|
|
686
672
|
'Glalie', 'Octillery', 'Remoraid', 'Snorunt',
|
|
687
673
|
// Shadow Tag/Arena Trap
|
|
@@ -836,7 +822,8 @@ export const Formats: FormatList = [
|
|
|
836
822
|
restricted: [
|
|
837
823
|
'Calyrex-Ice', 'Dialga', 'Eternatus', 'Gengar', 'Giratina', 'Groudon', 'Ho-Oh', 'Kyurem-Black', 'Kyurem-White',
|
|
838
824
|
'Lugia', 'Lunala', 'Marshadow', 'Melmetal', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane',
|
|
839
|
-
'Palkia', 'Rayquaza', 'Regigigas', 'Reshiram', 'Urshifu
|
|
825
|
+
'Palkia', 'Pheromosa', 'Rayquaza', 'Regigigas', 'Reshiram', 'Urshifu', 'Urshifu-Rapid-Strike', 'Xerneas',
|
|
826
|
+
'Yveltal', 'Zekrom', 'Zygarde-Complete',
|
|
840
827
|
],
|
|
841
828
|
onValidateTeam(team) {
|
|
842
829
|
const itemTable = new Set<ID>();
|
|
@@ -884,17 +871,19 @@ export const Formats: FormatList = [
|
|
|
884
871
|
desc: `Pokémon can use any move of their typing, in addition to the moves they can normally learn.`,
|
|
885
872
|
threads: [
|
|
886
873
|
`• <a href="https://www.smogon.com/forums/threads/3656429/">STABmons</a>`,
|
|
874
|
+
`• <a href="https://www.smogon.com/forums/threads/3695169/">STABmons Resources</a>`,
|
|
887
875
|
],
|
|
888
876
|
|
|
889
877
|
mod: 'gen8',
|
|
890
|
-
ruleset: ['Standard', 'STABmons Move Legality', 'Dynamax Clause', 'Sleep Moves Clause'],
|
|
878
|
+
ruleset: ['Standard', 'STABmons Move Legality', 'Dynamax Clause', 'Sleep Moves Clause', '!Sleep Clause Mod'],
|
|
891
879
|
banlist: [
|
|
892
|
-
'Aegislash', 'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragapult', 'Dragonite',
|
|
893
|
-
'Garchomp', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem-Black',
|
|
894
|
-
'
|
|
895
|
-
'
|
|
896
|
-
'
|
|
897
|
-
'Power Construct', 'Shadow Tag', 'King\'s Rock',
|
|
880
|
+
'Aegislash', 'Blacephalon', 'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragapult', 'Dragonite',
|
|
881
|
+
'Eternatus', 'Genesect', 'Garchomp', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem-Black',
|
|
882
|
+
'Kyurem-White', 'Landorus', 'Landorus-Therian', 'Lugia', 'Lunala', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings',
|
|
883
|
+
'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Porygon-Z', 'Rayquaza', 'Reshiram', 'Silvally', 'Solgaleo', 'Spectrier', 'Tapu Bulu',
|
|
884
|
+
'Tapu Koko', 'Thundurus-Base', 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned',
|
|
885
|
+
'Zapdos-Galar', 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Magnet Pull', 'Moody', 'Power Construct', 'Shadow Tag', 'King\'s Rock',
|
|
886
|
+
'Baton Pass',
|
|
898
887
|
],
|
|
899
888
|
restricted: [
|
|
900
889
|
'Acupressure', 'Astral Barrage', 'Belly Drum', 'Bolt Beak', 'Clangorous Soul', 'Double Iron Bash', 'Electrify', 'Extreme Speed', 'Fishious Rend',
|
|
@@ -1009,7 +998,8 @@ export const Formats: FormatList = [
|
|
|
1009
998
|
name: "[Gen 8 BDSP] OU",
|
|
1010
999
|
threads: [
|
|
1011
1000
|
`• <a href="https://www.smogon.com/forums/threads/3693629/">BDSP OU Metagame Discussion</a>`,
|
|
1012
|
-
`• <a href="https://www.smogon.com/forums/threads/
|
|
1001
|
+
`• <a href="https://www.smogon.com/forums/threads/3693721/">BDSP OU Sample Teams</a>`,
|
|
1002
|
+
`• <a href="https://www.smogon.com/forums/threads/3696088/">BDSP OU Viability Rankings</a>`,
|
|
1013
1003
|
],
|
|
1014
1004
|
|
|
1015
1005
|
mod: 'gen8bdsp',
|
|
@@ -1051,11 +1041,13 @@ export const Formats: FormatList = [
|
|
|
1051
1041
|
},
|
|
1052
1042
|
{
|
|
1053
1043
|
name: "[Gen 8 BDSP] LC",
|
|
1044
|
+
threads: [
|
|
1045
|
+
`• <a href="https://www.smogon.com/forums/threads/3696004/">BDSP LC</a>`,
|
|
1046
|
+
],
|
|
1054
1047
|
|
|
1055
1048
|
mod: 'gen8bdsp',
|
|
1056
|
-
searchShow: false,
|
|
1057
1049
|
ruleset: ['Little Cup', 'Standard'],
|
|
1058
|
-
banlist: ['Gligar', 'Meditite', 'Misdreavus', 'Murkrow', 'Scyther', 'Sneasel', 'Tangela', 'Yanma', 'Baton Pass'],
|
|
1050
|
+
banlist: ['Gligar', 'Meditite', 'Misdreavus', 'Murkrow', 'Scyther', 'Sneasel', 'Tangela', 'Vulpix', 'Yanma', 'Baton Pass'],
|
|
1059
1051
|
},
|
|
1060
1052
|
{
|
|
1061
1053
|
name: "[Gen 8 BDSP] Monotype",
|
|
@@ -1962,7 +1954,8 @@ export const Formats: FormatList = [
|
|
|
1962
1954
|
|
|
1963
1955
|
mod: 'gen8',
|
|
1964
1956
|
team: 'randomHC',
|
|
1965
|
-
ruleset: ['
|
|
1957
|
+
ruleset: ['HP Percentage Mod', 'Cancel Mod'],
|
|
1958
|
+
banlist: ['Nonexistent'],
|
|
1966
1959
|
},
|
|
1967
1960
|
{
|
|
1968
1961
|
name: "[Gen 8] Doubles Hackmons Cup",
|
|
@@ -1971,7 +1964,8 @@ export const Formats: FormatList = [
|
|
|
1971
1964
|
gameType: 'doubles',
|
|
1972
1965
|
team: 'randomHC',
|
|
1973
1966
|
searchShow: false,
|
|
1974
|
-
ruleset: ['
|
|
1967
|
+
ruleset: ['HP Percentage Mod', 'Cancel Mod'],
|
|
1968
|
+
banlist: ['Nonexistent'],
|
|
1975
1969
|
},
|
|
1976
1970
|
{
|
|
1977
1971
|
name: "[Gen 8] CAP 1v1",
|
|
@@ -2047,6 +2041,7 @@ export const Formats: FormatList = [
|
|
|
2047
2041
|
team: 'randomHC',
|
|
2048
2042
|
searchShow: false,
|
|
2049
2043
|
ruleset: ['HP Percentage Mod', 'Cancel Mod'],
|
|
2044
|
+
banlist: ['Nonexistent'],
|
|
2050
2045
|
},
|
|
2051
2046
|
{
|
|
2052
2047
|
name: "[Gen 7 Let's Go] Random Battle",
|
|
@@ -2123,6 +2118,7 @@ export const Formats: FormatList = [
|
|
|
2123
2118
|
team: 'randomHC',
|
|
2124
2119
|
searchShow: false,
|
|
2125
2120
|
ruleset: ['HP Percentage Mod', 'Cancel Mod', 'Desync Clause Mod', 'Sleep Clause Mod', 'Freeze Clause Mod', 'Team Type Preview'],
|
|
2121
|
+
banlist: ['Nonexistent'],
|
|
2126
2122
|
onModifySpecies(species, target, source, effect) {
|
|
2127
2123
|
if (!target) return;
|
|
2128
2124
|
return {...species, ...(target.set as any).hc};
|
|
@@ -2219,8 +2215,8 @@ export const Formats: FormatList = [
|
|
|
2219
2215
|
],
|
|
2220
2216
|
|
|
2221
2217
|
mod: 'gen5',
|
|
2222
|
-
ruleset: ['Standard', 'Evasion Abilities Clause', '
|
|
2223
|
-
banlist: ['Uber', 'Arena Trap', 'Drizzle ++ Swift Swim', 'Drought ++ Chlorophyll', 'Sand Rush', 'Shadow Tag', 'King\'s Rock', 'Razor Fang', 'Soul Dew', 'Assist'],
|
|
2218
|
+
ruleset: ['Standard', 'Evasion Abilities Clause', 'Sleep Moves Clause', 'Swagger Clause'],
|
|
2219
|
+
banlist: ['Uber', 'Arena Trap', 'Drizzle ++ Swift Swim', 'Drought ++ Chlorophyll', 'Sand Rush', 'Shadow Tag', 'King\'s Rock', 'Razor Fang', 'Soul Dew', 'Assist', 'Baton Pass'],
|
|
2224
2220
|
},
|
|
2225
2221
|
{
|
|
2226
2222
|
name: "[Gen 4] OU",
|
|
@@ -2401,13 +2397,7 @@ export const Formats: FormatList = [
|
|
|
2401
2397
|
|
|
2402
2398
|
mod: 'gen5',
|
|
2403
2399
|
ruleset: ['[Gen 5] PU'],
|
|
2404
|
-
banlist: [
|
|
2405
|
-
'Audino', 'Banette', 'Beheeyem', 'Bronzor', 'Dodrio', 'Duosion', 'Dwebble', 'Ferroseed', 'Fraxure', 'Gabite', 'Golduck', 'Glalie',
|
|
2406
|
-
'Huntail', 'Jumpluff', 'Klang', 'Krokorok', 'Machoke', 'Mantine', 'Maractus', 'Marowak', 'Mawile', 'Monferno', 'Murkrow', 'Natu',
|
|
2407
|
-
'Omanyte', 'Purugly', 'Rampardos', 'Rapidash', 'Regigigas', 'Relicanth', 'Scraggy', 'Shiftry', 'Sneasel', 'Simisage', 'Stoutland',
|
|
2408
|
-
'Stunfisk', 'Swanna', 'Swoobat', 'Tentacool', 'Torterra', 'Trubbish', 'Ursaring', 'Victreebel', 'Vileplume', 'Volbeat', 'Whirlipede',
|
|
2409
|
-
'Wynaut', 'Zebstrika', 'Zweilous', 'Baton Pass',
|
|
2410
|
-
],
|
|
2400
|
+
banlist: ['PU', 'Dragonair', 'Glalie', 'Machoke', 'Marowak', 'Omanyte', 'Regigigas', 'Trubbish', 'Whirlipede', 'Baton Pass'],
|
|
2411
2401
|
},
|
|
2412
2402
|
|
|
2413
2403
|
// US/UM Singles
|
|
@@ -3053,7 +3043,7 @@ export const Formats: FormatList = [
|
|
|
3053
3043
|
mod: 'gen5',
|
|
3054
3044
|
searchShow: false,
|
|
3055
3045
|
ruleset: ['[Gen 5] NU', 'Sleep Moves Clause'],
|
|
3056
|
-
banlist: ['NU', '
|
|
3046
|
+
banlist: ['NU', 'PUBL'],
|
|
3057
3047
|
},
|
|
3058
3048
|
{
|
|
3059
3049
|
name: "[Gen 5] Monotype",
|
|
@@ -3450,7 +3440,10 @@ export const Formats: FormatList = [
|
|
|
3450
3440
|
'Picked Team Size = 1', 'Max Team Size = 3',
|
|
3451
3441
|
'[Gen 2] OU', 'Accuracy Moves Clause', 'Sleep Moves Clause', 'Team Preview',
|
|
3452
3442
|
],
|
|
3453
|
-
banlist: [
|
|
3443
|
+
banlist: [
|
|
3444
|
+
'Clefable', 'Snorlax', 'Zapdos', 'Berserk Gene', 'Bright Powder', 'Focus Band', 'King\'s Rock', 'Quick Claw',
|
|
3445
|
+
'Attract', 'Destiny Bond', 'Explosion', 'Perish Song', 'Present', 'Self-Destruct', 'Swagger',
|
|
3446
|
+
],
|
|
3454
3447
|
},
|
|
3455
3448
|
{
|
|
3456
3449
|
name: "[Gen 2] Nintendo Cup 2000",
|