@pkmn/sim 0.4.21 → 0.4.25
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 +198 -136
- 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 +5 -1
- package/build/data/conditions.js.map +1 -1
- package/build/data/formats-data.js +16 -16
- package/build/data/formats-data.js.map +1 -1
- package/build/data/mods/gen1/scripts.js +17 -20
- package/build/data/mods/gen1/scripts.js.map +1 -1
- package/build/data/mods/gen2/scripts.js +15 -21
- package/build/data/mods/gen2/scripts.js.map +1 -1
- package/build/data/mods/gen4/conditions.js +6 -0
- package/build/data/mods/gen4/conditions.js.map +1 -1
- package/build/data/mods/gen6/conditions.js +4 -1
- package/build/data/mods/gen6/conditions.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/mods/gen7/formats-data.js +2 -2
- package/build/data/mods/gen7/formats-data.js.map +1 -1
- package/build/data/moves.js +22 -9
- package/build/data/moves.js.map +1 -1
- package/build/data/rulesets.js +3 -1
- package/build/data/rulesets.js.map +1 -1
- package/build/lib/streams.d.ts +1 -199
- package/build/lib/streams.js +11 -772
- package/build/lib/streams.js.map +1 -1
- package/build/sim/battle-actions.d.ts +1 -1
- package/build/sim/battle-actions.js +19 -43
- package/build/sim/battle-actions.js.map +1 -1
- package/build/sim/battle.d.ts +1 -0
- package/build/sim/battle.js +5 -0
- package/build/sim/battle.js.map +1 -1
- package/build/sim/dex-moves.d.ts +31 -11
- package/build/sim/dex-moves.js +4 -3
- package/build/sim/dex-moves.js.map +1 -1
- package/build/sim/dex-species.js +11 -1
- package/build/sim/dex-species.js.map +1 -1
- package/build/sim/exported-global-types.d.ts +1 -0
- package/build/sim/global-types.d.ts +1 -0
- package/build/sim/side.js +2 -2
- package/build/sim/side.js.map +1 -1
- package/build/sim/team-validator.js +1 -1
- package/build/sim/team-validator.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 +210 -141
- package/data/aliases.ts +5 -3
- package/data/conditions.ts +5 -1
- package/data/formats-data.ts +16 -16
- package/data/mods/gen1/scripts.ts +22 -18
- package/data/mods/gen2/scripts.ts +19 -18
- package/data/mods/gen4/conditions.ts +6 -0
- package/data/mods/gen6/conditions.ts +4 -1
- package/data/mods/gen6/pokedex.ts +17 -17
- package/data/mods/gen7/formats-data.ts +2 -2
- package/data/moves.ts +19 -9
- package/data/rulesets.ts +3 -1
- package/lib/streams.ts +1 -874
- package/package.json +3 -2
- package/sim/battle-actions.ts +20 -41
- package/sim/battle.ts +6 -0
- package/sim/dex-moves.ts +35 -13
- package/sim/dex-species.ts +10 -1
- package/sim/exported-global-types.ts +1 -0
- package/sim/global-types.ts +1 -0
- package/sim/side.ts +2 -2
- package/sim/team-validator.ts +1 -1
- package/sim/tools/runner.ts +2 -0
package/build/config/formats.js
CHANGED
|
@@ -52,6 +52,12 @@ exports.Formats = [
|
|
|
52
52
|
rated: false,
|
|
53
53
|
ruleset: ['Obtainable', 'Species Clause', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Clause Mod'],
|
|
54
54
|
},
|
|
55
|
+
{
|
|
56
|
+
name: "[Gen 8] Random Battle (Blitz)",
|
|
57
|
+
mod: 'gen8',
|
|
58
|
+
team: 'random',
|
|
59
|
+
ruleset: ['[Gen 8] Random Battle', 'Blitz'],
|
|
60
|
+
},
|
|
55
61
|
{
|
|
56
62
|
name: "[Gen 8] Multi Random Battle",
|
|
57
63
|
mod: 'gen8',
|
|
@@ -123,7 +129,8 @@ exports.Formats = [
|
|
|
123
129
|
],
|
|
124
130
|
mod: 'gen8',
|
|
125
131
|
ruleset: ['[Gen 8] RU'],
|
|
126
|
-
banlist: ['RU', 'NUBL', 'Drizzle', 'Drought'
|
|
132
|
+
banlist: ['RU', 'NUBL', 'Drizzle', 'Drought'],
|
|
133
|
+
unbanlist: ['Indeedee'],
|
|
127
134
|
},
|
|
128
135
|
{
|
|
129
136
|
name: "[Gen 8] PU",
|
|
@@ -133,7 +140,7 @@ exports.Formats = [
|
|
|
133
140
|
],
|
|
134
141
|
mod: 'gen8',
|
|
135
142
|
ruleset: ['[Gen 8] NU'],
|
|
136
|
-
banlist: ['NU', 'PUBL'],
|
|
143
|
+
banlist: ['NU', 'PUBL', 'Indeedee'],
|
|
137
144
|
},
|
|
138
145
|
{
|
|
139
146
|
name: "[Gen 8] LC",
|
|
@@ -145,7 +152,7 @@ exports.Formats = [
|
|
|
145
152
|
mod: 'gen8',
|
|
146
153
|
ruleset: ['Little Cup', 'Standard', 'Dynamax Clause'],
|
|
147
154
|
banlist: [
|
|
148
|
-
'Corsola-Galar', 'Cutiefly', 'Drifloon', 'Gastly', 'Gothita', 'Rufflet', 'Scraggy', 'Scyther', 'Sneasel', 'Swirlix', 'Tangela', 'Vullaby', 'Vulpix-Alola', 'Woobat',
|
|
155
|
+
'Corsola-Galar', 'Cutiefly', 'Drifloon', 'Gastly', 'Gothita', 'Rufflet', 'Scraggy', 'Scyther', 'Sneasel', 'Swirlix', 'Tangela', 'Vullaby', 'Vulpix-Alola', 'Woobat', 'Zigzagoon-Base',
|
|
149
156
|
'Chlorophyll', 'Moody', 'Baton Pass', 'Sticky Web',
|
|
150
157
|
],
|
|
151
158
|
},
|
|
@@ -264,26 +271,6 @@ exports.Formats = [
|
|
|
264
271
|
searchShow: false,
|
|
265
272
|
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8'],
|
|
266
273
|
},
|
|
267
|
-
{
|
|
268
|
-
name: "[Gen 8] Gym Challenge",
|
|
269
|
-
mod: 'gen8',
|
|
270
|
-
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8'],
|
|
271
|
-
onValidateSet(set) {
|
|
272
|
-
const gymMonsList = [
|
|
273
|
-
'ninetales', 'arcanine', 'machamp', 'ponytagalar', 'rapidashgalar', 'gengar', 'weezinggalar', 'goldeen', 'seaking', 'lapras', 'bellossom',
|
|
274
|
-
'quagsire', 'shuckle', 'hitmontop', 'tyranitar', 'ludicolo', 'shiftry', 'pelipper', 'gardevoir', 'mawile', 'torkoal', 'flygon', 'cherrim',
|
|
275
|
-
'skuntank', 'croagunk', 'toxicroak', 'togekiss', 'dusknoir', 'liepard', 'gigalith', 'darmanitangalar', 'scraggy', 'scrafty', 'yamaskgalar',
|
|
276
|
-
'gothita', 'gothorita', 'solosis', 'duosion', 'chandelure', 'pangoro', 'malamar', 'barbaracle', 'sylveon', 'hawlucha', 'goodra', 'toxapex',
|
|
277
|
-
'salazzle', 'tsareena', 'golisopod', 'turtonator', 'mimikyu', 'gossifleur', 'eldegoss', 'drednaw', 'coalossal', 'flapple', 'appletun',
|
|
278
|
-
'sandaconda', 'arrokuda', 'barraskewda', 'toxtricitylowkey', 'centiskorch', 'grapploct', 'polteageist', 'hatenna', 'hattrem', 'hatterene',
|
|
279
|
-
'grimmsnarl', 'obstagoon', 'cursola', 'sirfetchd', 'mrrime', 'runerigus', 'falinks', 'frosmoth', 'stonjourner', 'eiscue', 'morpeko', 'duraludon',
|
|
280
|
-
];
|
|
281
|
-
const species = this.dex.species.get(set.species);
|
|
282
|
-
if (!gymMonsList.includes(species.id) && !species.id.startsWith('alcremie')) {
|
|
283
|
-
return [`${species.name} is not allowed in this competition.`];
|
|
284
|
-
}
|
|
285
|
-
},
|
|
286
|
-
},
|
|
287
274
|
{
|
|
288
275
|
name: "[Gen 8] Custom Game",
|
|
289
276
|
mod: 'gen8',
|
|
@@ -350,6 +337,11 @@ exports.Formats = [
|
|
|
350
337
|
},
|
|
351
338
|
{
|
|
352
339
|
name: "[Gen 8] VGC 2021 Series 11",
|
|
340
|
+
threads: [
|
|
341
|
+
`• <a href="https://www.smogon.com/forums/threads/3677186/">VGC 2021 Series 11 Metagame Discussion</a>`,
|
|
342
|
+
`• <a href="https://www.smogon.com/forums/threads/3693427/">VGC 2021 Series 11 Sample Teams</a>`,
|
|
343
|
+
`• <a href="https://www.smogon.com/forums/threads/3693284/">VGC 2021 Series 11 Viability Rankings</a>`,
|
|
344
|
+
],
|
|
353
345
|
mod: 'gen8',
|
|
354
346
|
gameType: 'doubles',
|
|
355
347
|
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8', 'VGC Timer', 'Limit One Restricted'],
|
|
@@ -505,8 +497,8 @@ exports.Formats = [
|
|
|
505
497
|
'Arceus', 'Blastoise-Mega', 'Blaziken', 'Calyrex-Ice', 'Calyrex-Shadow', 'Darkrai', 'Deoxys-Base', 'Deoxys-Attack', 'Dialga', 'Dracovish', 'Dragapult',
|
|
506
498
|
'Eternatus', 'Genesect', 'Gengar-Mega', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Hoopa-Unbound', 'Kangaskhan-Mega', 'Kartana', 'Kyogre',
|
|
507
499
|
'Kyurem-Black', 'Kyurem-White', 'Lucario-Mega', 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Mawile-Mega', 'Medicham-Mega', 'Metagross-Mega', 'Mewtwo',
|
|
508
|
-
'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Rayquaza', 'Reshiram', 'Salamence-Mega', 'Shaymin-Sky',
|
|
509
|
-
'Spectrier', 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Zygarde-Base',
|
|
500
|
+
'Moltres-Galar', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Rayquaza', 'Reshiram', 'Salamence-Mega', 'Shaymin-Sky',
|
|
501
|
+
'Solgaleo', 'Spectrier', 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Zygarde-Base',
|
|
510
502
|
'Battle Bond', 'Moody', 'Power Construct', 'Shadow Tag',
|
|
511
503
|
'Bright Powder', 'Damp Rock', 'Focus Band', 'King\'s Rock', 'Lax Incense', 'Quick Claw', 'Smooth Rock', 'Terrain Extender', 'Baton Pass',
|
|
512
504
|
],
|
|
@@ -530,6 +522,7 @@ exports.Formats = [
|
|
|
530
522
|
`• <a href="https://www.smogon.com/forums/threads/3674163/">Fusion Evolution UU</a>`,
|
|
531
523
|
],
|
|
532
524
|
mod: "fusionevolutionuu",
|
|
525
|
+
searchShow: false,
|
|
533
526
|
ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Dynamax Clause', 'Sleep Clause Mod', 'Z-Move Clause', 'Data Mod', 'Mega Data Mod'],
|
|
534
527
|
banlist: [
|
|
535
528
|
'All Pokemon', 'Lopunnite', 'Tapu Lop-Mega', 'Red Orb', 'Grousle-Primal',
|
|
@@ -571,42 +564,35 @@ exports.Formats = [
|
|
|
571
564
|
column: 2,
|
|
572
565
|
},
|
|
573
566
|
{
|
|
574
|
-
name: "[Gen 8]
|
|
575
|
-
desc: `
|
|
567
|
+
name: "[Gen 8] Revelationmons",
|
|
568
|
+
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).`,
|
|
576
569
|
threads: [
|
|
577
|
-
`• <a href="https://www.smogon.com/forums/threads/
|
|
570
|
+
`• <a href="https://www.smogon.com/forums/threads/3692297/">Revelationmons</a>`,
|
|
578
571
|
],
|
|
579
572
|
mod: 'gen8',
|
|
580
|
-
ruleset: ['Standard', 'Dynamax Clause', '
|
|
573
|
+
ruleset: ['Standard', 'Dynamax Clause', 'Revelationmons Mod'],
|
|
581
574
|
banlist: [
|
|
582
|
-
'Calyrex-Ice', 'Calyrex-Shadow', '
|
|
583
|
-
'
|
|
584
|
-
'
|
|
585
|
-
'Pheromosa', '
|
|
586
|
-
'
|
|
587
|
-
'
|
|
588
|
-
],
|
|
589
|
-
restricted: [
|
|
590
|
-
'Acupressure', 'Astral Barrage', 'Belly Drum', 'Bolt Beak', 'Clangorous Soul', 'Double Iron Bash', 'Electrify', 'Extreme Speed',
|
|
591
|
-
'Fishious Rend', 'Geomancy', 'Glacial Lance', 'Lovely Kiss', 'No Retreat', 'Oblivion Wing', 'Octolock', 'Quiver Dance', 'Secret Sword',
|
|
592
|
-
'Shell Smash', 'Shift Gear', 'Sleep Powder', 'Spore', 'Thousand Arrows', 'Transform', 'V-create', 'Wicked Blow',
|
|
575
|
+
'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragonite', 'Dragapult', 'Eternatus', 'Genesect',
|
|
576
|
+
'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kommo-o', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base', 'Lugia',
|
|
577
|
+
'Lunala', 'Magearna', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Noivern', 'Palkia',
|
|
578
|
+
'Pheromosa', 'Rayquaza', 'Reshiram', 'Solgaleo', 'Spectrier', 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned',
|
|
579
|
+
'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Magnet Pull', 'Moody', 'Power Construct', 'Shadow Tag',
|
|
580
|
+
'King\'s Rock', 'Baton Pass',
|
|
593
581
|
],
|
|
582
|
+
restricted: ['Bolt Beak', 'U-turn', 'Volt Switch'],
|
|
594
583
|
},
|
|
595
584
|
{
|
|
596
|
-
name: "[Gen 8]
|
|
597
|
-
desc: `
|
|
585
|
+
name: "[Gen 8 BDSP] Balanced Hackmons",
|
|
586
|
+
desc: `Anything that can be hacked in-game and is usable in local battles is allowed.`,
|
|
598
587
|
threads: [
|
|
599
|
-
`• <a href="https://www.smogon.com/forums/posts/
|
|
588
|
+
`• <a href="https://www.smogon.com/forums/posts/9043074">BDSP Balanced Hackmons</a>`,
|
|
600
589
|
],
|
|
601
|
-
mod: '
|
|
602
|
-
|
|
603
|
-
ruleset: ['Standard', 'Dynamax Clause', '2 Ability Clause', '!Obtainable Abilities'],
|
|
590
|
+
mod: 'gen8bdsp',
|
|
591
|
+
ruleset: ['-Nonexistent', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Moves Clause', 'Endless Battle Clause'],
|
|
604
592
|
banlist: [
|
|
605
|
-
'
|
|
606
|
-
'
|
|
607
|
-
'
|
|
608
|
-
'Serene Grace', 'Shadow Tag', 'Simple', 'Soul-Heart', 'Stakeout', 'Steam Engine', 'Speed Boost', 'Water Bubble', 'Wonder Guard',
|
|
609
|
-
'Weakness Policy', 'Beat Up', 'Stored Power',
|
|
593
|
+
'Arena Trap', 'Contrary', 'Gorilla Tactics', 'Huge Power', 'Illusion', 'Innards Out', 'Intrepid Sword', 'Libero',
|
|
594
|
+
'Magnet Pull', 'Moody', 'Neutralizing Gas', 'Parental Bond', 'Protean', 'Pure Power', 'Shadow Tag', 'Stakeout',
|
|
595
|
+
'Water Bubble', 'Wonder Guard', 'Comatose + Sleep Talk', 'Chatter', 'Shell Smash',
|
|
610
596
|
],
|
|
611
597
|
},
|
|
612
598
|
// Other Metagames
|
|
@@ -750,12 +736,12 @@ exports.Formats = [
|
|
|
750
736
|
mod: 'gen8',
|
|
751
737
|
ruleset: ['Standard', 'STABmons Move Legality', 'Dynamax Clause', 'Sleep Moves Clause'],
|
|
752
738
|
banlist: [
|
|
753
|
-
'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragapult', '
|
|
754
|
-
'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus', 'Landorus-Therian',
|
|
755
|
-
'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Porygon-Z',
|
|
756
|
-
'Silvally', 'Solgaleo', 'Spectrier', 'Tapu Bulu', 'Tapu Koko', 'Thundurus-Base', 'Urshifu-Base', 'Xerneas', 'Yveltal',
|
|
757
|
-
'Zamazenta', 'Zamazenta-Crowned', 'Zapdos-Galar', 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Magnet Pull', 'Moody',
|
|
758
|
-
'King\'s Rock', 'Baton Pass',
|
|
739
|
+
'Aegislash', 'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragapult', 'Dragonite', 'Eternatus', 'Genesect',
|
|
740
|
+
'Garchomp', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus', 'Landorus-Therian',
|
|
741
|
+
'Lugia', 'Lunala', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Porygon-Z',
|
|
742
|
+
'Rayquaza', 'Reshiram', 'Silvally', 'Solgaleo', 'Spectrier', 'Tapu Bulu', 'Tapu Koko', 'Thundurus-Base', 'Urshifu-Base', 'Xerneas', 'Yveltal',
|
|
743
|
+
'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zapdos-Galar', 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Magnet Pull', 'Moody',
|
|
744
|
+
'Power Construct', 'Shadow Tag', 'King\'s Rock', 'Baton Pass',
|
|
759
745
|
],
|
|
760
746
|
restricted: [
|
|
761
747
|
'Acupressure', 'Astral Barrage', 'Belly Drum', 'Bolt Beak', 'Clangorous Soul', 'Double Iron Bash', 'Electrify', 'Extreme Speed', 'Fishious Rend',
|
|
@@ -794,6 +780,90 @@ exports.Formats = [
|
|
|
794
780
|
'Decorate', 'Final Gambit', 'Flatter', 'Floral Healing', 'Flower Shield', 'Follow Me', 'Heal Pulse', 'Rage Powder', 'Swagger',
|
|
795
781
|
],
|
|
796
782
|
},
|
|
783
|
+
{
|
|
784
|
+
section: "BD/SP",
|
|
785
|
+
column: 2,
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
name: "[Gen 8 BDSP] Random Battle",
|
|
789
|
+
desc: `Randomized teams of level-balanced Pokémon with sets that are generated to be competitively viable.`,
|
|
790
|
+
threads: [
|
|
791
|
+
`• <a href="https://www.smogon.com/forums/threads/3693955/">BDSP Random Battle Set Discussion</a>`,
|
|
792
|
+
],
|
|
793
|
+
mod: 'gen8bdsp',
|
|
794
|
+
team: 'random',
|
|
795
|
+
ruleset: ['[Gen 8] Random Battle', '!PotD'],
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
name: "[Gen 8 BDSP] OU",
|
|
799
|
+
threads: [
|
|
800
|
+
`• <a href="https://www.smogon.com/forums/threads/3693629/">BDSP OU Metagame Discussion</a>`,
|
|
801
|
+
`• <a href="https://www.smogon.com/forums/threads/3693620/">BDSP OU Viability List</a>`,
|
|
802
|
+
],
|
|
803
|
+
mod: 'gen8bdsp',
|
|
804
|
+
ruleset: ['Standard'],
|
|
805
|
+
banlist: ['Uber', 'Arena Trap', 'Drizzle', 'Moody', 'Shadow Tag', 'King\'s Rock', 'Razor Fang', 'Baton Pass'],
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
name: "[Gen 8 BDSP] Ubers",
|
|
809
|
+
threads: [
|
|
810
|
+
`• <a href="https://www.smogon.com/forums/threads/3694036/">BDSP Ubers Discussion & Resources</a>`,
|
|
811
|
+
],
|
|
812
|
+
mod: 'gen8bdsp',
|
|
813
|
+
ruleset: ['Standard'],
|
|
814
|
+
banlist: ['AG', 'Baton Pass'],
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
name: "[Gen 8 BDSP] UU",
|
|
818
|
+
threads: [
|
|
819
|
+
`• <a href="https://www.smogon.com/forums/threads/3694299/">BDSP UU</a>`,
|
|
820
|
+
],
|
|
821
|
+
mod: 'gen8bdsp',
|
|
822
|
+
ruleset: ['[Gen 8 BDSP] OU'],
|
|
823
|
+
banlist: ['OU', 'UUBL'],
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
name: "[Gen 8 BDSP] Monotype",
|
|
827
|
+
threads: [
|
|
828
|
+
`• <a href="https://www.smogon.com/forums/threads/3694267/">BDSP Monotype</a>`,
|
|
829
|
+
],
|
|
830
|
+
mod: 'gen8bdsp',
|
|
831
|
+
ruleset: ['Standard', 'Same Type Clause'],
|
|
832
|
+
banlist: [
|
|
833
|
+
'Dialga', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kyogre', 'Lugia', 'Mewtwo', 'Palkia', 'Rayquaza',
|
|
834
|
+
'Arena Trap', 'Moody', 'Shadow Tag', 'Damp Rock', 'King\'s Rock', 'Razor Fang', 'Baton Pass',
|
|
835
|
+
],
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
name: "[Gen 8 BDSP] Doubles OU",
|
|
839
|
+
threads: [
|
|
840
|
+
`• <a href="https://www.smogon.com/forums/threads/3693891/">BDSP Doubles OU</a>`,
|
|
841
|
+
],
|
|
842
|
+
mod: 'gen8bdsp',
|
|
843
|
+
gameType: 'doubles',
|
|
844
|
+
ruleset: ['Standard Doubles'],
|
|
845
|
+
banlist: ['DUber'],
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
name: "[Gen 8 BDSP] Battle Festival Doubles",
|
|
849
|
+
threads: [
|
|
850
|
+
`• <a href="https://www.smogon.com/forums/threads/3694269/">Battle Festival Doubles</a>`,
|
|
851
|
+
],
|
|
852
|
+
mod: 'gen8bdsp',
|
|
853
|
+
gameType: 'doubles',
|
|
854
|
+
// VGC Timer is temporary
|
|
855
|
+
ruleset: ['Flat Rules', 'Min Source Gen = 8', 'VGC Timer'],
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
name: "[Gen 8 BDSP] Pure Hackmons",
|
|
859
|
+
desc: `Anything that can be hacked in-game and is usable in local battles is allowed.`,
|
|
860
|
+
threads: [
|
|
861
|
+
`• <a href="https://www.smogon.com/forums/threads/3693868/">Pure Hackmons</a>`,
|
|
862
|
+
],
|
|
863
|
+
mod: 'gen8bdsp',
|
|
864
|
+
searchShow: false,
|
|
865
|
+
ruleset: ['-Nonexistent', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Endless Battle Clause'],
|
|
866
|
+
},
|
|
797
867
|
{
|
|
798
868
|
section: "Challengeable OMs",
|
|
799
869
|
column: 2,
|
|
@@ -1335,16 +1405,6 @@ exports.Formats = [
|
|
|
1335
1405
|
},
|
|
1336
1406
|
},
|
|
1337
1407
|
},
|
|
1338
|
-
{
|
|
1339
|
-
name: "[Gen 8] Pure Hackmons",
|
|
1340
|
-
desc: `Anything that can be hacked in-game and is usable in local battles is allowed.`,
|
|
1341
|
-
threads: [
|
|
1342
|
-
`• <a href="https://www.smogon.com/forums/threads/3656851/">Pure Hackmons</a>`,
|
|
1343
|
-
],
|
|
1344
|
-
mod: 'gen8',
|
|
1345
|
-
searchShow: false,
|
|
1346
|
-
ruleset: ['-Nonexistent', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Endless Battle Clause'],
|
|
1347
|
-
},
|
|
1348
1408
|
{
|
|
1349
1409
|
name: "[Gen 8] Shared Power",
|
|
1350
1410
|
desc: `Once a Pokémon switches in, its ability is shared with the rest of the team.`,
|
|
@@ -1647,6 +1707,7 @@ exports.Formats = [
|
|
|
1647
1707
|
name: "[Gen 8] Random Battle (No Dmax)",
|
|
1648
1708
|
mod: 'gen8',
|
|
1649
1709
|
team: 'random',
|
|
1710
|
+
searchShow: false,
|
|
1650
1711
|
ruleset: ['[Gen 8] Random Battle', 'Dynamax Clause'],
|
|
1651
1712
|
},
|
|
1652
1713
|
{
|
|
@@ -1901,37 +1962,47 @@ exports.Formats = [
|
|
|
1901
1962
|
column: 3,
|
|
1902
1963
|
},
|
|
1903
1964
|
{
|
|
1904
|
-
name: "[Gen
|
|
1965
|
+
name: "[Gen 1] UU",
|
|
1905
1966
|
threads: [
|
|
1906
|
-
`• <a href="https://www.smogon.com/forums/
|
|
1967
|
+
`• <a href="https://www.smogon.com/forums/threads/3573896/">RBY UU Metagame Discussion</a>`,
|
|
1968
|
+
`• <a href="https://www.smogon.com/forums/threads/3647713/">RBY UU Viability Rankings</a>`,
|
|
1907
1969
|
],
|
|
1908
|
-
mod: '
|
|
1970
|
+
mod: 'gen1',
|
|
1909
1971
|
// searchShow: false,
|
|
1910
|
-
ruleset: ['
|
|
1972
|
+
ruleset: ['[Gen 1] OU'],
|
|
1973
|
+
banlist: ['OU', 'UUBL'],
|
|
1911
1974
|
},
|
|
1912
1975
|
{
|
|
1913
|
-
name: "[Gen
|
|
1976
|
+
name: "[Gen 6] 1v1",
|
|
1977
|
+
desc: `Bring three Pokémon to Team Preview and choose one to battle.`,
|
|
1914
1978
|
threads: [
|
|
1915
|
-
`• <a href="https://www.smogon.com/forums/
|
|
1916
|
-
`• <a href="https://www.smogon.com/forums/threads/3503638/">DPP UU Viability Rankings</a>`,
|
|
1979
|
+
`• <a href="https://www.smogon.com/forums/posts/8031459/">ORAS 1v1</a>`,
|
|
1917
1980
|
],
|
|
1918
|
-
mod: '
|
|
1981
|
+
mod: 'gen6',
|
|
1919
1982
|
// searchShow: false,
|
|
1920
|
-
ruleset: [
|
|
1921
|
-
|
|
1922
|
-
|
|
1983
|
+
ruleset: [
|
|
1984
|
+
'Max Team Size = 3', 'Picked Team Size = 1',
|
|
1985
|
+
'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',
|
|
1986
|
+
],
|
|
1987
|
+
banlist: [
|
|
1988
|
+
'Arceus', 'Blaziken', 'Darkrai', 'Deoxys-Base', 'Deoxys-Attack', 'Deoxys-Defense', 'Dialga', 'Giratina',
|
|
1989
|
+
'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kangaskhan-Mega', 'Kyogre', 'Kyurem-White', 'Lugia', 'Mewtwo',
|
|
1990
|
+
'Palkia', 'Rayquaza', 'Reshiram', 'Salamence-Mega', 'Shaymin-Sky', 'Xerneas', 'Yveltal', 'Zekrom',
|
|
1991
|
+
'Focus Sash', 'Soul Dew', 'Perish Song',
|
|
1992
|
+
],
|
|
1923
1993
|
},
|
|
1924
1994
|
{
|
|
1925
|
-
name: "[Gen
|
|
1995
|
+
name: "[Gen 5] Doubles OU",
|
|
1926
1996
|
threads: [
|
|
1927
|
-
`• <a href="https://www.smogon.com/forums/threads/
|
|
1997
|
+
`• <a href="https://www.smogon.com/forums/threads/3606719/">BW2 Doubles Metagame Discussion</a>`,
|
|
1998
|
+
`• <a href="https://www.smogon.com/forums/posts/7393048/">BW2 Doubles Viability Rankings</a>`,
|
|
1999
|
+
`• <a href="https://www.smogon.com/forums/posts/7393081/">BW2 Doubles Sample Teams</a>`,
|
|
1928
2000
|
],
|
|
1929
|
-
mod: '
|
|
1930
|
-
// searchShow: false,
|
|
2001
|
+
mod: 'gen5',
|
|
1931
2002
|
gameType: 'doubles',
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
2003
|
+
// searchShow: false,
|
|
2004
|
+
ruleset: ['Standard', 'Evasion Abilities Clause', 'Swagger Clause', 'Sleep Clause Mod'],
|
|
2005
|
+
banlist: ['DUber', 'Soul Dew', 'Dark Void', 'Gravity'],
|
|
1935
2006
|
},
|
|
1936
2007
|
// Past Gens OU
|
|
1937
2008
|
///////////////////////////////////////////////////////////////////
|
|
@@ -2025,7 +2096,7 @@ exports.Formats = [
|
|
|
2025
2096
|
`• <a href="https://www.smogon.com/forums/posts/8407209/">USM Balanced Hackmons</a>`,
|
|
2026
2097
|
],
|
|
2027
2098
|
mod: 'gen7',
|
|
2028
|
-
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'],
|
|
2099
|
+
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'],
|
|
2029
2100
|
banlist: [
|
|
2030
2101
|
'Groudon-Primal', 'Rayquaza-Mega', 'Gengarite', 'Comatose + Sleep Talk', 'Chatter',
|
|
2031
2102
|
'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',
|
|
@@ -2432,6 +2503,15 @@ exports.Formats = [
|
|
|
2432
2503
|
section: "OR/AS Singles",
|
|
2433
2504
|
column: 4,
|
|
2434
2505
|
},
|
|
2506
|
+
{
|
|
2507
|
+
name: "[Gen 6] Ubers",
|
|
2508
|
+
threads: [
|
|
2509
|
+
`• <a href="https://www.smogon.com/forums/posts/8286277/">ORAS Ubers</a>`,
|
|
2510
|
+
],
|
|
2511
|
+
mod: 'gen6',
|
|
2512
|
+
searchShow: false,
|
|
2513
|
+
ruleset: ['Standard', 'Swagger Clause', 'Mega Rayquaza Clause'],
|
|
2514
|
+
},
|
|
2435
2515
|
{
|
|
2436
2516
|
name: "[Gen 6] UU",
|
|
2437
2517
|
threads: [
|
|
@@ -2508,25 +2588,6 @@ exports.Formats = [
|
|
|
2508
2588
|
'Soul Dew', 'Baton Pass',
|
|
2509
2589
|
],
|
|
2510
2590
|
},
|
|
2511
|
-
{
|
|
2512
|
-
name: "[Gen 6] 1v1",
|
|
2513
|
-
desc: `Bring three Pokémon to Team Preview and choose one to battle.`,
|
|
2514
|
-
threads: [
|
|
2515
|
-
`• <a href="https://www.smogon.com/forums/posts/8031459/">ORAS 1v1</a>`,
|
|
2516
|
-
],
|
|
2517
|
-
mod: 'gen6',
|
|
2518
|
-
searchShow: false,
|
|
2519
|
-
ruleset: [
|
|
2520
|
-
'Max Team Size = 3', 'Picked Team Size = 1',
|
|
2521
|
-
'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',
|
|
2522
|
-
],
|
|
2523
|
-
banlist: [
|
|
2524
|
-
'Arceus', 'Blaziken', 'Darkrai', 'Deoxys-Base', 'Deoxys-Attack', 'Deoxys-Defense', 'Dialga', 'Giratina',
|
|
2525
|
-
'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kangaskhan-Mega', 'Kyogre', 'Kyurem-White', 'Lugia', 'Mewtwo',
|
|
2526
|
-
'Palkia', 'Rayquaza', 'Reshiram', 'Salamence-Mega', 'Shaymin-Sky', 'Xerneas', 'Yveltal', 'Zekrom',
|
|
2527
|
-
'Focus Sash', 'Soul Dew', 'Perish Song',
|
|
2528
|
-
],
|
|
2529
|
-
},
|
|
2530
2591
|
{
|
|
2531
2592
|
name: "[Gen 6] Anything Goes",
|
|
2532
2593
|
threads: [
|
|
@@ -2691,8 +2752,8 @@ exports.Formats = [
|
|
|
2691
2752
|
],
|
|
2692
2753
|
mod: 'gen5',
|
|
2693
2754
|
searchShow: false,
|
|
2694
|
-
ruleset: ['Standard', 'Evasion Abilities Clause', '
|
|
2695
|
-
banlist: ['Uber', 'OU', 'UUBL', 'Arena Trap', 'Drought', 'Sand Stream', 'Snow Warning'],
|
|
2755
|
+
ruleset: ['Standard', 'Evasion Abilities Clause', 'Swagger Clause', 'Sleep Clause Mod'],
|
|
2756
|
+
banlist: ['Uber', 'OU', 'UUBL', 'Arena Trap', 'Drought', 'Sand Stream', 'Snow Warning', 'Prankster + Assist', 'Prankster + Copycat', 'Baton Pass'],
|
|
2696
2757
|
},
|
|
2697
2758
|
{
|
|
2698
2759
|
name: "[Gen 5] RU",
|
|
@@ -2702,8 +2763,9 @@ exports.Formats = [
|
|
|
2702
2763
|
],
|
|
2703
2764
|
mod: 'gen5',
|
|
2704
2765
|
searchShow: false,
|
|
2705
|
-
ruleset: ['[Gen 5] UU', '!Sleep Clause Mod', 'Sleep Moves Clause'],
|
|
2766
|
+
ruleset: ['[Gen 5] UU', 'Baton Pass Clause', '!Sleep Clause Mod', 'Sleep Moves Clause'],
|
|
2706
2767
|
banlist: ['UU', 'RUBL', 'Shadow Tag', 'Shell Smash + Baton Pass'],
|
|
2768
|
+
unbanlist: ['Prankster + Assist', 'Prankster + Copycat', 'Baton Pass'],
|
|
2707
2769
|
},
|
|
2708
2770
|
{
|
|
2709
2771
|
name: "[Gen 5] NU",
|
|
@@ -2713,8 +2775,8 @@ exports.Formats = [
|
|
|
2713
2775
|
],
|
|
2714
2776
|
mod: 'gen5',
|
|
2715
2777
|
searchShow: false,
|
|
2716
|
-
ruleset: ['[Gen 5] RU', '!Sleep Moves Clause', 'Sleep Clause Mod'
|
|
2717
|
-
banlist: ['RU', 'NUBL', '
|
|
2778
|
+
ruleset: ['[Gen 5] RU', '!Sleep Moves Clause', 'Sleep Clause Mod'],
|
|
2779
|
+
banlist: ['RU', 'NUBL', 'Assist', 'Copycat'],
|
|
2718
2780
|
},
|
|
2719
2781
|
{
|
|
2720
2782
|
name: "[Gen 5] PU",
|
|
@@ -2724,7 +2786,7 @@ exports.Formats = [
|
|
|
2724
2786
|
mod: 'gen5',
|
|
2725
2787
|
searchShow: false,
|
|
2726
2788
|
ruleset: ['[Gen 5] NU', 'Sleep Moves Clause'],
|
|
2727
|
-
banlist: ['NU', 'Combusken', 'Gothorita', 'Linoone', 'Riolu', 'Rotom-Frost', 'Throh', 'Vigoroth'],
|
|
2789
|
+
banlist: ['NU', 'Combusken', 'Gothorita', 'Linoone', 'Riolu', 'Rotom-Frost', 'Simipour', 'Throh', 'Vigoroth'],
|
|
2728
2790
|
},
|
|
2729
2791
|
{
|
|
2730
2792
|
name: "[Gen 5] LC",
|
|
@@ -2787,19 +2849,6 @@ exports.Formats = [
|
|
|
2787
2849
|
section: 'B2/W2 Doubles',
|
|
2788
2850
|
column: 4,
|
|
2789
2851
|
},
|
|
2790
|
-
{
|
|
2791
|
-
name: "[Gen 5] Doubles OU",
|
|
2792
|
-
threads: [
|
|
2793
|
-
`• <a href="https://www.smogon.com/forums/threads/3606719/">BW2 Doubles Metagame Discussion</a>`,
|
|
2794
|
-
`• <a href="https://www.smogon.com/forums/posts/7393048/">BW2 Doubles Viability Rankings</a>`,
|
|
2795
|
-
`• <a href="https://www.smogon.com/forums/posts/7393081/">BW2 Doubles Sample Teams</a>`,
|
|
2796
|
-
],
|
|
2797
|
-
mod: 'gen5',
|
|
2798
|
-
gameType: 'doubles',
|
|
2799
|
-
searchShow: false,
|
|
2800
|
-
ruleset: ['Standard', 'Evasion Abilities Clause', 'Swagger Clause', 'Sleep Clause Mod'],
|
|
2801
|
-
banlist: ['DUber', 'Soul Dew', 'Dark Void', 'Gravity'],
|
|
2802
|
-
},
|
|
2803
2852
|
{
|
|
2804
2853
|
name: "[Gen 5] VGC 2013",
|
|
2805
2854
|
mod: 'gen5',
|
|
@@ -2860,6 +2909,18 @@ exports.Formats = [
|
|
|
2860
2909
|
ruleset: ['Standard'],
|
|
2861
2910
|
banlist: ['AG'],
|
|
2862
2911
|
},
|
|
2912
|
+
{
|
|
2913
|
+
name: "[Gen 4] UU",
|
|
2914
|
+
threads: [
|
|
2915
|
+
`• <a href="https://www.smogon.com/forums/threads/3532624/">DPP UU Metagame Discussion</a>`,
|
|
2916
|
+
`• <a href="https://www.smogon.com/forums/threads/3503638/">DPP UU Viability Rankings</a>`,
|
|
2917
|
+
],
|
|
2918
|
+
mod: 'gen4',
|
|
2919
|
+
searchShow: false,
|
|
2920
|
+
ruleset: ['[Gen 4] OU'],
|
|
2921
|
+
banlist: ['OU', 'UUBL'],
|
|
2922
|
+
unbanlist: ['Arena Trap'],
|
|
2923
|
+
},
|
|
2863
2924
|
{
|
|
2864
2925
|
name: "[Gen 4] NU",
|
|
2865
2926
|
threads: [
|
|
@@ -3014,6 +3075,18 @@ exports.Formats = [
|
|
|
3014
3075
|
banlist: ['UU'],
|
|
3015
3076
|
unbanlist: ['Baton Pass'],
|
|
3016
3077
|
},
|
|
3078
|
+
{
|
|
3079
|
+
name: "[Gen 3] Doubles OU",
|
|
3080
|
+
threads: [
|
|
3081
|
+
`• <a href="https://www.smogon.com/forums/threads/3666831/">ADV Doubles OU</a>`,
|
|
3082
|
+
],
|
|
3083
|
+
mod: 'gen3',
|
|
3084
|
+
searchShow: false,
|
|
3085
|
+
gameType: 'doubles',
|
|
3086
|
+
ruleset: ['Standard', '!Sleep Clause Mod', '!Switch Priority Clause Mod'],
|
|
3087
|
+
banlist: ['Uber'],
|
|
3088
|
+
unbanlist: ['Deoxys-Speed', 'Wobbuffet', 'Wynaut'],
|
|
3089
|
+
},
|
|
3017
3090
|
{
|
|
3018
3091
|
name: "[Gen 3] 1v1",
|
|
3019
3092
|
desc: `Bring three Pokémon to Team Preview and choose one to battle.`,
|
|
@@ -3078,7 +3151,7 @@ exports.Formats = [
|
|
|
3078
3151
|
'Picked Team Size = 1', 'Max Team Size = 3',
|
|
3079
3152
|
'[Gen 2] OU', 'Accuracy Moves Clause', 'Sleep Moves Clause', 'Team Preview',
|
|
3080
3153
|
],
|
|
3081
|
-
banlist: ['Clefable', 'Snorlax', 'Zapdos', 'Berserk Gene', 'Bright Powder', 'Focus Band', 'King\'s Rock', 'Quick Claw', 'Destiny Bond', 'Explosion', 'Present', 'Self-Destruct'],
|
|
3154
|
+
banlist: ['Clefable', 'Snorlax', 'Zapdos', 'Berserk Gene', 'Bright Powder', 'Focus Band', 'King\'s Rock', 'Quick Claw', 'Destiny Bond', 'Explosion', 'Perish Song', 'Present', 'Self-Destruct'],
|
|
3082
3155
|
},
|
|
3083
3156
|
{
|
|
3084
3157
|
name: "[Gen 2] Nintendo Cup 2000",
|
|
@@ -3121,17 +3194,6 @@ exports.Formats = [
|
|
|
3121
3194
|
searchShow: false,
|
|
3122
3195
|
ruleset: ['Standard'],
|
|
3123
3196
|
},
|
|
3124
|
-
{
|
|
3125
|
-
name: "[Gen 1] UU",
|
|
3126
|
-
threads: [
|
|
3127
|
-
`• <a href="https://www.smogon.com/forums/threads/3573896/">RBY UU Metagame Discussion</a>`,
|
|
3128
|
-
`• <a href="https://www.smogon.com/forums/threads/3647713/">RBY UU Viability Rankings</a>`,
|
|
3129
|
-
],
|
|
3130
|
-
mod: 'gen1',
|
|
3131
|
-
searchShow: false,
|
|
3132
|
-
ruleset: ['[Gen 1] OU'],
|
|
3133
|
-
banlist: ['OU', 'UUBL'],
|
|
3134
|
-
},
|
|
3135
3197
|
{
|
|
3136
3198
|
name: "[Gen 1] NU",
|
|
3137
3199
|
threads: [
|