@pkmn/sim 0.4.23 → 0.5.0
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 +175 -112
- package/build/config/formats.js.map +1 -1
- package/build/data/aliases.js +5 -3
- package/build/data/aliases.js.map +1 -1
- package/build/data/conditions.js +1 -0
- package/build/data/conditions.js.map +1 -1
- package/build/data/formats-data.js +15 -7
- package/build/data/formats-data.js.map +1 -1
- package/build/data/items.js +24 -0
- package/build/data/items.js.map +1 -1
- package/build/data/learnsets.js +34 -0
- package/build/data/learnsets.js.map +1 -1
- package/build/data/mods/gen2/formats-data.js +2 -2
- package/build/data/mods/gen2/formats-data.js.map +1 -1
- package/build/data/mods/gen3/formats-data.js +1 -1
- package/build/data/mods/gen3/formats-data.js.map +1 -1
- package/build/data/mods/gen6/pokedex.js +17 -17
- package/build/data/mods/gen6/pokedex.js.map +1 -1
- package/build/data/moves.js +1 -0
- package/build/data/moves.js.map +1 -1
- package/build/data/pokedex.js +33 -0
- package/build/data/pokedex.js.map +1 -1
- package/build/data/text/items.js +4 -0
- package/build/data/text/items.js.map +1 -1
- package/build/sim/battle-actions.js +1 -1
- package/build/sim/battle-actions.js.map +1 -1
- package/build/sim/dex-formats.js +1 -1
- package/build/sim/dex-formats.js.map +1 -1
- package/build/sim/dex-species.js +4 -3
- package/build/sim/dex-species.js.map +1 -1
- package/build/sim/tools/runner.d.ts +1 -6
- package/build/sim/tools/runner.js +6 -6
- package/build/sim/tools/runner.js.map +1 -1
- package/config/formats.ts +181 -115
- package/data/aliases.ts +5 -3
- package/data/conditions.ts +1 -0
- package/data/formats-data.ts +15 -7
- package/data/items.ts +24 -0
- package/data/learnsets.ts +34 -0
- package/data/mods/gen2/formats-data.ts +2 -2
- package/data/mods/gen3/formats-data.ts +1 -1
- package/data/mods/gen6/pokedex.ts +17 -17
- package/data/moves.ts +1 -0
- package/data/pokedex.ts +33 -0
- package/data/text/items.ts +4 -0
- package/package.json +1 -1
- package/sim/battle-actions.ts +1 -1
- package/sim/dex-formats.ts +1 -1
- package/sim/dex-species.ts +4 -3
- package/sim/tools/runner.ts +2 -0
package/build/config/formats.js
CHANGED
|
@@ -129,7 +129,7 @@ exports.Formats = [
|
|
|
129
129
|
],
|
|
130
130
|
mod: 'gen8',
|
|
131
131
|
ruleset: ['[Gen 8] RU'],
|
|
132
|
-
banlist: ['RU', 'NUBL', 'Drizzle', 'Drought'
|
|
132
|
+
banlist: ['RU', 'NUBL', 'Drizzle', 'Drought'],
|
|
133
133
|
},
|
|
134
134
|
{
|
|
135
135
|
name: "[Gen 8] PU",
|
|
@@ -151,7 +151,7 @@ exports.Formats = [
|
|
|
151
151
|
mod: 'gen8',
|
|
152
152
|
ruleset: ['Little Cup', 'Standard', 'Dynamax Clause'],
|
|
153
153
|
banlist: [
|
|
154
|
-
'Corsola-Galar', 'Cutiefly', 'Drifloon', 'Gastly', 'Gothita', 'Rufflet', 'Scraggy', 'Scyther', 'Sneasel', 'Swirlix', 'Tangela', 'Vullaby', 'Vulpix-Alola', 'Woobat',
|
|
154
|
+
'Corsola-Galar', 'Cutiefly', 'Drifloon', 'Gastly', 'Gothita', 'Rufflet', 'Scraggy', 'Scyther', 'Sneasel', 'Swirlix', 'Tangela', 'Vullaby', 'Vulpix-Alola', 'Woobat', 'Zigzagoon-Base',
|
|
155
155
|
'Chlorophyll', 'Moody', 'Baton Pass', 'Sticky Web',
|
|
156
156
|
],
|
|
157
157
|
},
|
|
@@ -213,7 +213,10 @@ exports.Formats = [
|
|
|
213
213
|
],
|
|
214
214
|
mod: 'gen8',
|
|
215
215
|
ruleset: ['[Gen 8] PU'],
|
|
216
|
-
banlist: [
|
|
216
|
+
banlist: [
|
|
217
|
+
'PU', 'Centiskorch', 'Drampa', 'Exeggutor-Alola', 'Gallade', 'Haunter', 'Magmortar', 'Magneton', 'Omastar', 'Rotom-Frost',
|
|
218
|
+
'Turtonator', 'Vanilluxe', 'Vikavolt', 'Silvally-Dragon', 'Silvally-Ground', 'Sneasel', 'Damp Rock', 'Grassy Seed',
|
|
219
|
+
],
|
|
217
220
|
},
|
|
218
221
|
{
|
|
219
222
|
name: "[Gen 8] LC UU",
|
|
@@ -253,6 +256,7 @@ exports.Formats = [
|
|
|
253
256
|
mod: 'gen8',
|
|
254
257
|
searchShow: false,
|
|
255
258
|
ruleset: ['[Gen 8] LC', '+CAP'],
|
|
259
|
+
banlist: ['Cawdet'],
|
|
256
260
|
},
|
|
257
261
|
{
|
|
258
262
|
name: "[Gen 8] Battle Stadium Singles",
|
|
@@ -336,11 +340,32 @@ exports.Formats = [
|
|
|
336
340
|
},
|
|
337
341
|
{
|
|
338
342
|
name: "[Gen 8] VGC 2021 Series 11",
|
|
343
|
+
threads: [
|
|
344
|
+
`• <a href="https://www.smogon.com/forums/threads/3677186/">VGC 2021 Series 11 Metagame Discussion</a>`,
|
|
345
|
+
`• <a href="https://www.smogon.com/forums/threads/3693427/">VGC 2021 Series 11 Sample Teams</a>`,
|
|
346
|
+
`• <a href="https://www.smogon.com/forums/threads/3693284/">VGC 2021 Series 11 Viability Rankings</a>`,
|
|
347
|
+
],
|
|
339
348
|
mod: 'gen8',
|
|
340
349
|
gameType: 'doubles',
|
|
341
350
|
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8', 'VGC Timer', 'Limit One Restricted'],
|
|
342
351
|
restricted: ['Restricted Legendary'],
|
|
343
352
|
},
|
|
353
|
+
{
|
|
354
|
+
name: "[Gen 8] Tiny Tourney",
|
|
355
|
+
threads: [
|
|
356
|
+
`• <a href="https://www.smogon.com/forums/threads/3694047/">Tiny Tourney Metagame Discussion</a>`,
|
|
357
|
+
],
|
|
358
|
+
mod: 'gen8',
|
|
359
|
+
gameType: 'doubles',
|
|
360
|
+
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8'],
|
|
361
|
+
onValidateSet(set) {
|
|
362
|
+
const species = this.dex.species.get(set.species);
|
|
363
|
+
if (!species.nfe || species.prevo)
|
|
364
|
+
return [`Non-first-stage Pok\u00e9mon cannot be used in Tiny Tourney.`];
|
|
365
|
+
if (species.heightm > 1)
|
|
366
|
+
return [`${species.name} is too tall to be used in Tiny Tourney.`];
|
|
367
|
+
},
|
|
368
|
+
},
|
|
344
369
|
{
|
|
345
370
|
name: "[Gen 8] VGC 2021 Series 9",
|
|
346
371
|
mod: 'gen8',
|
|
@@ -558,42 +583,35 @@ exports.Formats = [
|
|
|
558
583
|
column: 2,
|
|
559
584
|
},
|
|
560
585
|
{
|
|
561
|
-
name: "[Gen 8]
|
|
562
|
-
desc: `
|
|
586
|
+
name: "[Gen 8] Revelationmons",
|
|
587
|
+
desc: `The moves in the first slot(s) of a Pokémon's set have their types changed to match the Pokémon's type(s).`,
|
|
563
588
|
threads: [
|
|
564
|
-
`• <a href="https://www.smogon.com/forums/threads/
|
|
589
|
+
`• <a href="https://www.smogon.com/forums/threads/3692297/">Revelationmons</a>`,
|
|
565
590
|
],
|
|
566
591
|
mod: 'gen8',
|
|
567
|
-
ruleset: ['Standard', 'Dynamax Clause', '
|
|
592
|
+
ruleset: ['Standard', 'Dynamax Clause', 'Revelationmons Mod', 'Sleep Moves Clause'],
|
|
568
593
|
banlist: [
|
|
569
|
-
'Calyrex-Ice', 'Calyrex-Shadow', '
|
|
570
|
-
'Giratina', 'Giratina-Origin', 'Groudon', '
|
|
571
|
-
'
|
|
572
|
-
'
|
|
573
|
-
'
|
|
574
|
-
'
|
|
575
|
-
],
|
|
576
|
-
restricted: [
|
|
577
|
-
'Acupressure', 'Astral Barrage', 'Belly Drum', 'Bolt Beak', 'Clangorous Soul', 'Double Iron Bash', 'Electrify', 'Extreme Speed',
|
|
578
|
-
'Fishious Rend', 'Geomancy', 'Glacial Lance', 'Lovely Kiss', 'No Retreat', 'Oblivion Wing', 'Octolock', 'Quiver Dance', 'Secret Sword',
|
|
579
|
-
'Shell Smash', 'Shift Gear', 'Sleep Powder', 'Spore', 'Thousand Arrows', 'Transform', 'V-create', 'Wicked Blow',
|
|
594
|
+
'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragonite', 'Dragapult', 'Eternatus', 'Genesect',
|
|
595
|
+
'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kommo-o', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base', 'Lugia',
|
|
596
|
+
'Lunala', 'Magearna', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Noivern', 'Palkia',
|
|
597
|
+
'Pheromosa', 'Rayquaza', 'Reshiram', 'Solgaleo', 'Spectrier', 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned',
|
|
598
|
+
'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Magnet Pull', 'Moody', 'Power Construct', 'Shadow Tag',
|
|
599
|
+
'King\'s Rock', 'Baton Pass',
|
|
580
600
|
],
|
|
601
|
+
restricted: ['Bolt Beak', 'U-turn', 'Volt Switch'],
|
|
581
602
|
},
|
|
582
603
|
{
|
|
583
|
-
name: "[Gen 8]
|
|
584
|
-
desc: `
|
|
604
|
+
name: "[Gen 8 BDSP] Balanced Hackmons",
|
|
605
|
+
desc: `Anything that can be hacked in-game and is usable in local battles is allowed.`,
|
|
585
606
|
threads: [
|
|
586
|
-
`• <a href="https://www.smogon.com/forums/posts/
|
|
607
|
+
`• <a href="https://www.smogon.com/forums/posts/9043074">BDSP Balanced Hackmons</a>`,
|
|
587
608
|
],
|
|
588
|
-
mod: '
|
|
589
|
-
|
|
590
|
-
ruleset: ['[Gen 8] Doubles OU', 'Sleep Clause Mod', '2 Ability Clause', '!Obtainable Abilities'],
|
|
609
|
+
mod: 'gen8bdsp',
|
|
610
|
+
ruleset: ['-Nonexistent', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Moves Clause', 'Endless Battle Clause'],
|
|
591
611
|
banlist: [
|
|
592
|
-
'
|
|
593
|
-
'
|
|
594
|
-
'
|
|
595
|
-
'Simple', 'Soul-Heart', 'Stakeout', 'Steam Engine', 'Speed Boost', 'Water Bubble', 'Water Compaction', 'Wonder Guard', 'King\'s Rock',
|
|
596
|
-
'Weakness Policy', 'Beat Up', 'Stored Power',
|
|
612
|
+
'Shedinja', 'Arena Trap', 'Contrary', 'Gorilla Tactics', 'Huge Power', 'Illusion', 'Innards Out', 'Intrepid Sword',
|
|
613
|
+
'Magnet Pull', 'Moody', 'Neutralizing Gas', 'Parental Bond', 'Pure Power', 'Shadow Tag', 'Stakeout', 'Water Bubble',
|
|
614
|
+
'Wonder Guard', 'Comatose + Sleep Talk', 'Shell Smash',
|
|
597
615
|
],
|
|
598
616
|
},
|
|
599
617
|
// Other Metagames
|
|
@@ -737,12 +755,12 @@ exports.Formats = [
|
|
|
737
755
|
mod: 'gen8',
|
|
738
756
|
ruleset: ['Standard', 'STABmons Move Legality', 'Dynamax Clause', 'Sleep Moves Clause'],
|
|
739
757
|
banlist: [
|
|
740
|
-
'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragapult', '
|
|
741
|
-
'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus', 'Landorus-Therian',
|
|
742
|
-
'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Porygon-Z',
|
|
743
|
-
'Silvally', 'Solgaleo', 'Spectrier', 'Tapu Bulu', 'Tapu Koko', 'Thundurus-Base', 'Urshifu-Base', 'Xerneas', 'Yveltal',
|
|
744
|
-
'Zamazenta', 'Zamazenta-Crowned', 'Zapdos-Galar', 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Magnet Pull', 'Moody',
|
|
745
|
-
'King\'s Rock', 'Baton Pass',
|
|
758
|
+
'Aegislash', 'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragapult', 'Dragonite', 'Eternatus', 'Genesect',
|
|
759
|
+
'Garchomp', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus', 'Landorus-Therian',
|
|
760
|
+
'Lugia', 'Lunala', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Porygon-Z',
|
|
761
|
+
'Rayquaza', 'Reshiram', 'Silvally', 'Solgaleo', 'Spectrier', 'Tapu Bulu', 'Tapu Koko', 'Thundurus-Base', 'Urshifu-Base', 'Xerneas', 'Yveltal',
|
|
762
|
+
'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zapdos-Galar', 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Magnet Pull', 'Moody',
|
|
763
|
+
'Power Construct', 'Shadow Tag', 'King\'s Rock', 'Baton Pass',
|
|
746
764
|
],
|
|
747
765
|
restricted: [
|
|
748
766
|
'Acupressure', 'Astral Barrage', 'Belly Drum', 'Bolt Beak', 'Clangorous Soul', 'Double Iron Bash', 'Electrify', 'Extreme Speed', 'Fishious Rend',
|
|
@@ -788,12 +806,12 @@ exports.Formats = [
|
|
|
788
806
|
{
|
|
789
807
|
name: "[Gen 8 BDSP] Random Battle",
|
|
790
808
|
desc: `Randomized teams of level-balanced Pokémon with sets that are generated to be competitively viable.`,
|
|
809
|
+
threads: [
|
|
810
|
+
`• <a href="https://www.smogon.com/forums/threads/3693955/">BDSP Random Battle Set Discussion</a>`,
|
|
811
|
+
],
|
|
791
812
|
mod: 'gen8bdsp',
|
|
792
813
|
team: 'random',
|
|
793
|
-
|
|
794
|
-
challengeShow: false,
|
|
795
|
-
tournamentShow: false,
|
|
796
|
-
ruleset: ['[Gen 8] Random Battle'],
|
|
814
|
+
ruleset: ['[Gen 8] Random Battle', '!PotD'],
|
|
797
815
|
},
|
|
798
816
|
{
|
|
799
817
|
name: "[Gen 8 BDSP] OU",
|
|
@@ -805,26 +823,69 @@ exports.Formats = [
|
|
|
805
823
|
ruleset: ['Standard'],
|
|
806
824
|
banlist: ['Uber', 'Arena Trap', 'Drizzle', 'Moody', 'Shadow Tag', 'King\'s Rock', 'Razor Fang', 'Baton Pass'],
|
|
807
825
|
},
|
|
826
|
+
{
|
|
827
|
+
name: "[Gen 8 BDSP] Ubers",
|
|
828
|
+
threads: [
|
|
829
|
+
`• <a href="https://www.smogon.com/forums/threads/3694036/">BDSP Ubers Discussion & Resources</a>`,
|
|
830
|
+
],
|
|
831
|
+
mod: 'gen8bdsp',
|
|
832
|
+
ruleset: ['Standard'],
|
|
833
|
+
banlist: ['AG', 'Baton Pass'],
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
name: "[Gen 8 BDSP] UU",
|
|
837
|
+
threads: [
|
|
838
|
+
`• <a href="https://www.smogon.com/forums/threads/3694307/">BDSP UU</a>`,
|
|
839
|
+
],
|
|
840
|
+
mod: 'gen8bdsp',
|
|
841
|
+
ruleset: ['[Gen 8 BDSP] OU'],
|
|
842
|
+
banlist: ['OU', 'UUBL'],
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
name: "[Gen 8 BDSP] Monotype",
|
|
846
|
+
threads: [
|
|
847
|
+
`• <a href="https://www.smogon.com/forums/threads/3694267/">BDSP Monotype</a>`,
|
|
848
|
+
],
|
|
849
|
+
mod: 'gen8bdsp',
|
|
850
|
+
ruleset: ['Standard', 'Same Type Clause'],
|
|
851
|
+
banlist: [
|
|
852
|
+
'Dialga', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kyogre', 'Lugia', 'Mewtwo', 'Palkia', 'Rayquaza',
|
|
853
|
+
'Arena Trap', 'Moody', 'Shadow Tag', 'Damp Rock', 'King\'s Rock', 'Razor Fang', 'Baton Pass',
|
|
854
|
+
],
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
name: "[Gen 8 BDSP] CAP",
|
|
858
|
+
threads: [
|
|
859
|
+
`• <a href="https://www.smogon.com/forums/threads/3694238/">BDSP CAP</a>`,
|
|
860
|
+
],
|
|
861
|
+
mod: 'gen8bdsp',
|
|
862
|
+
searchShow: false,
|
|
863
|
+
ruleset: ['[Gen 8 BDSP] OU', '+CAP'],
|
|
864
|
+
},
|
|
808
865
|
{
|
|
809
866
|
name: "[Gen 8 BDSP] Doubles OU",
|
|
867
|
+
threads: [
|
|
868
|
+
`• <a href="https://www.smogon.com/forums/threads/3693891/">BDSP Doubles OU</a>`,
|
|
869
|
+
],
|
|
810
870
|
mod: 'gen8bdsp',
|
|
811
871
|
gameType: 'doubles',
|
|
812
|
-
searchShow: false,
|
|
813
872
|
ruleset: ['Standard Doubles'],
|
|
814
873
|
banlist: ['DUber'],
|
|
815
874
|
},
|
|
816
875
|
{
|
|
817
876
|
name: "[Gen 8 BDSP] Battle Festival Doubles",
|
|
877
|
+
threads: [
|
|
878
|
+
`• <a href="https://www.smogon.com/forums/threads/3694269/">Battle Festival Doubles</a>`,
|
|
879
|
+
],
|
|
818
880
|
mod: 'gen8bdsp',
|
|
819
881
|
gameType: 'doubles',
|
|
820
|
-
|
|
821
|
-
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8', 'VGC Timer'],
|
|
882
|
+
ruleset: ['Flat Rules', 'Min Source Gen = 8'],
|
|
822
883
|
},
|
|
823
884
|
{
|
|
824
885
|
name: "[Gen 8 BDSP] Pure Hackmons",
|
|
825
886
|
desc: `Anything that can be hacked in-game and is usable in local battles is allowed.`,
|
|
826
887
|
threads: [
|
|
827
|
-
`• <a href="https://www.smogon.com/forums/threads/
|
|
888
|
+
`• <a href="https://www.smogon.com/forums/threads/3693868/">Pure Hackmons</a>`,
|
|
828
889
|
],
|
|
829
890
|
mod: 'gen8bdsp',
|
|
830
891
|
searchShow: false,
|
|
@@ -846,9 +907,9 @@ exports.Formats = [
|
|
|
846
907
|
banlist: [
|
|
847
908
|
'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragonite', 'Eternatus', 'Genesect', 'Giratina', 'Giratina-Origin', 'Groudon',
|
|
848
909
|
'Ho-Oh', 'Hydreigon', 'Kartana', 'Kyogre', 'Kyurem', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base', 'Latias', 'Latios', 'Lugia', 'Lunala', 'Marshadow',
|
|
849
|
-
'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Rayquaza', 'Reshiram', '
|
|
850
|
-
'Tornadus-Therian', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom',
|
|
851
|
-
'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag', 'Baton Pass',
|
|
910
|
+
'Mew', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Rayquaza', 'Reshiram', 'Reuniclus', 'Shedinja',
|
|
911
|
+
'Slowking-Galar', 'Solgaleo', 'Spectrier', 'Tornadus-Therian', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom',
|
|
912
|
+
'Zeraora', 'Zygarde-Base', 'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag', 'Baton Pass',
|
|
852
913
|
],
|
|
853
914
|
onModifySpeciesPriority: 2,
|
|
854
915
|
onModifySpecies(species, target, source, effect) {
|
|
@@ -876,8 +937,9 @@ exports.Formats = [
|
|
|
876
937
|
searchShow: false,
|
|
877
938
|
ruleset: ['Standard', 'Dynamax Clause'],
|
|
878
939
|
banlist: [
|
|
879
|
-
'Blissey', 'Calyrex-Shadow', 'Chansey', 'Hawlucha', 'Marowak-Alola', 'Melmetal', 'Pikachu', 'Toxapex',
|
|
880
|
-
'Uber > 1', 'AG ++ Uber > 1', 'Arena Trap', 'Huge Power', 'Moody', 'Pure Power',
|
|
940
|
+
'Blissey', 'Calyrex-Shadow', 'Chansey', 'Dragapult', 'Hawlucha', 'Marowak-Alola', 'Melmetal', 'Pikachu', 'Toxapex',
|
|
941
|
+
'Xerneas', 'Zacian', 'Zacian-Crowned', 'Uber > 1', 'AG ++ Uber > 1', 'Arena Trap', 'Huge Power', 'Moody', 'Pure Power',
|
|
942
|
+
'Shadow Tag', 'Baton Pass',
|
|
881
943
|
],
|
|
882
944
|
onValidateTeam(team) {
|
|
883
945
|
const gods = new Set();
|
|
@@ -1928,37 +1990,47 @@ exports.Formats = [
|
|
|
1928
1990
|
column: 3,
|
|
1929
1991
|
},
|
|
1930
1992
|
{
|
|
1931
|
-
name: "[Gen
|
|
1993
|
+
name: "[Gen 1] UU",
|
|
1932
1994
|
threads: [
|
|
1933
|
-
`• <a href="https://www.smogon.com/forums/
|
|
1995
|
+
`• <a href="https://www.smogon.com/forums/threads/3573896/">RBY UU Metagame Discussion</a>`,
|
|
1996
|
+
`• <a href="https://www.smogon.com/forums/threads/3647713/">RBY UU Viability Rankings</a>`,
|
|
1934
1997
|
],
|
|
1935
|
-
mod: '
|
|
1998
|
+
mod: 'gen1',
|
|
1936
1999
|
// searchShow: false,
|
|
1937
|
-
ruleset: ['
|
|
2000
|
+
ruleset: ['[Gen 1] OU'],
|
|
2001
|
+
banlist: ['OU', 'UUBL'],
|
|
1938
2002
|
},
|
|
1939
2003
|
{
|
|
1940
|
-
name: "[Gen
|
|
2004
|
+
name: "[Gen 6] 1v1",
|
|
2005
|
+
desc: `Bring three Pokémon to Team Preview and choose one to battle.`,
|
|
1941
2006
|
threads: [
|
|
1942
|
-
`• <a href="https://www.smogon.com/forums/
|
|
1943
|
-
`• <a href="https://www.smogon.com/forums/threads/3503638/">DPP UU Viability Rankings</a>`,
|
|
2007
|
+
`• <a href="https://www.smogon.com/forums/posts/8031459/">ORAS 1v1</a>`,
|
|
1944
2008
|
],
|
|
1945
|
-
mod: '
|
|
2009
|
+
mod: 'gen6',
|
|
1946
2010
|
// searchShow: false,
|
|
1947
|
-
ruleset: [
|
|
1948
|
-
|
|
1949
|
-
|
|
2011
|
+
ruleset: [
|
|
2012
|
+
'Max Team Size = 3', 'Picked Team Size = 1',
|
|
2013
|
+
'Obtainable', 'Nickname Clause', 'Moody Clause', 'OHKO Clause', 'Evasion Moves Clause', 'Accuracy Moves Clause', 'Swagger Clause', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod', 'Team Preview',
|
|
2014
|
+
],
|
|
2015
|
+
banlist: [
|
|
2016
|
+
'Arceus', 'Blaziken', 'Darkrai', 'Deoxys-Base', 'Deoxys-Attack', 'Deoxys-Defense', 'Dialga', 'Giratina',
|
|
2017
|
+
'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kangaskhan-Mega', 'Kyogre', 'Kyurem-White', 'Lugia', 'Mewtwo',
|
|
2018
|
+
'Palkia', 'Rayquaza', 'Reshiram', 'Salamence-Mega', 'Shaymin-Sky', 'Xerneas', 'Yveltal', 'Zekrom',
|
|
2019
|
+
'Focus Sash', 'Soul Dew', 'Perish Song',
|
|
2020
|
+
],
|
|
1950
2021
|
},
|
|
1951
2022
|
{
|
|
1952
|
-
name: "[Gen
|
|
2023
|
+
name: "[Gen 5] Doubles OU",
|
|
1953
2024
|
threads: [
|
|
1954
|
-
`• <a href="https://www.smogon.com/forums/threads/
|
|
2025
|
+
`• <a href="https://www.smogon.com/forums/threads/3606719/">BW2 Doubles Metagame Discussion</a>`,
|
|
2026
|
+
`• <a href="https://www.smogon.com/forums/posts/7393048/">BW2 Doubles Viability Rankings</a>`,
|
|
2027
|
+
`• <a href="https://www.smogon.com/forums/posts/7393081/">BW2 Doubles Sample Teams</a>`,
|
|
1955
2028
|
],
|
|
1956
|
-
mod: '
|
|
1957
|
-
// searchShow: false,
|
|
2029
|
+
mod: 'gen5',
|
|
1958
2030
|
gameType: 'doubles',
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
2031
|
+
// searchShow: false,
|
|
2032
|
+
ruleset: ['Standard', 'Evasion Abilities Clause', 'Swagger Clause', 'Sleep Clause Mod'],
|
|
2033
|
+
banlist: ['DUber', 'Soul Dew', 'Dark Void', 'Gravity'],
|
|
1962
2034
|
},
|
|
1963
2035
|
// Past Gens OU
|
|
1964
2036
|
///////////////////////////////////////////////////////////////////
|
|
@@ -2052,7 +2124,7 @@ exports.Formats = [
|
|
|
2052
2124
|
`• <a href="https://www.smogon.com/forums/posts/8407209/">USM Balanced Hackmons</a>`,
|
|
2053
2125
|
],
|
|
2054
2126
|
mod: 'gen7',
|
|
2055
|
-
ruleset: ['-Nonexistent', '2 Ability Clause', 'OHKO Clause', 'Evasion Moves Clause', 'CFZ Clause', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Clause Mod', 'Endless Battle Clause'],
|
|
2127
|
+
ruleset: ['-Nonexistent', '2 Ability Clause', 'OHKO Clause', 'Evasion Moves Clause', 'Forme Clause', 'CFZ Clause', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Clause Mod', 'Endless Battle Clause'],
|
|
2056
2128
|
banlist: [
|
|
2057
2129
|
'Groudon-Primal', 'Rayquaza-Mega', 'Gengarite', 'Comatose + Sleep Talk', 'Chatter',
|
|
2058
2130
|
'Arena Trap', 'Contrary', 'Huge Power', 'Illusion', 'Innards Out', 'Magnet Pull', 'Moody', 'Parental Bond', 'Protean', 'Psychic Surge', 'Pure Power', 'Shadow Tag', 'Stakeout', 'Water Bubble', 'Wonder Guard',
|
|
@@ -2252,7 +2324,8 @@ exports.Formats = [
|
|
|
2252
2324
|
'Groudon', 'Ho-Oh', 'Hoopa-Unbound', 'Kangaskhan-Mega', 'Kartana', 'Kyogre', 'Kyurem-White', 'Lucario-Mega', 'Lugia', 'Lunala', 'Magearna',
|
|
2253
2325
|
'Marshadow', 'Mawile-Mega', 'Medicham-Mega', 'Metagross-Mega', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia',
|
|
2254
2326
|
'Pheromosa', 'Rayquaza', 'Reshiram', 'Salamence-Mega', 'Shaymin-Sky', 'Solgaleo', 'Tapu Lele', 'Xerneas', 'Yveltal', 'Zekrom', 'Zygarde',
|
|
2255
|
-
'Battle Bond', 'Shadow Tag', 'Damp Rock', '
|
|
2327
|
+
'Battle Bond', 'Shadow Tag', 'Bright Powder', 'Damp Rock', 'Focus Band', 'King\'s Rock', 'Lax Incense', 'Quick Claw', 'Razor Fang',
|
|
2328
|
+
'Smooth Rock', 'Terrain Extender', 'Baton Pass',
|
|
2256
2329
|
],
|
|
2257
2330
|
},
|
|
2258
2331
|
{
|
|
@@ -2459,6 +2532,15 @@ exports.Formats = [
|
|
|
2459
2532
|
section: "OR/AS Singles",
|
|
2460
2533
|
column: 4,
|
|
2461
2534
|
},
|
|
2535
|
+
{
|
|
2536
|
+
name: "[Gen 6] Ubers",
|
|
2537
|
+
threads: [
|
|
2538
|
+
`• <a href="https://www.smogon.com/forums/posts/8286277/">ORAS Ubers</a>`,
|
|
2539
|
+
],
|
|
2540
|
+
mod: 'gen6',
|
|
2541
|
+
searchShow: false,
|
|
2542
|
+
ruleset: ['Standard', 'Swagger Clause', 'Mega Rayquaza Clause'],
|
|
2543
|
+
},
|
|
2462
2544
|
{
|
|
2463
2545
|
name: "[Gen 6] UU",
|
|
2464
2546
|
threads: [
|
|
@@ -2535,25 +2617,6 @@ exports.Formats = [
|
|
|
2535
2617
|
'Soul Dew', 'Baton Pass',
|
|
2536
2618
|
],
|
|
2537
2619
|
},
|
|
2538
|
-
{
|
|
2539
|
-
name: "[Gen 6] 1v1",
|
|
2540
|
-
desc: `Bring three Pokémon to Team Preview and choose one to battle.`,
|
|
2541
|
-
threads: [
|
|
2542
|
-
`• <a href="https://www.smogon.com/forums/posts/8031459/">ORAS 1v1</a>`,
|
|
2543
|
-
],
|
|
2544
|
-
mod: 'gen6',
|
|
2545
|
-
searchShow: false,
|
|
2546
|
-
ruleset: [
|
|
2547
|
-
'Max Team Size = 3', 'Picked Team Size = 1',
|
|
2548
|
-
'Obtainable', 'Nickname Clause', 'Moody Clause', 'OHKO Clause', 'Evasion Moves Clause', 'Accuracy Moves Clause', 'Swagger Clause', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod', 'Team Preview',
|
|
2549
|
-
],
|
|
2550
|
-
banlist: [
|
|
2551
|
-
'Arceus', 'Blaziken', 'Darkrai', 'Deoxys-Base', 'Deoxys-Attack', 'Deoxys-Defense', 'Dialga', 'Giratina',
|
|
2552
|
-
'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kangaskhan-Mega', 'Kyogre', 'Kyurem-White', 'Lugia', 'Mewtwo',
|
|
2553
|
-
'Palkia', 'Rayquaza', 'Reshiram', 'Salamence-Mega', 'Shaymin-Sky', 'Xerneas', 'Yveltal', 'Zekrom',
|
|
2554
|
-
'Focus Sash', 'Soul Dew', 'Perish Song',
|
|
2555
|
-
],
|
|
2556
|
-
},
|
|
2557
2620
|
{
|
|
2558
2621
|
name: "[Gen 6] Anything Goes",
|
|
2559
2622
|
threads: [
|
|
@@ -2790,7 +2853,7 @@ exports.Formats = [
|
|
|
2790
2853
|
'Picked Team Size = 1', 'Max Team Size = 3',
|
|
2791
2854
|
'Standard', 'Baton Pass Clause', 'Swagger Clause',
|
|
2792
2855
|
],
|
|
2793
|
-
banlist: ['Uber', 'Cottonee', 'Dragonite', 'Kyurem-Black', 'Togekiss', 'Whimsicott', 'Victini', 'Bright Powder', 'Focus Band', 'Focus Sash', 'Lax Incense', 'Quick Claw', 'Soul Dew', 'Perish Song'],
|
|
2856
|
+
banlist: ['Uber', 'Cottonee', 'Dragonite', 'Kyurem-Black', 'Mew', 'Togekiss', 'Whimsicott', 'Victini', 'Bright Powder', 'Focus Band', 'Focus Sash', 'Lax Incense', 'Quick Claw', 'Soul Dew', 'Perish Song'],
|
|
2794
2857
|
unbanlist: ['Genesect', 'Landorus', 'Manaphy', 'Thundurus', 'Tornadus-Therian'],
|
|
2795
2858
|
},
|
|
2796
2859
|
{
|
|
@@ -2815,19 +2878,6 @@ exports.Formats = [
|
|
|
2815
2878
|
section: 'B2/W2 Doubles',
|
|
2816
2879
|
column: 4,
|
|
2817
2880
|
},
|
|
2818
|
-
{
|
|
2819
|
-
name: "[Gen 5] Doubles OU",
|
|
2820
|
-
threads: [
|
|
2821
|
-
`• <a href="https://www.smogon.com/forums/threads/3606719/">BW2 Doubles Metagame Discussion</a>`,
|
|
2822
|
-
`• <a href="https://www.smogon.com/forums/posts/7393048/">BW2 Doubles Viability Rankings</a>`,
|
|
2823
|
-
`• <a href="https://www.smogon.com/forums/posts/7393081/">BW2 Doubles Sample Teams</a>`,
|
|
2824
|
-
],
|
|
2825
|
-
mod: 'gen5',
|
|
2826
|
-
gameType: 'doubles',
|
|
2827
|
-
searchShow: false,
|
|
2828
|
-
ruleset: ['Standard', 'Evasion Abilities Clause', 'Swagger Clause', 'Sleep Clause Mod'],
|
|
2829
|
-
banlist: ['DUber', 'Soul Dew', 'Dark Void', 'Gravity'],
|
|
2830
|
-
},
|
|
2831
2881
|
{
|
|
2832
2882
|
name: "[Gen 5] VGC 2013",
|
|
2833
2883
|
mod: 'gen5',
|
|
@@ -2888,6 +2938,18 @@ exports.Formats = [
|
|
|
2888
2938
|
ruleset: ['Standard'],
|
|
2889
2939
|
banlist: ['AG'],
|
|
2890
2940
|
},
|
|
2941
|
+
{
|
|
2942
|
+
name: "[Gen 4] UU",
|
|
2943
|
+
threads: [
|
|
2944
|
+
`• <a href="https://www.smogon.com/forums/threads/3532624/">DPP UU Metagame Discussion</a>`,
|
|
2945
|
+
`• <a href="https://www.smogon.com/forums/threads/3503638/">DPP UU Viability Rankings</a>`,
|
|
2946
|
+
],
|
|
2947
|
+
mod: 'gen4',
|
|
2948
|
+
searchShow: false,
|
|
2949
|
+
ruleset: ['[Gen 4] OU'],
|
|
2950
|
+
banlist: ['OU', 'UUBL'],
|
|
2951
|
+
unbanlist: ['Arena Trap'],
|
|
2952
|
+
},
|
|
2891
2953
|
{
|
|
2892
2954
|
name: "[Gen 4] NU",
|
|
2893
2955
|
threads: [
|
|
@@ -3042,6 +3104,18 @@ exports.Formats = [
|
|
|
3042
3104
|
banlist: ['UU'],
|
|
3043
3105
|
unbanlist: ['Baton Pass'],
|
|
3044
3106
|
},
|
|
3107
|
+
{
|
|
3108
|
+
name: "[Gen 3] Doubles OU",
|
|
3109
|
+
threads: [
|
|
3110
|
+
`• <a href="https://www.smogon.com/forums/threads/3666831/">ADV Doubles OU</a>`,
|
|
3111
|
+
],
|
|
3112
|
+
mod: 'gen3',
|
|
3113
|
+
searchShow: false,
|
|
3114
|
+
gameType: 'doubles',
|
|
3115
|
+
ruleset: ['Standard', '!Sleep Clause Mod', '!Switch Priority Clause Mod'],
|
|
3116
|
+
banlist: ['Uber'],
|
|
3117
|
+
unbanlist: ['Deoxys-Speed', 'Wobbuffet', 'Wynaut'],
|
|
3118
|
+
},
|
|
3045
3119
|
{
|
|
3046
3120
|
name: "[Gen 3] 1v1",
|
|
3047
3121
|
desc: `Bring three Pokémon to Team Preview and choose one to battle.`,
|
|
@@ -3149,17 +3223,6 @@ exports.Formats = [
|
|
|
3149
3223
|
searchShow: false,
|
|
3150
3224
|
ruleset: ['Standard'],
|
|
3151
3225
|
},
|
|
3152
|
-
{
|
|
3153
|
-
name: "[Gen 1] UU",
|
|
3154
|
-
threads: [
|
|
3155
|
-
`• <a href="https://www.smogon.com/forums/threads/3573896/">RBY UU Metagame Discussion</a>`,
|
|
3156
|
-
`• <a href="https://www.smogon.com/forums/threads/3647713/">RBY UU Viability Rankings</a>`,
|
|
3157
|
-
],
|
|
3158
|
-
mod: 'gen1',
|
|
3159
|
-
searchShow: false,
|
|
3160
|
-
ruleset: ['[Gen 1] OU'],
|
|
3161
|
-
banlist: ['OU', 'UUBL'],
|
|
3162
|
-
},
|
|
3163
3226
|
{
|
|
3164
3227
|
name: "[Gen 1] NU",
|
|
3165
3228
|
threads: [
|