forked from scoopapa/DH
-
Notifications
You must be signed in to change notification settings - Fork 0
/
formats.ts
2073 lines (1994 loc) · 97.6 KB
/
formats.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Note: This is the list of formats
// The rules that formats use are stored in data/rulesets.ts
/*
If you want to add custom formats, create a file in this folder named: "custom-formats.ts"
Paste the following code into the file and add your desired formats and their sections between the brackets:
--------------------------------------------------------------------------------
// Note: This is the list of formats
// The rules that formats use are stored in data/rulesets.ts
export const Formats: FormatList = [
];
--------------------------------------------------------------------------------
If you specify a section that already exists, your format will be added to the bottom of that section.
New sections will be added to the bottom of the specified column.
The column value will be ignored for repeat sections.
*/
export const Formats: FormatList = [
// Sw/Sh Singles
///////////////////////////////////////////////////////////////////
{
section: "Sw/Sh Singles",
},
{
name: "[Gen 8] OU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3666169/">OU Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3666247/">OU Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3666340/">OU Viability Rankings</a>`,
],
mod: 'gen8',
ruleset: ['Standard', 'Dynamax Clause'],
banlist: ['Uber', 'Arena Trap', 'Moody', 'Shadow Tag', 'Baton Pass'],
},
{
name: "[Gen 8] Ubers",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3659981/">Ubers Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3658364/">Ubers Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3661412/">Ubers Viability Rankings</a>`,
],
mod: 'gen8',
ruleset: ['Standard', 'Dynamax Ubers Clause'],
banlist: [],
restricted: ['Ditto', 'Kyurem-White', 'Lunala', 'Marshadow', 'Mewtwo', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Reshiram', 'Solgaleo', 'Zekrom'],
},
{
name: "[Gen 8] UU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3666248/">UU Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3659681/">UU Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3659427/">UU Viability Rankings</a>`,
],
mod: 'gen8',
ruleset: ['[Gen 8] OU'],
banlist: ['OU', 'UUBL', 'Drizzle'],
},
{
name: "[Gen 8] RU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3659533/">RU Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3661013/">RU Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3660617/">RU Viability Rankings</a>`,
],
mod: 'gen8',
ruleset: ['[Gen 8] UU'],
banlist: ['UU', 'RUBL'],
},
{
name: "[Gen 8] NU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3660646/">NU Metagame Discussion</a>`,
],
mod: 'gen8',
ruleset: ['[Gen 8] RU'],
banlist: ['RU', 'NUBL', 'Drought'],
},
{
name: "[Gen 8] PU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3661966/">PU Metagame Discussion</a>`,
],
mod: 'gen8',
ruleset: ['[Gen 8] NU'],
banlist: ['NU', 'PUBL', 'Heat Rock'],
},
{
name: "[Gen 8] LC",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3656348/">LC Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3661419/">LC Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3657374/">LC Viability Rankings</a>`,
],
mod: 'gen8',
maxLevel: 5,
ruleset: ['Little Cup', 'Standard', 'Dynamax Clause'],
banlist: [
'Corsola-Galar', 'Cutiefly', 'Drifloon', 'Gastly', 'Gothita', 'Rufflet', 'Scyther', 'Sneasel', 'Swirlix', 'Tangela', 'Vulpix-Alola',
'Chlorophyll', 'Moody', 'Baton Pass',
],
},
{
name: "[Gen 8] Monotype",
desc: `All the Pokémon on a team must share a type.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3656253/">Monotype Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3658745/">Monotype Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3660603">Monotype Viability Rankings</a>`,
],
mod: 'gen8',
ruleset: ['Same Type Clause', 'Standard', 'Dynamax Clause'],
banlist: [
'Eternatus', 'Kyurem-Black', 'Kyurem-White', 'Lunala', 'Magearna', 'Marshadow', 'Melmetal', 'Mewtwo',
'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Reshiram', 'Solgaleo', 'Zacian', 'Zamazenta', 'Zekrom',
'Damp Rock', 'Smooth Rock', 'Moody', 'Shadow Tag', 'Baton Pass',
],
},
{
name: "[Gen 8] Anything Goes",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3656317/">Anything Goes</a>`,
],
mod: 'gen8',
searchShow: false,
ruleset: ['Obtainable', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Endless Battle Clause'],
},
{
name: "[Gen 8] ZU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3661968/">ZU Metagame Discussion</a>`,
],
mod: 'gen8',
ruleset: ['[Gen 8] PU'],
banlist: ['PU', 'Silvally-Electric'],
},
{
name: "[Gen 8] 1v1",
desc: `Bring three Pokémon to Team Preview and choose one to battle.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3656364/">1v1 Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3664157/">1v1 Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3657779/">1v1 Viability Rankings</a>`,
],
mod: 'gen8',
teamLength: {
validate: [1, 3],
battle: 1,
},
ruleset: ['Obtainable', 'Species Clause', 'Nickname Clause', 'OHKO Clause', 'Evasion Moves Clause', 'Accuracy Moves Clause', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Dynamax Clause', 'Endless Battle Clause'],
banlist: [
'Cinderace', 'Eternatus', 'Jirachi', 'Kyurem-Black', 'Kyurem-White', 'Lunala', 'Magearna', 'Marshadow', 'Melmetal', 'Mew', 'Mewtwo',
'Mimikyu', 'Necrozma', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Reshiram', 'Sableye', 'Solgaleo', 'Zacian', 'Zamazenta', 'Zekrom',
'Focus Sash', 'Moody', 'Perish Song',
],
},
{
name: "[Gen 8] CAP",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3656824/">CAP Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3662655/">CAP Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3658514/">CAP Viability Rankings</a>`,
],
mod: 'gen8',
ruleset: ['[Gen 8] OU', '+CAP'],
banlist: ['Clefable', 'Crucibelle-Mega'],
},
{
name: "[Gen 8] Battle Stadium Singles",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3656336/">BSS Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3658806/">BSS Viability Rankings</a>`,
],
mod: 'gen8',
forcedLevel: 50,
teamLength: {
validate: [3, 6],
battle: 3,
},
ruleset: ['Standard GBU'],
minSourceGen: 8,
},
{
name: "[Gen 8] Custom Game",
mod: 'gen8',
searchShow: false,
debug: true,
maxLevel: 9999,
battle: {trunc: Math.trunc},
defaultLevel: 100,
teamLength: {
validate: [1, 24],
battle: 24,
},
// no restrictions, for serious (other than team preview)
ruleset: ['Team Preview', 'Cancel Mod'],
},
// Sw/Sh Doubles
///////////////////////////////////////////////////////////////////
{
section: "Sw/Sh Doubles",
},
{
name: "[Gen 8] Doubles OU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3661422/">Doubles OU Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3658826/">Doubles OU Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3658242/">Doubles OU Viability Rankings</a>`,
],
mod: 'gen8',
gameType: 'doubles',
ruleset: ['Standard Doubles', 'Dynamax Clause'],
banlist: ['DUber', 'Beat Up'],
},
{
name: "[Gen 8] Doubles Ubers",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3661142/">Doubles Ubers Metagame Discussion</a>`,
],
mod: 'gen8',
gameType: 'doubles',
ruleset: ['Standard Doubles', '!Gravity Sleep Clause'],
banlist: [],
},
{
name: "[Gen 8] Doubles UU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3658504/">Doubles UU Metagame Discussion</a>`,
],
mod: 'gen8',
gameType: 'doubles',
ruleset: ['[Gen 8] Doubles OU'],
banlist: ['DOU', 'DBL'],
},
{
name: "[Gen 8] VGC 2020",
threads: [
`• <a href="https://www.pokemon.com/us/pokemon-news/2020-pokemon-video-game-championships-vgc-format-rules/">VGC 2020 Rules</a>`,
`• <a href="https://www.smogon.com/forums/threads/3657818/">VGC 2020 Sample Teams</a>`,
],
mod: 'gen8',
gameType: 'doubles',
forcedLevel: 50,
teamLength: {
validate: [4, 6],
battle: 4,
},
ruleset: ['Standard GBU', 'VGC Timer'],
minSourceGen: 8,
},
{
name: '[Gen 8] Metronome Battle',
threads: [
`• <a href="https://www.smogon.com/forums/threads/3632075/">Metronome Battle</a>`,
],
mod: 'gen8',
gameType: 'doubles',
// rated: false,
teamLength: {
validate: [2, 2],
battle: 2,
},
ruleset: ['HP Percentage Mod', 'Cancel Mod'],
banlist: [
'Pokestar Spirit', 'Battle Bond', 'Cheek Pouch', 'Cursed Body', 'Desolate Land', 'Dry Skin', 'Fluffy', 'Fur Coat', 'Gorilla Tactics',
'Grassy Surge', 'Huge Power', 'Ice Body', 'Iron Barbs', 'Libero', 'Moody', 'Parental Bond', 'Perish Body', 'Poison Heal', 'Power Construct',
'Pressure', 'Primordial Sea', 'Protean', 'Pure Power', 'Rain Dish', 'Rough Skin', 'Sand Spit', 'Sand Stream', 'Snow Warning', 'Stamina',
'Volt Absorb', 'Water Absorb', 'Wonder Guard', 'Abomasite', 'Aguav Berry', 'Assault Vest', 'Berry', 'Berry Juice', 'Berserk Gene',
'Black Sludge', 'Enigma Berry', 'Figy Berry', 'Gold Berry', 'Iapapa Berry', 'Kangaskhanite', 'Leftovers', 'Mago Berry', 'Medichamite',
'Oran Berry', 'Rocky Helmet', 'Shell Bell', 'Sitrus Berry', 'Wiki Berry', 'Shedinja + Sturdy', 'Harvest + Jaboca Berry', 'Harvest + Rowap Berry',
],
onValidateSet(set) {
const species = this.dex.getSpecies(set.species);
if (species.types.includes('Steel')) {
return [`${species.name} is a Steel-type, which is banned from Metronome Battle.`];
}
let bst = 0;
let stat: StatName;
for (stat in species.baseStats) {
bst += species.baseStats[stat];
}
if (bst > 625) {
return [`${species.name} is banned.`, `(Pok\u00e9mon with a BST higher than 625 are banned)`];
}
const item = this.dex.getItem(set.item);
if (set.item && item.megaStone) {
let bstMega = 0;
const megaSpecies = this.dex.getSpecies(item.megaStone);
let megaStat: StatName;
for (megaStat in megaSpecies.baseStats) {
bstMega += megaSpecies.baseStats[megaStat];
}
if (species.baseSpecies === item.megaEvolves && bstMega > 625) {
return [
`${set.name || set.species}'s item ${item.name} is banned.`, `(Pok\u00e9mon with a BST higher than 625 are banned)`,
];
}
}
if (set.moves.length !== 1 || this.dex.getMove(set.moves[0]).id !== 'metronome') {
return [`${set.name || set.species} has illegal moves.`, `(Pok\u00e9mon can only have one Metronome in their moveset)`];
}
},
},
{
name: "[Gen 8] Doubles Custom Game",
mod: 'gen8',
gameType: 'doubles',
searchShow: false,
maxLevel: 9999,
battle: {trunc: Math.trunc},
defaultLevel: 100,
debug: true,
teamLength: {
validate: [2, 24],
battle: 24,
},
// no restrictions, for serious (other than team preview)
ruleset: ['Team Preview', 'Cancel Mod'],
},
// National Dex
///////////////////////////////////////////////////////////////////
{
section: "National Dex",
},
{
name: "[Gen 8] National Dex",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3656899/">National Dex Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3658849/">National Dex Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3659038/">National Dex Viability Rankings</a>`,
],
mod: 'gen8',
ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Dynamax Clause', 'Sleep Clause Mod'],
banlist: [
'Alakazam-Mega', 'Arceus', 'Blastoise-Mega', 'Blaziken', 'Darkrai', 'Deoxys-Attack', 'Deoxys-Base', 'Deoxys-Speed',
'Dialga', 'Eternatus', 'Genesect', 'Gengar-Mega', 'Giratina', 'Groudon', 'Ho-Oh', 'Kangaskhan-Mega', 'Kyogre',
'Kyurem-Black', 'Kyurem-White', 'Landorus-Base', 'Lucario-Mega', 'Lugia', 'Lunala', 'Marshadow', 'Mewtwo',
'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Rayquaza', 'Reshiram',
'Salamence-Mega', 'Shaymin-Sky', 'Solgaleo', 'Xerneas', 'Yveltal', 'Zacian', 'Zamazenta', 'Zekrom', 'Zygarde-Base',
'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag', 'Baton Pass',
],
},
{
name: "[Gen 8] National Dex UU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3660920/">National Dex UU</a>`,
],
mod: 'gen8',
searchShow: false,
ruleset: ['[Gen 8] National Dex'],
banlist: [
// National Dex OU
'Blacephalon', 'Chansey', 'Clefable', 'Corviknight', 'Darmanitan-Galar', 'Dracovish', 'Dragapult', 'Excadrill', 'Ferrothorn', 'Garchomp',
'Garchomp-Mega', 'Gliscor', 'Greninja', 'Greninja-Ash', 'Heatran', 'Kartana', 'Kommo-o', 'Landorus-Therian', 'Lopunny-Mega', 'Magearna',
'Magnezone', 'Melmetal', 'Metagross-Mega', 'Pelipper', 'Rotom-Heat', 'Scizor-Mega', 'Serperior', 'Slowbro', 'Slowbro-Mega', 'Slowbro-Galar',
'Swampert-Mega', 'Tangrowth', 'Tapu Fini', 'Tapu Koko', 'Tapu Lele', 'Tornadus-Therian', 'Toxapex', 'Urshifu', 'Urshifu-Rapid-Strike',
'Volcarona', 'Zapdos',
'nduubl', // National Dex UUBL
'Aegislash', 'Alakazam', 'Azumarill', 'Charizard-Mega-X', 'Charizard-Mega-Y', 'Cinderace', 'Deoxys-Defense', 'Dragonite', 'Gallade-Mega',
'Grimmsnarl', 'Hawlucha', 'Heracross-Mega', 'Hoopa-Unbound', 'Hydreigon', 'Latias-Mega', 'Latios', 'Latios-Mega', 'Manaphy', 'Mawile-Mega',
'Medicham-Mega', 'Mew', 'Pinsir-Mega', 'Scolipede', 'Staraptor', 'Thundurus', 'Thundurus-Therian', 'Victini', 'Drizzle', 'Drought', 'Aurora Veil',
],
},
{
name: "[Gen 8] National Dex AG",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3656779/">AG Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3659562/">AG Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3658581/">AG Viability Rankings</a>`,
],
mod: 'gen8',
ruleset: ['Standard NatDex'],
},
// Pet Mods ///////////////////////////////////////////////////////////////////
{
section: "Pet Mods",
column: 2,
},
{
name: "[Gen 8] AbNormal",
threads: [
`• <a href="https://www.smogon.com/forums/threads/gen-8-abnormal-v3.3656684/">AbNormal v3</a>`,
],
mod: 'abnormal',
ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Dynamax Clause', 'Sleep Clause Mod'],
banlist: [
'Arceus', 'Blaziken', 'Darkrai', 'Deoxys-Attack', 'Deoxys-Base', 'Deoxys-Speed', 'Dialga', 'Eternatus', 'Genesect', 'Gengar-Mega',
'Giratina', 'Groudon', 'Ho-Oh', 'Kangaskhan-Mega', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base', 'Lucario-Mega',
'Lugia', 'Lunala', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa',
'Rayquaza', 'Reshiram', 'Salamence-Mega', 'Shaymin-Sky', 'Solgaleo', 'Xerneas', 'Yveltal', 'Zacian', 'Zamazenta', 'Zekrom',
'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag', 'Baton Pass',
],
},
{
name: "[Gen 8] Double Trouble",
desc: `Doubles-based metagame where Pokémon are adjusted to become DOU-viable.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3657658/">Double Trouble</a>`,
],
mod: 'doubletrouble',
gameType: 'doubles',
searchShow: false,
ruleset: ['[Gen 8] Doubles OU'],
// Dumb hack because Mawile has 5 abilities for some reason
validateSet(set, teamHas) {
const species = this.dex.getSpecies(set.species);
const ability = this.dex.getAbility(set.ability);
if (species.name === "Mawile" && set.moves.includes("Follow Me") && ability.name !== "Steelworker") {
return [`Mawile can only use Follow Me with Steelworker.`];
}
if (!(species.name === 'Mawile' && ability.name === 'Huge Power')) {
return this.validateSet(set, teamHas);
} else {
const abil = set.ability;
set.ability = 'Steelworker';
const fakeValidation = this.validateSet(set, teamHas);
if (fakeValidation?.length) return fakeValidation;
set.ability = abil;
return null;
}
},
},
{
name: "[Gen 8] Bench Abilities",
desc: [
"• <a href=https://www.smogon.com/forums/threads/.3648706/>Bench Abilities</a>",
],
ruleset: [ 'Species Clause', 'Moody Clause', 'Baton Pass Clause',
'Evasion Moves Clause', 'OHKO Clause', 'Swagger Clause', 'Endless Battle Clause',
'Team Preview', 'HP Percentage Mod', 'Sleep Clause Mod', 'Cancel Mod', 'Standard GBU',
'Standard NatDex'],
banlist: ['Unreleased', ],
mod: "benchabilities",
maxForcedLevel: 50,
teamLength: {
validate: [3, 6],
battle: 3,
},
requirePentagon: true,
onBegin: function () {
let allPokemon = this.p1.pokemon.concat(this.p2.pokemon);
for (let pokemon of allPokemon) {
let benchAbility = ''
let template = pokemon.template
if (template.abilities.S){
benchAbility = this.toID(template.abilities.S);
}
let battle = pokemon.battle;
if ( !battle.benchPokemon ) {
battle.benchPokemon = [];
// use this function to retrieve a pokemon's info table using their bench ability ( retrieves FIRST pokemon with that ability )
battle.benchPokemon.getPKMNInfo = function( ability, side )
{
let battle = side.battle
let allyBench = battle.benchPokemon[ side.id ]
ability = this.toID( ability )
for (let i = 0; i < 6; i++ ) {
let pkmnInfo = allyBench[ i ];
if ( pkmnInfo && pkmnInfo.ability === ability ) {
return pkmnInfo;
}
}
};
}
let sideID = pokemon.side.id;
if ( !battle.benchPokemon[ sideID ] ) {
battle.benchPokemon[ sideID ] = [];
}
let allyBench = battle.benchPokemon[ sideID ]
let pkmnInfo = {}
// add code here if you need more info about bench pokemon for an ability
pkmnInfo[ 'id' ] = pokemon.id;
pkmnInfo[ 'name' ] = pokemon.name;
pkmnInfo[ 'types' ] = pokemon.types;
pkmnInfo[ 'ability' ] = benchAbility;
pkmnInfo[ 'item' ] = pokemon.item;
//-----------------------------------------------------------------------
allyBench.push( pkmnInfo )
}
},
onBeforeSwitchIn: function (pokemon) {
let battle = pokemon.battle;
let sideID = pokemon.side.id;
let allyBench = battle.benchPokemon[ sideID ];
if ( battle.turn === 0 ) {
for (const ally of pokemon.side.pokemon) {
for ( var pos in allyBench ) {
if ( allyBench[ pos ].id === ally.id
|| allyBench[ pos ].id === pokemon.id )
{
delete allyBench[ pos ];
}
}
}
//Precocious Pupae move change to Stored Power ----------------------------------
let precociousPupae = [ 'kakuna', 'metapod', 'silcoon', 'cascoon', 'spewpa' ]
for (const ally of pokemon.side.pokemon) {
if ( precociousPupae.includes( pokemon.speciesid )
&& battle.getPKMNInfo( 'precociouspupae', sideID ))
{
console.log( ally.set )
}
}
//-------------------------------------------------------------------------------
}
for ( var pos in allyBench ) {
let benchAbility = allyBench[ pos ].ability
if ( benchAbility !== '' ) {
let effect = 'ability' + benchAbility;
pokemon.volatiles[effect] = {id: effect, target: pokemon};
}
}
},
onSwitchInPriority: 2,
onSwitchIn: function (pokemon) {
let battle = pokemon.battle;
let sideID = pokemon.side.id;
let allyBench = battle.benchPokemon[ sideID ];
for ( var pos in allyBench) {
let benchAbility = allyBench[ pos ].ability
if ( benchAbility !== '' ) {
let effect = 'ability' + benchAbility;
delete pokemon.volatiles[effect];
pokemon.addVolatile(effect);
}
}
},
onAfterMega: function (pokemon) {
let battle = pokemon.battle;
let sideID = pokemon.side.id;
let allyBench = battle.benchPokemon[ sideID ];
pokemon.removeVolatile('ability' + pokemon.baseAbility);
for (var pos in allyBench) {
let benchAbility = allyBench[ pos ].ability
if ( benchAbility !== '' ) {
let effect = 'ability' + benchAbility;
pokemon.addVolatile(effect);
}
}
},
},
{
name: "[Gen 8] Break This Team",
ruleset: ['Standard', 'Dynamax Clause'],
banlist: ['Uber', 'Arena Trap', 'Moody', 'Shadow Tag', 'Baton Pass'],
mod: "breakthisteam",
teambuilderFormat: "OU",
onSwitchIn(pokemon) {
if (pokemon.species.tier === "BTT") {
this.add('-start', pokemon, 'typechange', pokemon.getTypes(true).join('/'), '[silent]');
}
},
},
{
name: "[Gen 8] Breeding Variants",
desc: ["Breeding Variants, the mod where pokemon degeneracy pays off.",
],
ruleset: [ 'Standard', 'Data Mod'],
mod: 'breedingvariants',
},
{
name: "[Gen 8] CCAPM 2020",
desc: `AAACS.`,
threads: [
],
mod: 'ccapm2020',
ruleset: ['Obtainable', '!Obtainable Abilities', 'Species Clause', 'Nickname Clause', 'Ability Clause', 'OHKO Clause', 'Evasion Moves Clause', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Dynamax Clause', 'Sleep Clause Mod', 'Endless Battle Clause'],
banlist: ['All Pokemon', 'All Abilities', 'Baton Pass'],
unbanlist: ['porygon2', 'jellicent', 'crabominable', 'oricoriosensu', 'wigglytuff', 'wormadamtrash', 'heatmor', 'beheeyem', 'golbat', 'eelektross', 'togedemaru', 'garchomp', 'whimsicott', 'skuntank', 'lycanrocdusk', 'frosmoth', 'dragonair', 'reshiram', 'aegislash', 'camerupt', 'explosion', 'chesnaught', 'empoleon', 'delibird', 'adaptive', 'elemental', 'contradict', 'countershield', 'embargoact', 'exhaust', 'forager', 'identitytheft', 'inextremis', 'lagbehind', 'prepared', 'survey', 'terror', 'triggerfinger', 'unflagging'],
},
{
name: "[Gen 8] Clean Slate 2",
desc: `Ubers clean slate. Ubers clean slate.`,
threads: [
`<a href="https://www.smogon.com/forums/threads/clean-slate-2.3657640/">Clean Slate 2</a>`,
],
mod: 'cleanslate2',
banlist: ['Vivillon-Fancy', 'Vivillon-Pokeball',],
teambuilderBans: ['Unown',],
ruleset: ['Standard', 'Dynamax Clause'],
onSwitchIn(pokemon) {
this.add('-start', pokemon, 'typechange', pokemon.types.join('/'), '[silent]');
},
onValidateTeam(team, format) {
/**@type {{[k: string]: true}} */
let speciesTable = {};
for (const set of team) {
let template = this.dex.getSpecies(set.species);
if (template.tier !== 'CS2') {
return [set.species + ' is not useable in Clean Slate 2.'];
}
}
},
onModifySpecies(species, target, source, effect) {
if (this.unownStats) {
let stats = this.unownStats[ species.id ];
if (stats) {
return Object.assign({}, species,
{baseStats: stats.baseStats},
{abilities: stats.abilities},
{types: stats.types},
);
}
}
},
onChangeSet(set) {
if (set.species === 'Snorlax-Gmax') {
set.species = 'Snorlax';
}
},
},
{
name: "[Gen 8] Clean Slate Tier Shift",
desc: `Clean slate but we forgot to clean the slate between slates.`,
threads: [
// `<a href="https://www.smogon.com/forums/threads/clean-slate-2.3657640/">Clean Slate 2</a>`,
],
mod: 'csts',
ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Dynamax Clause', 'Sleep Clause Mod'],
banlist: ['Eviolite'],
onSwitchIn(pokemon) {
this.add('-start', pokemon, 'typechange', pokemon.types.join('/'), '[silent]');
},
onValidateTeam(team, format) {
/**@type {{[k: string]: true}} */
let speciesTable = {};
for (const set of team) {
let template = this.dex.getSpecies(set.species);
let tiers = [ 'CSM', 'CS1', 'CS2' ];
if ( !tiers.includes( template.tier )) {
return [set.species + ' is not useable in Clean Slate Tier Shift.'];
}
}
},
onModifySpecies(species, target, source, effect) {
let stats = this.unownStats[ species.id ];
if (stats) {
return Object.assign({}, species,
{baseStats: stats.baseStats},
{abilities: stats.abilities},
{types: stats.types},
);
};
if (!species.baseStats) return;
const boosts: {[tier: string]: number} = {
csm: 25,
cs1: 20,
};
const tier = this.toID(species.tier) || 'ou';
if (!(tier in boosts)) return;
const pokemon: Species = this.dex.deepClone(species);
const boost = boosts[tier];
let statName: StatName;
for (statName in pokemon.baseStats) {
if (statName === 'hp') continue;
pokemon.baseStats[statName] = Utils.clampIntRange(pokemon.baseStats[statName] + boost, 1, 255);
}
return pokemon;
}
},
{
name: "[Gen 8] Conniecord Draft League",
ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Dynamax Clause', 'Sleep Clause Mod', 'Anti-Invulnerability Mod', 'Z-Move Clause', 'Movexit Clause', 'Data Mod', 'Mega Data Mod'],
mod: 'conniecorddraft',
searchShow: false,
banlist: [
'Alakazam-Mega', 'Arceus', 'Blaziken', 'Deoxys-Attack', 'Deoxys-Base', 'Deoxys-Speed',
'Dialga', 'Eternatus', 'Genesect', 'Gengar-Mega', 'Giratina', 'Groudon', 'Ho-Oh', 'Kyogre',
'Kyurem-White', 'Landorus-Base', 'Lucario-Mega', 'Lugia', 'Lunala', 'Marshadow', 'Mewtwo',
'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Rayquaza', 'Reshiram',
'Salamence-Mega', 'Shaymin-Sky', 'Solgaleo', 'Xerneas', 'Yveltal', 'Zacian', 'Zamazenta', 'Zekrom',
'Latias-Mega', 'Latios-Mega', 'Mawile-Mega',
'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag',
'Alakazite', 'Gengarite', 'Lucarionite', 'Salamencite', 'Latiasite', 'Latiosite', 'Mawilite',
'Shell Smash ++ Blastoisinite', 'Seismic Toss ++ Kangaskhanite', 'Kyurem-Black ++ Dragon Dance',
'Cinderace ++ Libero', 'Kommo-o ++ Clangorous Soul', 'Greninja ++ Protean',
],
},
{
name: "[Gen 8] Crossover Chaos v2",
desc: ["• <a href=https://www.smogon.com/forums/threads/crossover-chaos-v2.3636780/>Crossover Chaos</a>",
],
ruleset: [ 'Sleep Clause Mod', 'Species Clause', 'Moody Clause', 'Evasion Moves Clause',
'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod', 'Team Preview',
'Swagger Clause', 'Baton Pass Clause', 'Obtainable', 'Standard NatDex', 'Dynamax Clause'],
banlist: ['Uber'],
teambuilderBans: ['EX'],
mod: 'crossoverchaos',
teambuilderFormat: 'OU',
onValidateTeam(team, format) {
/**@type {{[k: string]: true}} */
let speciesTable = {};
for (const set of team) {
let template = this.dex.getSpecies(set.species);
if ( template.tier === 'V1' || template.tier === 'EX' ) {
return ["You are not allowed to use pokemon from " + template.tier + ". ( " + template.species + " )"];
}
}
},
},
{
name: "[Gen 8] Crossover Chaos Expanded",
desc: ["• <a href=https://www.smogon.com/forums/threads/3647108/>Crossover Chaos</a>",
],
ruleset: [ 'Sleep Clause Mod', 'Species Clause', 'Moody Clause', 'Evasion Moves Clause',
'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod', 'Team Preview',
'Swagger Clause', 'Baton Pass Clause', 'Obtainable', 'Standard NatDex', 'Dynamax Clause'],
banlist: ['Uber'],
teambuilderBans: ['V2'],
mod: 'crossoverchaos',
teambuilderFormat: 'OU',
onValidateTeam(team, format) {
/**@type {{[k: string]: true}} */
let speciesTable = {};
for (const set of team) {
let template = this.dex.getSpecies(set.species);
if ( template.tier === 'V1' || template.tier === 'V2' ) {
return ["You are not allowed to use pokemon from " + template.tier + ". ( " + template.species + " )"];
}
}
},
},
{
name: "[Gen 8] Crossover Chaos v2 + Expanded Ubers",
desc: [
"• <a href=https://www.smogon.com/forums/threads/crossover-chaos-v2.3636780/>Crossover Chaos</a>",
"• <a href=https://www.smogon.com/forums/threads/crossover-chaos-expanded-side-project.3647108/>Crossover Chaos</a>"],
ruleset: [ 'Sleep Clause Mod', 'Species Clause', 'Moody Clause', 'Evasion Moves Clause',
'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod',
'Swagger Clause', 'Baton Pass Clause', 'Obtainable', 'Standard NatDex'],
banlist: [],
mod: 'crossoverchaos',
teambuilderFormat: 'Ubers',
},
{
name: "[Gen 8] Crossover Chaos Doubles AG",
gameType: 'doubles',
desc: [
"• <a href=https://www.smogon.com/forums/threads/crossover-chaos-v2.3636780/>Crossover Chaos</a>",
"• <a href=https://www.smogon.com/forums/threads/crossover-chaos-expanded-side-project.3647108/>Crossover Chaos</a>"],
ruleset: ['Standard NatDex'],
banlist: [],
mod: 'crossoverchaos',
},
{
name: "[Gen 7] DLCmons",
threads: [
`• <a href="https://www.smogon.com/forums/threads/dlcmons-ultra-ultra-beast-movepool-and-design-slate.3673357/">Thread in Pet Mods</a>`,
],
ruleset: ['Standard', 'Dynamax Clause', 'Data Mod'],
banlist: [
'All Pokemon', 'Arena Trap', 'Power Construct', 'Shadow Tag', 'Baton Pass', 'Gengarite', 'Kangaskhanite', 'Lucarionite', 'Metagrossite', 'Salamencite'
],
unbanlist: [
'Rowlet', 'Dartrix', 'Decidueye', 'Litten', 'Torracat', 'Incineroar', 'Popplio', 'Brionne', 'Primarina', 'Pikipek', 'Trumbeak', 'Toucannon', 'Yungoos', 'Gumshoos',
'Rattata', 'Raticate', 'Caterpie', 'Metapod', 'Butterfree', 'Ledyba', 'Ledian', 'Spinarak', 'Ariados', 'Buneary', 'Lopunny', 'Inkay', 'Malamar', 'Zorua', 'Zoroark',
'Furfrou', 'Pichu', 'Pikachu', 'Raichu', 'Grubbin', 'Charjabug', 'Vikavolt', 'Bonsly', 'Sudowoodo', 'Happiny', 'Chansey', 'Blissey', 'Munchlax', 'Snorlax',
'Slowpoke', 'Slowbro', 'Slowking', 'Wingull', 'Pelipper', 'Abra', 'Kadabra', 'Alakazam', 'Meowth', 'Persian', 'Magnemite', 'Magneton', 'Magnezone', 'Grimer', 'Muk',
'Mime Jr.', 'Mr. Mime', 'Ekans', 'Arbok', 'Dunsparce', 'Growlithe', 'Arcanine', 'Drowzee', 'Hypno', 'Makuhita', 'Hariyama', 'Smeargle', 'Crabrawler', 'Crabominable',
'Gastly', 'Haunter', 'Gengar', 'Drifloon', 'Drifblim', 'Murkrow', 'Honchkrow', 'Zubat', 'Golbat', 'Crobat', 'Noibat', 'Noivern', 'Diglett', 'Dugtrio', 'Spearow',
'Fearow', 'Rufflet', 'Braviary', 'Vullaby', 'Mandibuzz', 'Mankey', 'Primeape', 'Delibird', 'Hawlucha', 'Oricorio', 'Cutiefly',
'Ribombee', 'Flabébé', 'Floette', 'Florges', 'Petilil', 'Lilligant', 'Cottonee', 'Whimsicott', 'Psyduck', 'Golduck', 'Smoochum', 'Jynx', 'Magikarp', 'Gyarados',
'Barboach', 'Whiscash', 'Seel', 'Dewgong', 'Machop', 'Machoke', 'Machamp', 'Roggenrola', 'Boldore', 'Gigalith', 'Carbink', 'Sableye', 'Mawile', 'Rockruff',
'Lycanroc', 'Spinda', 'Tentacool', 'Tentacruel', 'Finneon', 'Lumineon', 'Wishiwashi', 'Luvdisc', 'Corsola', 'Mareanie', 'Toxapex', 'Shellder', 'Cloyster', 'Clamperl',
'Huntail', 'Gorebyss', 'Remoraid', 'Octillery', 'Mantyke', 'Mantine', 'Bagon', 'Shelgon', 'Salamence', 'Lillipup', 'Herdier', 'Stoutland', 'Eevee', 'Vaporeon',
'Jolteon', 'Flareon', 'Espeon', 'Umbreon', 'Leafeon', 'Glaceon', 'Sylveon', 'Mareep', 'Flaaffy', 'Ampharos', 'Mudbray', 'Mudsdale', 'Igglybuff', 'Jigglypuff',
'Wigglytuff', 'Tauros', 'Miltank', 'Surskit', 'Masquerain', 'Dewpider', 'Araquanid', 'Fomantis', 'Lurantis', 'Morelull', 'Shiinotic', 'Paras', 'Parasect', 'Poliwag',
'Poliwhirl', 'Poliwrath', 'Politoed', 'Goldeen', 'Seaking', 'Basculin', 'Feebas', 'Milotic', 'Alomomola', 'Fletchling', 'Fletchinder', 'Talonflame', 'Salandit',
'Salazzle', 'Cubone', 'Marowak', 'Kangaskhan', 'Magby', 'Magmar', 'Magmortar', 'Larvesta', 'Volcarona', 'Stufful', 'Bewear', 'Bounsweet', 'Steenee', 'Tsareena',
'Comfey', 'Pinsir', 'Hoothoot', 'Noctowl', 'Kecleon', 'Oranguru', 'Passimian', 'Goomy', 'Sliggoo', 'Goodra', 'Castform', 'Wimpod', 'Golisopod', 'Staryu', 'Starmie',
'Sandygast', 'Palossand', 'Omanyte', 'Omastar', 'Kabuto', 'Kabutops', 'Lileep', 'Cradily', 'Anorith', 'Armaldo', 'Cranidos', 'Rampardos', 'Shieldon', 'Bastiodon',
'Archen', 'Archeops', 'Tirtouga', 'Carracosta', 'Tyrunt', 'Tyrantrum', 'Amaura', 'Aurorus', 'Larvitar', 'Pupitar', 'Tyranitar', 'Phantump', 'Trevenant', 'Natu',
'Xatu', 'Nosepass', 'Probopass', 'Pyukumuku', 'Chinchou', 'Lanturn', 'Type: Null', 'Silvally', 'Poipole', 'Zygarde-10', 'Trubbish', 'Garbodor', 'Minccino',
'Cinccino', 'Pineco', 'Forretress', 'Skarmory', 'Ditto', 'Cleffa', 'Clefairy', 'Clefable', 'Elgyem', 'Beheeyem', 'Minior', 'Beldum', 'Metang', 'Metagross', 'Porygon',
'Porygon2', 'Porygon-Z', 'Pancham', 'Pangoro', 'Komala', 'Torkoal', 'Turtonator', 'Houndour', 'Houndoom', 'Dedenne', 'Togedemaru', 'Electrike', 'Manectric', 'Elekid',
'Electabuzz', 'Electivire', 'Geodude', 'Graveler', 'Golem', 'Sandile', 'Krokorok', 'Krookodile', 'Trapinch', 'Vibrava', 'Flygon', 'Gible', 'Gabite', 'Garchomp',
'Baltoy', 'Claydol', 'Golett', 'Golurk', 'Klefki', 'Mimikyu', 'Shuppet', 'Banette', 'Frillish', 'Jellicent', 'Bruxish', 'Drampa', 'Absol', 'Snorunt', 'Glalie',
'Froslass', 'Sneasel', 'Weavile', 'Sandshrew', 'Sandslash', 'Vulpix', 'Ninetales', 'Vanillite', 'Vanillish', 'Vanilluxe', 'Scraggy', 'Scrafty', 'Pawniard', 'Bisharp',
'Snubbull', 'Granbull', 'Shellos', 'Gastrodon', 'Relicanth', 'Dhelmise', 'Carvanha', 'Sharpedo', 'Skrelp', 'Dragalge', 'Clauncher', 'Clawitzer', 'Wailmer', 'Wailord',
'Lapras', 'Tropius', 'Exeggcute', 'Exeggutor', 'Corphish', 'Crawdaunt', 'Mienfoo', 'Mienshao', 'Jangmo-o', 'Hakamo-o', 'Kommo-o', 'Emolga', 'Scyther', 'Scizor',
'Heracross', 'Aipom', 'Ambipom', 'Litleo', 'Pyroar', 'Misdreavus', 'Mismagius', 'Druddigon', 'Lickitung', 'Lickilicky', 'Riolu', 'Lucario', 'Dratini', 'Dragonair',
'Dragonite', 'Aerodactyl', 'Tapu Koko', 'Tapu Koko-Kinolau', 'Tapu Lele', 'Tapu Lele-Kinolau', 'Tapu Bulu', 'Tapu Bulu-Kinolau', 'Tapu Fini', 'Tapu Fini-Kinolau',
'Cosmog', 'Cosmoem', 'Nihilego', 'Stakataka', 'Blacephalon', 'Buzzwole', 'Xurkitree', 'Celesteela', 'Kartana', 'Guzzlord', 'Necrozma-Base', 'Magearna', 'Zeraora',
'Plubia', 'Snoxin', 'Komodond', 'Anglevolt', 'Thundigeist', 'Forsnaken',
'Chindle', 'Chaldera', 'Flarenix', 'Firmlio', 'Irotyke', 'Coyotalloy', 'Tikilohi',
'Numel', 'Camerupt', 'Drilbur', 'Excadrill', 'Volcanion', 'Shaymin-Base', 'Heatran', 'Qwilfish', 'Krabby', 'Kingler',
'Chikorita', 'Bayleef', 'Meganium', 'Cyndaquil', 'Quilava', 'Typhlosion', 'Totodile', 'Croconaw', 'Feraligatr',
],
mod: 'gen7dlcmons',
teambuilderFormat: 'OU',
},
{
name: "[Gen 7] DLCmons VGC",
threads: [
`• <a href="https://www.smogon.com/forums/threads/dlcmons-ultra-ultra-beast-movepool-and-design-slate.3673357/">Thread in Pet Mods</a>`,
],
ruleset: ['Obtainable', 'Species Clause', 'Nickname Clause', 'Item Clause', 'Team Preview', 'Cancel Mod', 'Dynamax Clause', 'Data Mod'],
banlist: [
'All Pokemon'
],
unbanlist: [
'Rowlet', 'Dartrix', 'Decidueye', 'Litten', 'Torracat', 'Incineroar', 'Popplio', 'Brionne', 'Primarina', 'Pikipek', 'Trumbeak', 'Toucannon', 'Yungoos', 'Gumshoos',
'Rattata', 'Raticate', 'Caterpie', 'Metapod', 'Butterfree', 'Ledyba', 'Ledian', 'Spinarak', 'Ariados', 'Buneary', 'Lopunny', 'Inkay', 'Malamar', 'Zorua', 'Zoroark',
'Furfrou', 'Pichu', 'Pikachu', 'Raichu', 'Grubbin', 'Charjabug', 'Vikavolt', 'Bonsly', 'Sudowoodo', 'Happiny', 'Chansey', 'Blissey', 'Munchlax', 'Snorlax',
'Slowpoke', 'Slowbro', 'Slowking', 'Wingull', 'Pelipper', 'Abra', 'Kadabra', 'Alakazam', 'Meowth', 'Persian', 'Magnemite', 'Magneton', 'Magnezone', 'Grimer', 'Muk',
'Mime Jr.', 'Mr. Mime', 'Ekans', 'Arbok', 'Dunsparce', 'Growlithe', 'Arcanine', 'Drowzee', 'Hypno', 'Makuhita', 'Hariyama', 'Smeargle', 'Crabrawler', 'Crabominable',
'Gastly', 'Haunter', 'Gengar', 'Drifloon', 'Drifblim', 'Murkrow', 'Honchkrow', 'Zubat', 'Golbat', 'Crobat', 'Noibat', 'Noivern', 'Diglett', 'Dugtrio', 'Spearow',
'Fearow', 'Rufflet', 'Braviary', 'Vullaby', 'Mandibuzz', 'Mankey', 'Primeape', 'Delibird', 'Hawlucha', 'Oricorio', 'Cutiefly',
'Ribombee', 'Flabébé', 'Floette', 'Florges', 'Petilil', 'Lilligant', 'Cottonee', 'Whimsicott', 'Psyduck', 'Golduck', 'Smoochum', 'Jynx', 'Magikarp', 'Gyarados',
'Barboach', 'Whiscash', 'Seel', 'Dewgong', 'Machop', 'Machoke', 'Machamp', 'Roggenrola', 'Boldore', 'Gigalith', 'Carbink', 'Sableye', 'Mawile', 'Rockruff',
'Lycanroc', 'Spinda', 'Tentacool', 'Tentacruel', 'Finneon', 'Lumineon', 'Wishiwashi', 'Luvdisc', 'Corsola', 'Mareanie', 'Toxapex', 'Shellder', 'Cloyster', 'Clamperl',
'Huntail', 'Gorebyss', 'Remoraid', 'Octillery', 'Mantyke', 'Mantine', 'Bagon', 'Shelgon', 'Salamence', 'Lillipup', 'Herdier', 'Stoutland', 'Eevee', 'Vaporeon',
'Jolteon', 'Flareon', 'Espeon', 'Umbreon', 'Leafeon', 'Glaceon', 'Sylveon', 'Mareep', 'Flaaffy', 'Ampharos', 'Mudbray', 'Mudsdale', 'Igglybuff', 'Jigglypuff',
'Wigglytuff', 'Tauros', 'Miltank', 'Surskit', 'Masquerain', 'Dewpider', 'Araquanid', 'Fomantis', 'Lurantis', 'Morelull', 'Shiinotic', 'Paras', 'Parasect', 'Poliwag',
'Poliwhirl', 'Poliwrath', 'Politoed', 'Goldeen', 'Seaking', 'Basculin', 'Feebas', 'Milotic', 'Alomomola', 'Fletchling', 'Fletchinder', 'Talonflame', 'Salandit',
'Salazzle', 'Cubone', 'Marowak', 'Kangaskhan', 'Magby', 'Magmar', 'Magmortar', 'Larvesta', 'Volcarona', 'Stufful', 'Bewear', 'Bounsweet', 'Steenee', 'Tsareena',
'Comfey', 'Pinsir', 'Hoothoot', 'Noctowl', 'Kecleon', 'Oranguru', 'Passimian', 'Goomy', 'Sliggoo', 'Goodra', 'Castform', 'Wimpod', 'Golisopod', 'Staryu', 'Starmie',
'Sandygast', 'Palossand', 'Omanyte', 'Omastar', 'Kabuto', 'Kabutops', 'Lileep', 'Cradily', 'Anorith', 'Armaldo', 'Cranidos', 'Rampardos', 'Shieldon', 'Bastiodon',
'Archen', 'Archeops', 'Tirtouga', 'Carracosta', 'Tyrunt', 'Tyrantrum', 'Amaura', 'Aurorus', 'Larvitar', 'Pupitar', 'Tyranitar', 'Phantump', 'Trevenant', 'Natu',
'Xatu', 'Nosepass', 'Probopass', 'Pyukumuku', 'Chinchou', 'Lanturn', 'Type: Null', 'Silvally', 'Poipole', 'Naganadel', 'Trubbish', 'Garbodor', 'Minccino',
'Cinccino', 'Pineco', 'Forretress', 'Skarmory', 'Ditto', 'Cleffa', 'Clefairy', 'Clefable', 'Elgyem', 'Beheeyem', 'Minior', 'Beldum', 'Metang', 'Metagross', 'Porygon',
'Porygon2', 'Porygon-Z', 'Pancham', 'Pangoro', 'Komala', 'Torkoal', 'Turtonator', 'Houndour', 'Houndoom', 'Dedenne', 'Togedemaru', 'Electrike', 'Manectric', 'Elekid',
'Electabuzz', 'Electivire', 'Geodude', 'Graveler', 'Golem', 'Sandile', 'Krokorok', 'Krookodile', 'Trapinch', 'Vibrava', 'Flygon', 'Gible', 'Gabite', 'Garchomp',
'Baltoy', 'Claydol', 'Golett', 'Golurk', 'Klefki', 'Mimikyu', 'Shuppet', 'Banette', 'Frillish', 'Jellicent', 'Bruxish', 'Drampa', 'Absol', 'Snorunt', 'Glalie',
'Froslass', 'Sneasel', 'Weavile', 'Sandshrew', 'Sandslash', 'Vulpix', 'Ninetales', 'Vanillite', 'Vanillish', 'Vanilluxe', 'Scraggy', 'Scrafty', 'Pawniard', 'Bisharp',
'Snubbull', 'Granbull', 'Shellos', 'Gastrodon', 'Relicanth', 'Dhelmise', 'Carvanha', 'Sharpedo', 'Skrelp', 'Dragalge', 'Clauncher', 'Clawitzer', 'Wailmer', 'Wailord',
'Lapras', 'Tropius', 'Exeggcute', 'Exeggutor', 'Corphish', 'Crawdaunt', 'Mienfoo', 'Mienshao', 'Jangmo-o', 'Hakamo-o', 'Kommo-o', 'Emolga', 'Scyther', 'Scizor',
'Heracross', 'Aipom', 'Ambipom', 'Litleo', 'Pyroar', 'Misdreavus', 'Mismagius', 'Druddigon', 'Lickitung', 'Lickilicky', 'Riolu', 'Lucario', 'Dratini', 'Dragonair',
'Dragonite', 'Aerodactyl', 'Tapu Koko', 'Tapu Koko-Kinolau', 'Tapu Lele', 'Tapu Lele-Kinolau', 'Tapu Bulu', 'Tapu Bulu-Kinolau', 'Tapu Fini', 'Tapu Fini-Kinolau',
'Nihilego', 'Stakataka', 'Blacephalon', 'Buzzwole', 'Pheromosa', 'Xurkitree', 'Celesteela', 'Kartana', 'Guzzlord', 'Plubia', 'Snoxin', 'Komodond', 'Anglevolt', 'Thundigeist', 'Forsnaken',
'Chindle', 'Chaldera', 'Flarenix', 'Firmlio', 'Irotyke', 'Coyotalloy', 'Tikilohi',
'Numel', 'Camerupt', 'Drilbur', 'Excadrill', 'Volcanion', 'Shaymin-Base', 'Heatran', 'Qwilfish', 'Krabby', 'Kingler',
'Chikorita', 'Bayleef', 'Meganium', 'Cyndaquil', 'Quilava', 'Typhlosion', 'Totodile', 'Croconaw', 'Feraligatr',
],
gameType: 'doubles',
forcedLevel: 50,
teamLength: {
validate: [4, 6],
battle: 4,
},
timer: {
starting: 5 * 60,
addPerTurn: 0,
maxPerTurn: 55,
maxFirstTurn: 90,
grace: 90,
timeoutAutoChoose: true,
dcTimerBank: false,
},
minSourceGen: 7,
mod: 'gen7dlcmons',
teambuilderFormat: 'Doubles OU',
},
{
name: "[Gen 8] Fusion Evolution Alpha",
desc: ["• Fusion Evolution Alpha",
],
ruleset: ['Standard', 'Dynamax Clause', 'Data Mod', 'Mega Data Mod'],
banlist: [
'All Pokemon', /*'Aloraichium Z', 'Buginium Z', 'Darkinium Z', 'Decidium Z', 'Dragonium Z', 'Eevium Z', 'Electrium Z', 'Fairium Z', 'Fightinium Z',
'Firium Z', 'Flyinium Z', 'Ghostium Z', 'Grassium Z', 'Groundium Z', 'Icium Z', 'Incinium Z', 'Kommonium Z', 'Lunalium Z', 'Lycanium Z', 'Marshadium Z',
'Mewnium Z', 'Mimikium Z', 'Normalium Z', 'Pikanium Z', 'Pikashunium Z', 'Poisonium Z', 'Primarium Z', 'Psychium Z', 'Rockium Z', 'Snorlium Z', 'Solganium Z',
'Steelium Z', 'Tapunium Z', 'Ultranecrozium Z', 'Waterium Z',*/
],
unbanlist: [
//Slate 1
'Uranus', 'Saturn',
//Slate 2
'Doot', 'Mr. Gross', 'Pluto', 'Zeus',
//Slate 3
'Picante', 'Mr. Volcano', 'Vespithorn', 'Ishtar',
//Slate 4
'Ananke', 'Dark Rose', 'Kratos', 'White Rider',
//Slate 5
'Curchys-Peed', 'Corvilord', 'Kord', "Sir Pass'd",
//Slate 6
'Teepee', 'Composite', 'Alilat', 'Umbrisse',
//Slate 7
'Black Rider', 'Frother', 'Beezone', 'Toxiking',
//Slate 8
'Norn', 'Oni', 'Ares', 'Armalion',
//Slate 9
'Nug', 'Tyragor', 'Pale Rider', 'Laurorusorus', 'Hypnihil',
//
],
mod: 'fealpha',
},
{
name: "[Gen 8] Fusion Evolution UU",
mod: "feuu",
threads: [
`• <a href="https://www.smogon.com/forums/threads/fusion-evolution-under-used-submission-slate-3.3674163/">Thread in Pet Mods</a>`
],
ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Dynamax Clause', 'Sleep Clause Mod', 'Z-Move Clause', 'Data Mod', 'Mega Data Mod'],
banlist: [
'All Pokemon', 'Tapu Lopunnite', 'Tapu Lop-Mega',
],
unbanlist: [
'Volquag', 'Toxalure', 'Kingtsar', 'Tanette', 'Slowton',
'Flaant', 'Umbat', 'Chomplim', 'Chomplim-Mega', 'Xotalion', 'Miemie', 'Dusking', 'Jelliswine',
'Pigapult', 'Lycanserker-Dusk', 'Tapu Lop', 'Dragontler', 'Eternabat',
'Grimmlurk', 'Manicuno-Galar', 'Yacian-Crowned', 'Cryogolem', 'Stoudrago',
'Silvino-Bug', 'Silvino-Dark', 'Silvino-Dragon', 'Silvino-Electric', 'Silvino-Fairy', 'Silvino-Fighting',
'Silvino-Fire', 'Silvino-Flying', 'Silvino-Ghost', 'Silvino-Grass', 'Silvino-Ground', 'Silvino-Ice',
'Silvino-Poison', 'Silvino-Psychic', 'Silvino-Rock', 'Silvino-Steel', 'Silvino-Water', 'Silvino',
'Silvino-Bug-Mega', 'Silvino-Dark-Mega', 'Silvino-Dragon-Mega',
'Silvino-Electric-Mega', 'Silvino-Fairy-Mega', 'Silvino-Fighting-Mega',
'Silvino-Fire-Mega', 'Silvino-Flying-Mega', 'Silvino-Ghost-Mega',
'Silvino-Grass-Mega', 'Silvino-Ground-Mega', 'Silvino-Ice-Mega',
'Silvino-Poison-Mega', 'Silvino-Psychic-Mega', 'Silvino-Rock-Mega',
'Silvino-Steel-Mega', 'Silvino-Water-Mega', 'Silvino-Mega',
],
},
{
name: "[Gen 8] Megas for All",
desc: ["• Megas for All v7",
],
ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Dynamax Clause', 'Sleep Clause Mod', 'Freeze Clause Mod', 'Mega Data Mod'],
banlist: [
'Alakazite', 'Arceus', 'Blastoisinite', 'Blaziken', 'Cinderace', 'Darkrai', 'Darmanitan-Galar', 'Deoxys-Attack', 'Deoxys-Base', 'Deoxys-Speed', 'Dialga', 'Dracovish',
'Dragapult', 'Eternatus', 'Genesect', 'Gengarite', 'Giratina', 'Groudon', 'Ho-Oh', 'Kangaskhanite', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base',
'Lucarionite', 'Lugia', 'Lunala', 'Marshadow', 'Metagrossite', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Necrozma-Ultra',
'Palkia', 'Pheromosa', 'Rayquaza', 'Reshiram', 'Salamencite', 'Shaymin-Sky', 'Solgaleo', 'Spectrier', 'Tornadus-Therian', 'Urshifu-Base', 'Xerneas', 'Yveltal',
'Zacian', 'Zamazenta', 'Zekrom', 'Zygarde-Base', 'Zygarde-Complete', 'Calyrex-Ice', 'Calyrex-Shadow', 'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag',
'Baton Pass',
],
mod: 'm4av6',
},
/*
{
name: "[Gen 8] M4A Doubles",
desc: ["• Megas for All v7 but it's a doubles format",
],
ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Dynamax Clause', 'Sleep Clause Mod', 'Freeze Clause Mod', 'Mega Data Mod'],
banlist: [
'Mewtwo', 'Lugia', 'Ho-Oh', 'Kyogre', 'Groudon', 'Rayquaza', 'Jirachi', 'Dialga', 'Palkia', 'Giratina',
'Giratina-Origin', 'Arceus', 'Volcarona', 'Reshiram', 'Zekrom', 'Kyurem-Black', 'Kyurem-White', 'Xerneas',
'Yveltal', 'Solgaleo', 'Lunala', 'Magearna', 'Marshadow', 'Necrozma-Dusk Mane', 'Necrozma-Dawn Wings',
'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Eternatus', 'Urshifu', 'Calyrex-Ice', 'Calyrex-Shadow',
],
mod: 'm4av6',
gameType: 'doubles',
searchShow: false,
},
*/
{
name: "[Gen 8] M4A VGC",
desc: ["• Megas for All v7 but it's a VGC format",
],
gameType: 'doubles',
forcedLevel: 50,
teamLength: {
validate: [4, 6],
battle: 4,
},
ruleset: ['Standard GBU', '+Unobtainable', '+Past', 'VGC Timer', 'Dynamax Clause', 'Mega Data Mod'],
mod: 'm4av6',
teambuilderFormat: 'Doubles OU',
onValidateSet(set) {
// These Pokemon are still unobtainable
const unobtainables = [
'Eevee-Starter', 'Floette-Eternal', 'Pichu-Spiky-eared', 'Pikachu-Belle', 'Pikachu-Cosplay', 'Pikachu-Libre',
'Pikachu-PhD', 'Pikachu-Pop-Star', 'Pikachu-Rock-Star', 'Pikachu-Starter', 'Eternatus-Eternamax',
];
const species = this.dex.getSpecies(set.species);
if (unobtainables.includes(species.name)) {
if (this.ruleTable.has(`+pokemon:${species.id}`)) return;
return [`${set.name || set.species} does not exist in the National Dex.`];