forked from sirDonovan/Lanette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformats.ts
17433 lines (16263 loc) · 697 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 = [
// S/V Singles
///////////////////////////////////////////////////////////////////
{
section: "S/V Singles",
},
{
name: "[Gen 9] Random Battle",
desc: `Randomized teams of Pokémon with sets that are generated to be competitively viable.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3712619/">Random Battle Suggestions</a>`,
],
mod: 'gen9',
team: 'random',
ruleset: ['PotD', 'Obtainable', 'Species Clause', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Clause Mod', 'Illusion Level Mod'],
},
{
name: "[Gen 9] Unrated Random Battle",
mod: 'gen9',
team: 'random',
challengeShow: false,
rated: false,
ruleset: ['Obtainable', 'Species Clause', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Clause Mod', 'Illusion Level Mod'],
},
{
name: "[Gen 9] Free-For-All Random Battle",
mod: 'gen9',
team: 'random',
gameType: 'freeforall',
tournamentShow: false,
rated: false,
ruleset: ['Obtainable', 'Species Clause', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Clause Mod', 'Illusion Level Mod'],
},
{
name: "[Gen 9] Random Battle (Blitz)",
mod: 'gen9',
team: 'random',
ruleset: ['[Gen 9] Random Battle', 'Blitz'],
},
{
name: "[Gen 9] Multi Random Battle",
mod: 'gen9',
team: 'random',
gameType: 'multi',
searchShow: false,
tournamentShow: false,
rated: false,
ruleset: [
'Max Team Size = 3',
'Obtainable', 'Species Clause', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Clause Mod', 'Illusion Level Mod',
],
},
{
name: "[Gen 9] OU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3732644/">SV OU Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3712513/">SV OU Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3732813/">SV OU Viability Rankings</a>`,
],
mod: 'gen9',
ruleset: ['Standard', 'Sleep Moves Clause', '!Sleep Clause Mod'],
banlist: ['Uber', 'AG', 'Arena Trap', 'Moody', 'Sand Veil', 'Shadow Tag', 'Snow Cloak', 'King\'s Rock', 'Razor Fang', 'Baton Pass', 'Last Respects', 'Shed Tail'],
},
{
name: "[Gen 9] Ubers",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3732719/">Ubers Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3724082/">Ubers Viability Rankings</a>`,
],
mod: 'gen9',
ruleset: ['Standard'],
banlist: ['AG', 'Moody', 'King\'s Rock', 'Razor Fang', 'Baton Pass', 'Last Respects'],
},
{
name: "[Gen 9] UU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3728797/">UU Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3729854/">UU Viability Rankings</a>`,
`• <a href="https://www.smogon.com/forums/threads/3720278/">UU Sample Teams</a>`,
],
mod: 'gen9',
ruleset: ['[Gen 9] OU'],
banlist: ['OU', 'UUBL'],
},
{
name: "[Gen 9] RU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3725482/">RU Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3729823/">RU Viability Rankings</a>`,
`• <a href="https://www.smogon.com/forums/threads/3717072/">RU Sample Teams</a>`,
],
mod: 'gen9',
ruleset: ['[Gen 9] UU'],
banlist: ['UU', 'RUBL', 'Light Clay'],
},
{
name: "[Gen 9] NU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3715408/">NU Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3729943/">NU Viability Rankings</a>`,
`• <a href="https://www.smogon.com/forums/threads/3730216/">NU Sample Teams</a>`,
],
mod: 'gen9',
ruleset: ['[Gen 9] RU'],
banlist: ['RU', 'NUBL', 'Quick Claw'],
},
{
name: "[Gen 9] PU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3729623/">PU Viability Rankings</a>`,
`• <a href="https://www.smogon.com/forums/threads/3719989/">PU Sample Teams</a>`,
],
mod: 'gen9',
ruleset: ['[Gen 9] NU'],
banlist: ['NU', 'PUBL', 'Damp Rock'],
},
{
name: "[Gen 9] LC",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3710868/">Little Cup Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3712989/">Little Cup Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3712664/">Little Cup Viability Rankings</a>`,
],
mod: 'gen9',
ruleset: ['Little Cup', 'Standard'],
banlist: [
'Aipom', 'Basculin-White-Striped', 'Cutiefly', 'Diglett-Base', 'Dunsparce', 'Duraludon', 'Flittle', 'Gastly', 'Girafarig', 'Gligar',
'Meditite', 'Misdreavus', 'Murkrow', 'Porygon', 'Qwilfish-Hisui', 'Rufflet', 'Scraggy', 'Scyther', 'Sneasel', 'Sneasel-Hisui',
'Snivy', 'Stantler', 'Vulpix', 'Vulpix-Alola', 'Yanma', 'Moody', 'Baton Pass', 'Sticky Web',
],
},
{
name: "[Gen 9] Monotype",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3727849/">Monotype Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3727976/">Monotype Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3729937/">Monotype Viability Rankings</a>`,
],
mod: 'gen9',
ruleset: ['Standard', 'Evasion Abilities Clause', 'Same Type Clause', 'Terastal Clause'],
banlist: [
'Annihilape', 'Arceus', 'Baxcalibur', 'Calyrex-Ice', 'Calyrex-Shadow', 'Chi-Yu', 'Chien-Pao', 'Blaziken', 'Deoxys-Base', 'Deoxys-Attack',
'Dialga', 'Dialga-Origin', 'Eternatus', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Iron Bundle', 'Koraidon', 'Kyogre',
'Kyurem-Black', 'Kyurem-White', 'Lugia', 'Lunala', 'Magearna', 'Mewtwo', 'Miraidon', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane',
'Palafin', 'Palkia', 'Palkia-Origin', 'Rayquaza', 'Reshiram', 'Shaymin-Sky', 'Solgaleo', 'Ursaluna-Bloodmoon', 'Urshifu-Base',
'Zacian', 'Zacian-Crowned', 'Zamazenta-Crowned', 'Zekrom', 'Moody', 'Shadow Tag', 'Booster Energy', 'Damp Rock', 'Focus Band',
'King\'s Rock', 'Quick Claw', 'Razor Fang', 'Smooth Rock', 'Acupressure', 'Baton Pass', 'Last Respects', 'Shed Tail',
],
},
{
name: "[Gen 9] CAP",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3712857/">SV CAP Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3718107/">SV CAP Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3714023/">SV CAP Viability Rankings</a>`,
],
mod: 'gen9',
ruleset: ['[Gen 9] OU', '+CAP'],
banlist: ['Crucibellite'],
},
{
name: "[Gen 9] BSS Reg F",
mod: 'gen9',
bestOfDefault: true,
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 9', 'VGC Timer'],
banlist: [],
},
{
name: "[Gen 9] BSS Reg G",
mod: 'gen9',
bestOfDefault: true,
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 9', 'VGC Timer', 'Limit One Restricted'],
restricted: ['Restricted Legendary'],
},
{
name: "[Gen 9] Custom Game",
mod: 'gen9',
searchShow: false,
debug: true,
battle: {trunc: Math.trunc},
// no restrictions, for serious (other than team preview)
ruleset: ['Team Preview', 'Cancel Mod', 'Max Team Size = 24', 'Max Move Count = 24', 'Max Level = 9999', 'Default Level = 100'],
},
// S/V Doubles
///////////////////////////////////////////////////////////////////
{
section: "S/V Doubles",
},
{
name: "[Gen 9] Random Doubles Battle",
mod: 'gen9',
gameType: 'doubles',
team: 'random',
ruleset: ['PotD', 'Obtainable', 'Species Clause', 'HP Percentage Mod', 'Cancel Mod', 'Illusion Level Mod', 'Sleep Clause Mod'],
},
{
name: "[Gen 9] Doubles OU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3710876/">Doubles OU Sample Teams</a>`,
],
mod: 'gen9',
gameType: 'doubles',
ruleset: ['Standard Doubles'],
banlist: ['DUber', 'Shadow Tag'],
},
{
name: "[Gen 9] Doubles Ubers",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3712864/">Doubles Ubers</a>`,
],
mod: 'gen9',
gameType: 'doubles',
ruleset: ['Standard Doubles', '!Gravity Sleep Clause'],
},
{
name: "[Gen 9] Doubles UU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3712825/">Doubles UU</a>`,
],
mod: 'gen9',
gameType: 'doubles',
ruleset: ['[Gen 9] Doubles OU', 'Evasion Abilities Clause'],
banlist: ['DOU', 'DBL'],
},
{
name: "[Gen 9] Doubles LC",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3710957/">Doubles LC</a>`,
],
mod: 'gen9',
gameType: 'doubles',
searchShow: false,
ruleset: ['Standard Doubles', 'Little Cup', 'Sleep Clause Mod'],
banlist: ['Basculin-White-Striped', 'Dunsparce', 'Duraludon', 'Gligar', 'Murkrow', 'Qwilfish-Hisui', 'Scyther', 'Sneasel', 'Sneasel-Hisui', 'Vulpix', 'Vulpix-Alola', 'Yanma'],
},
{
name: "[Gen 9] VGC 2023 Reg D",
mod: 'gen9predlc',
gameType: 'doubles',
searchShow: false,
bestOfDefault: true,
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 9', 'VGC Timer', 'Open Team Sheets'],
banlist: ['Walking Wake', 'Iron Leaves'],
},
{
name: "[Gen 9] VGC 2024 Reg G",
mod: 'gen9',
gameType: 'doubles',
bestOfDefault: true,
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 9', 'VGC Timer', 'Open Team Sheets', 'Limit One Restricted'],
restricted: ['Restricted Legendary'],
},
{
name: "[Gen 9] VGC 2024 Reg G (Bo3)",
mod: 'gen9',
gameType: 'doubles',
challengeShow: false,
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 9', 'VGC Timer', 'Force Open Team Sheets', 'Best of = 3', 'Limit One Restricted'],
restricted: ['Restricted Legendary'],
},
{
name: "[Gen 9] Doubles Custom Game",
mod: 'gen9',
gameType: 'doubles',
searchShow: false,
battle: {trunc: Math.trunc},
debug: true,
// no restrictions, for serious (other than team preview)
ruleset: ['Team Preview', 'Cancel Mod', 'Max Team Size = 24', 'Max Move Count = 24', 'Max Level = 9999', 'Default Level = 100'],
},
// S/V Doubles
///////////////////////////////////////////////////////////////////
{
section: "Unofficial Metagames",
},
{
name: "[Gen 9] 1v1",
desc: `Bring three Pokémon to Team Preview and choose one to battle.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3710864/">1v1 Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3712375/">1v1 Viability Rankings</a>`,
],
mod: 'gen9',
ruleset: [
'Picked Team Size = 1', 'Max Team Size = 3',
'Standard', 'Terastal Clause', 'Sleep Moves Clause', 'Accuracy Moves Clause', '!Sleep Clause Mod',
],
banlist: [
'Arceus', 'Archaludon', 'Calyrex-Ice', 'Calyrex-Shadow', 'Chi-Yu', 'Cinderace', 'Deoxys', 'Deoxys-Attack', 'Deoxys-Defense', 'Deoxys-Speed',
'Dialga', 'Dialga-Origin', 'Dragonite', 'Eternatus', 'Flutter Mane', 'Gholdengo', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Jirachi',
'Koraidon', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Lugia', 'Lunala', 'Magearna', 'Meloetta', 'Mew', 'Mewtwo', 'Mimikyu', 'Miraidon', 'Necrozma',
'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Ogerpon-Cornerstone', 'Palkia', 'Palkia-Origin', 'Rayquaza', 'Reshiram', 'Scream Tail', 'Shaymin-Sky',
'Snorlax', 'Solgaleo', 'Terapagos', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Moody', 'Focus Band', 'Focus Sash',
'King\'s Rock', 'Razor Fang', 'Quick Claw', 'Acupressure', 'Perish Song',
],
},
{
name: "[Gen 9] 2v2 Doubles",
desc: `Double battle where you bring four Pokémon to Team Preview and choose only two.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3710849/">2v2 Doubles</a>`,
],
mod: 'gen9',
gameType: 'doubles',
ruleset: [
'Picked Team Size = 2', 'Max Team Size = 4',
'Standard Doubles', 'Accuracy Moves Clause', 'Terastal Clause', 'Sleep Clause Mod', 'Evasion Items Clause',
],
banlist: [
'Arceus', 'Calyrex-Ice', 'Calyrex-Shadow', 'Chi-Yu', 'Deoxys-Attack', 'Dialga', 'Dialga-Origin', 'Eternatus', 'Giratina', 'Giratina-Origin',
'Groudon', 'Ho-Oh', 'Iron Hands', 'Koraidon', 'Kyogre', 'Kyurem-White', 'Lugia', 'Lunala', 'Magearna', 'Mewtwo', 'Miraidon', 'Necrozma-Dawn-Wings',
'Necrozma-Dusk-Mane', 'Palkia', 'Palkia-Origin', 'Rayquaza', 'Reshiram', 'Solgaleo', 'Urshifu', 'Urshifu-Rapid-Strike', 'Zacian', 'Zacian-Crowned',
'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Commander', 'Moody', 'Focus Sash', 'King\'s Rock', 'Razor Fang', 'Ally Switch', 'Final Gambit',
'Perish Song', 'Swagger',
],
},
{
name: "[Gen 8] Multi Monotype Random Battle",
desc: `All the Pokémon on a team must share a type; Free for All Battles for 4 players.`,
mod: 'gen8',
team: 'random',
gameType: 'multi',
tournamentShow: true,
rated: false,
ruleset: ['Obtainable', 'Species Clause', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Clause Mod', 'Same Type Clause', 'Standard', 'Dynamax Clause'],
},
{
name: "[Gen 9] VGC 2023",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3677186/">VGC 2022 Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3695848/">VGC 2022 Sample Teams</a>`,
`• <a href="https://www.smogon.com/forums/threads/3696395/">VGC 2022 Viability Rankings</a>`,
],
mod: 'gen9',
gameType: 'doubles',
// searchShow: false,
ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 9', 'VGC Timer', 'Limit Two Restricted'],
restricted: ['Restricted Legendary'],
},
// National Dex
///////////////////////////////////////////////////////////////////
{
section: "National Dex",
},
{
name: "[Gen 9] Anything Goes",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3722196/">AG Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3724219/">AG Viability Rankings</a>`,
`• <a href="https://www.smogon.com/forums/threads/3727176/">AG Sample Teams</a>`,
],
mod: 'gen9',
ruleset: ['Min Source Gen = 9', 'Obtainable', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Endless Battle Clause'],
},
{
name: "[Gen 9] Ubers UU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3731761/">Ubers UU Metagame Discussion</a>`,
`• <a href="https://www.smogon.com/forums/threads/3731754/">Ubers UU Viability Rankings</a>`,
`• <a href="https://www.smogon.com/forums/threads/3731755/">Ubers UU Sample Teams</a>`,
],
mod: 'gen9',
ruleset: ['[Gen 9] Ubers'],
banlist: [
// Ubers OU
'Arceus-Base', 'Arceus-Fairy', 'Arceus-Ground', 'Calyrex-Ice', 'Clodsire', 'Deoxys-Attack', 'Eternatus', 'Flutter Mane',
'Giratina-Origin', 'Glimmora', 'Gliscor', 'Grimmsnarl', 'Groudon', 'Hatterene', 'Ho-Oh', 'Iron Bundle', 'Kingambit',
'Koraidon', 'Kyogre', 'Kyurem-Black', 'Miraidon', 'Necrozma-Dusk-Mane', 'Rayquaza', 'Ribombee', 'Skeledirge', 'Ting-Lu',
'Zacian-Crowned',
// Ubers UUBL
'Arceus-Fire', 'Arceus-Flying', 'Arceus-Ghost', 'Arceus-Steel', 'Arceus-Water', 'Lunala', 'Shaymin-Sky', 'Zekrom',
],
},
{
name: "[Gen 9] ZU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3719022/">ZU Metagame Discussion</a>`,
],
mod: 'gen9',
ruleset: ['[Gen 9] PU'],
banlist: ['PU', 'ZUBL'],
},
{
name: "[Gen 9] Free-For-All",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3711724/">Free-For-All</a>`,
],
mod: 'gen9',
gameType: 'freeforall',
rated: false,
tournamentShow: false,
ruleset: ['Standard', 'Sleep Moves Clause', '!Sleep Clause Mod', '!Evasion Items Clause'],
banlist: [
'Annihilape', 'Arceus', 'Calyrex-Ice', 'Calyrex-Shadow', 'Chi-Yu', 'Chien-Pao', 'Darkrai', 'Deoxys-Base', 'Deoxys-Attack', 'Dialga', 'Dialga-Origin',
'Dondozo', 'Eternatus', 'Flutter Mane', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Hoopa-Unbound', 'Iron Bundle', 'Koraidon', 'Kyogre',
'Kyurem-White', 'Landorus-Base', 'Lugia', 'Lunala', 'Magearna', 'Mewtwo', 'Miraidon', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Ogerpon-Hearthflame',
'Palkia', 'Palkia-Origin', 'Rayquaza', 'Reshiram', 'Shaymin-Sky', 'Solgaleo', 'Spectrier', 'Terapagos', 'Ursaluna', 'Ursaluna-Bloodmoon', 'Urshifu',
'Urshifu-Rapid-Strike', 'Zacian', 'Zacian-Crowned', 'Zekrom', 'Moody', 'Shadow Tag', 'Toxic Chain', 'Toxic Debris', 'Acupressure', 'Aromatic Mist',
'Baton Pass', 'Coaching', 'Court Change', 'Decorate', 'Dragon Cheer', 'Final Gambit', 'Flatter', 'Floral Healing', 'Follow Me', 'Heal Pulse',
'Last Respects', 'Malignant Chain', 'Poison Fang', 'Rage Powder', 'Spicy Extract', 'Swagger', 'Toxic', 'Toxic Spikes',
],
},
{
name: "[Gen 9] LC UU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3711750/">LC UU Metagame Discussion</a>`,
],
mod: 'gen9',
searchShow: false,
ruleset: ['[Gen 9] LC'],
banlist: [
'Chinchou', 'Diglett-Alola', 'Elekid', 'Foongus', 'Glimmet', 'Gothita', 'Grimer-Alola', 'Grookey', 'Growlithe-Hisui', 'Impidimp',
'Koffing', 'Magby', 'Mareanie', 'Mienfoo', 'Minccino', 'Mudbray', 'Pawniard', 'Sandshrew-Alola', 'Shellder', 'Shellos', 'Snubbull',
'Stunky', 'Timburr', 'Tinkatink', 'Toedscool', 'Trapinch', 'Voltorb-Hisui', 'Vullaby',
],
},
{
name: "[Gen 9] NFE",
desc: `Only Pokémon that can evolve are allowed.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3710638/">NFE</a>`,
`• <a href="https://www.smogon.com/forums/threads/3712567/">NFE Resources</a>`,
],
mod: 'gen9',
searchShow: false,
ruleset: ['Standard OMs', 'Not Fully Evolved', 'Sleep Moves Clause', 'Terastal Clause'],
banlist: [
'Basculin-White-Striped', 'Bisharp', 'Chansey', 'Dipplin', 'Duraludon', 'Gurdurr', 'Haunter', 'Magmar', 'Magneton', 'Porygon2', 'Primeape',
'Qwilfish-Hisui', 'Rhydon', 'Scyther', 'Sneasel', 'Sneasel-Hisui', 'Ursaring', 'Vulpix-Base', 'Arena Trap', 'Magnet Pull', 'Shadow Tag',
'Baton Pass',
],
},
// Other National Dex Tiers
///////////////////////////////////////////////////////////////////
{
section: "Other National Dex Tiers",
},
{
name: "[Gen 9] National Dex UUbers",
mod: 'gen9',
ruleset: ['Standard NatDex'],
banlist: [
'AG', 'Uber', 'Power Construct', 'Ultranecrozium Z',
'Arceus-Base', 'Arceus-Dark', 'Arceus-Fairy', 'Arceus-Ground', 'Arceus-Ghost', 'Calyrex-Ice', 'Chansey', 'Chi-Yu', 'Deoxys-Attack', 'Ditto', 'Eternatus', 'Giratina-Origin', 'Glimmora', 'Grimmsnarl',
'Groudon-Primal', 'Ho-Oh', 'Kingambit', 'Kyogre', 'Marshadow', 'Melmetal', 'Mewtwo-Mega-Y', 'Necrozma-Dusk-Mane', 'Rayquaza', 'Salamence-Mega', 'Shaymin-Sky',
'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zygarde-Base',
],
},
{
name: "[Gen 9] National Dex NU",
mod: 'gen9',
ruleset: ['[Gen 9] National Dex RU'],
banlist: ['ND RU', 'Thundurus', 'Sharpedo-Mega', 'Conkeldurr','Staraptor', 'Manectric-Mega', 'Scolipede', 'Durant', 'Primarina', 'Nidoking', 'Arctozolt'],
unbanlist: ['Slowbronite'],
},
{
name: "[Gen 9] National Dex PU",
mod: 'gen9',
ruleset: ['[Gen 9] National Dex RU'],
banlist: ['ND RU', 'Thundurus', 'Sharpedo-Mega', 'Conkeldurr', 'Staraptor', 'Manectric-Mega', 'Scolipede', 'Durant', 'Primarina', 'Nidoking', 'Arctozolt',
'Absol-Mega', 'Bronzong', 'Chandelure', 'Chesnaught', 'Cyclizar', 'Diggersby', 'Donphan', 'Empoleon', 'Feraligatr', 'Flygon', 'Froslass', 'Gigalith',
'Golisopod', 'Houndoom-Mega', 'Houndstone', 'Iron Jugulis', 'Iron Thorns', 'Krookodile', 'Lycanroc', 'Milotic', 'Ninetales', 'Orthworm', 'Pidgeot-Mega',
'Porygon2', 'Raikou', 'Registeel', 'Rhyperior', 'Seismitoad', 'Sharpedo', 'Shaymin', 'Shuckle', 'Slowbro-Galar', 'Sylveon', 'Tangrowth', 'Tinkaton', 'Torkoal',
'Tornadus', 'Toxtricity', 'Lokix', 'Nidoqueen', 'Obstagoon', 'Oricorio-Pom-Pom', 'Scream Tail', 'Stakataka', 'Suicune', 'Venomoth', 'Damp Rock'],
},
{
name: "[Gen 9] National Dex STABmons",
mod: 'gen9',
ruleset: ['Standard NatDex', 'STABmons Move Legality','OHKO Clause', 'Evasion Clause', 'Species Clause', 'Sleep Clause Mod','Sleep Moves Clause','Terastal Clause'],
banlist: [
'ND Uber', 'ND AG', 'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag', 'King\'s Rock',
'Quick Claw', 'Razor Fang', 'Assist', 'Baton Pass', 'Last Respects', 'Shed Tail','Basculegion', 'Basculegion-F', 'Cloyster','Dragapult', 'Dragonite', 'Enamorus-Base', 'Iron Bundle', 'Kartana', 'Komala','Kyurem','Tapu Koko','Tapu Lele','Zoroark-Hisui'
],
unbanlist: ['Kingambit', 'Palafin', 'Roaring Moon', 'Shedinja', 'Ogerpon-Hearthflame'
],
restricted: [
'Acupressure', 'Astral Barrage', 'Belly Drum', 'Dire Claw', 'Double Iron Bash', 'Extreme Speed', 'Fillet Away', 'Fishious Rend', 'Geomancy', 'Gigaton Hammer', 'Last Respects',
'No Retreat', 'Revival Blessing', 'Shell Smash', 'Shift Gear', 'Thousand Arrows', 'V-create', 'Victory Dance', 'Wicked Blow',
],
},
{
name: "[Gen 9] National Dex Almost Any Ability",
mod: 'gen9',
ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Clause', 'Species Clause','!Obtainable Abilities', 'Ability Clause = 2', 'Sleep Moves Clause', 'Terastal Clause', 'Min Source Gen = 9'],
banlist: [
'ND Uber', 'ND AG', 'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag', 'King\'s Rock',
'Quick Claw', 'Razor Fang', 'Assist', 'Baton Pass', 'Last Respects', 'Shed Tail', 'Comatose', 'Contrary', 'Fur Coat', 'Good as Gold', 'Gorilla Tactics', 'Huge Power',
'Ice Scales', 'Illusion', 'Imposter', 'Innards Out', 'Magic Bounce', 'Magnet Pull', 'Neutralizing Gas',
'Parental Bond', 'Pure Power', 'Simple', 'Speed Boost', 'Triage', 'Unburden', 'Water Bubble', 'Wonder Guard', 'Archeops', 'Baxcalibur', 'Blacephalon',
'Dracovish', 'Dragapult', 'Dragonite', 'Enamorus-Base', 'Hoopa-Unbound', 'Kartana', 'Kingambit', 'Iron Hands', 'Iron Valiant', 'Regigigas', 'Slaking', 'Sneasler',
'Urshifu-Rapid-Strike', 'Walking Wake', 'Xurkitree', 'Zamazenta'
],
unbanlist: ['Zamazenta-Crowned'],
},
{
name: "[Gen 9] National Dex Mix and Mega",
mod: 'mixandmega',
ruleset: ['Standard NatDex','Mega Rayquaza Clause', 'Min Source Gen = 9'],
banlist: ['Calyrex-Shadow','Electrify', 'Pidgeotite',
],
unbanlist: ['Dragapult','Eternatus','Gholdengo','Kilowattrel','Kyogre','Sandy Shocks','Zapdos','Beedrillite','Blazikenite','Kangaskhanite',
'Mawilite','Medichamite','Rusted Sword',],
restricted: ['Arceus','Calyrex-Ice','Deoxys-Attack','Deoxys-Base','Deoxys-Speed','Dialga','Eternatus','Giratina','Groudon','Ho-Oh','Kyogre',
'Kyurem-Black','Kyurem-White','Lugia','Lunala','Marshadow','Melmetal','Mewtwo','Naganadel','Necrozma-Dawn-Wings','Necrozma-Dusk-Mane','Palkia',
'Pheromosa','Rayquaza','Regigigas','Reshiram','Urshifu','Xerneas','Yveltal','Zekrom','Power Construct','Beedrillite','Blazikenite','Kangaskhanite',
'Mawilite','Medichamite','Rusted Sword',
],
},
{
name: "[Gen 9] National Dex Godly Gift",
mod: 'gen9',
ruleset: ['Standard NatDex','Godly Gift Mod', 'Species Clause', 'OHKO Clause', 'Evasion Abilities Clause', 'Evasion Items Clause', 'Evasion Moves Clause',
'Overflow Stat Mod', 'Sleep Moves Clause', 'Terastal Clause', 'Mega Rayquaza Clause'],
banlist: ['Blissey', 'Calyrex-Shadow','Chansey','Deoxys-Attack','Koraidon','Miraidon'
],
restricted: ['Arceus','Blastoise-Mega','Blaziken-Mega','Calyrex-Ice','Chi-Yu','Darmanitan-Galar','Deoxys-Base','Deoxys-Defense','Deoxys-Speed','Dialga','Dialga-Origin','Dracovish','Espathra',
'Eternatus','Flutter Mane','Genesect','Gengar-Mega','Giratina','Giratina-Origin','Groudon','Groudon-Primal','Ho-Oh','Iron Bundle','Kangaskhan-Mega','Kingambit','Kyogre','Kyogre-Primal',
'Kyurem-Black','Kyurem-White','Lucario-Mega','Lugia','Lunala','Magearna','Marowak-Alola','Marshadow','Medicham-Mega','Mawile-Mega','Melmetal','Metagross-Mega',
'Mewtwo','Mewtwo-Mega-X','Mewtwo-Mega-Y','Naganadel','Necrozma-Dusk-Mane','Necrozma-Dawn-Wings','Palkia','Palkia-Origin','Pheromosa','Pikachu','Rayquaza','Reshiram',
'Sableye-Mega','Salamence-Mega','Shaymin-Sky','Smeargle','Solgaleo','Spectrier','Toxapex','Ursaluna','Ursaluna-Bloodmoon','Xerneas','Yveltal','Zacian','Zacian-Crowned',
'Zamazenta-Crowned','Zekrom','Power Construct',
],
},
{
name: "[Gen 9] National Dex NFE",
mod: 'gen9',
ruleset: ['Standard NatDex', 'Not Fully Evolved', 'Terastal Clause'],
banlist: [
'Basculin-White-Striped', 'Bisharp', 'Chansey', 'Doublade', 'Duraludon','Gligar','Kadabra','Haunter', 'Magneton', 'Mr. Mime-Galar', 'Pikachu', 'Porygon2', 'Primeape', 'Qwilfish-Hisui', 'Scyther', 'Sneasel', 'Sneasel-Hisui', 'Ursaring'
],
unbanlist: ['Moody'],
},
{
name: "[Gen 9] National Dex Convergence",
mod: 'gen9',
ruleset: ['Standard NatDex','Convergence Legality','!Obtainable Abilities','Sleep Moves Clause'],
banlist: [
'Articuno-Galar','Cosmog','Golisopod','Regigigas','Slaking','Smeargle','Tapu Lele','Walking Wake','Zamazenta','Comatose','Contrary',
'Huge Power','Imposter','Pure Power','Simple','Speed Boost','Unburden','Belly Drum','Electrify','Extreme Speed','Quiver Dance',
'Revival Blessing','Shell Smash','Shift Gear','Stored Power','Tail Glow','Transform','Damp Rock','Medichamite','Mawilite','Boomburst',
'Virizion','Kartana','Gardevoir-Mega','Enamorus','Ogerpon-Hearthflame'
],
unbanlist: ['Espathra'],
},
// Pet Mods
///////////////////////////////////////////////////////////////////
{
section: "Pet Mods",
},
{
name: "[Gen 9] Do Not Use",
desc: `A National Dex solomod where only Pokémon with 280 BST or less are allowed.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3734326/">Do Not Use</a>`,
],
mod: 'gen9',
ruleset: ['Standard NatDex', 'OHKO Clause', 'Evasion Moves Clause', 'Evasion Items Clause', 'Species Clause', 'Sleep Clause Mod', 'Terastal Clause', 'Z-Move Clause'],
banlist: ['Dewpider', 'Diglett-Alola', 'Flittle', 'Nidoran-M', 'Smeargle', 'Wattrel', 'Wingull', 'Wishiwashi', 'Zigzagoon-Base', 'Arena Trap', 'Huge Power', 'Moody', 'Pure Power', 'Shadow Tag', 'Baton Pass'],
onBegin() {
this.add('-message', `Welcome to Do Not Use!`);
this.add('-message', `This is a National Dex metagame where only Pokemon with less than 280 BST are allowed, plus a select few others!`);
this.add('-message', `You can find our thread and metagame resources here:`);
this.add('-message', `https://www.smogon.com/forums/threads/3734326/`);
},
onValidateSet(set) {
const species = this.dex.species.get(set.species);
if (species.bst > 280 && !['Luvdisc', 'Unown', 'Capsakid', 'Snorunt'].includes(species.baseSpecies)) {
return [`Only Pok\u00e9mon with a BST of 280 or lower are allowed.`, `(${species.name}'s BST is ${species.bst}.)`];
}
},
},
{
name: "[Gen 2] Modern Gen 2",
desc: `A Gen 2 solomod where all Pokémon and moves from future generations are legal.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3725808/">Modern Gen 2</a>`,
],
mod: 'moderngen2',
ruleset: ['Standard', 'Useless Items Clause', 'Useless Moves Clause', 'MG2 Mod', 'Sleep Moves Clause', '+No Ability', '-All Abilities'],
banlist: ['AG', 'Uber', 'Fake Out', 'Shell Smash', 'Last Respects', 'Baton Pass', 'Alakazite', 'Soul Dew'],
},
{
name: "[Gen 6] NEXT OU",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3476151/">Gen-NEXT Development Thread</a>`,
],
mod: 'gennext',
searchShow: false,
challengeShow: false,
ruleset: ['Obtainable', 'Standard NEXT', 'Team Preview'],
banlist: ['Uber'],
},
// Draft League
///////////////////////////////////////////////////////////////////
{
section: "Draft",
column: 1,
},
{
name: "[Gen 9] National Dex Low-Tier Legends Draft",
threads: [
`• <a href="https://www.smogon.com/forums/threads/3710848/">National Dex Metagame Discussion</a>`,
'• <a href="https://discord.gg/RZWbfSq">Dawn Draft League Discord</a>'
],
mod: 'gen9',
ruleset: ['OHKO Clause', 'Evasion Clause', 'Species Clause', 'Sleep Clause Mod', 'Dynamax Clause', 'Z-Move Clause', 'Baton Pass Clause',
'Obtainable', '+Unobtainable', '+Past', 'Sketch Post-Gen 7 Moves', 'Team Preview', 'Nickname Clause', 'HP Percentage Mod', 'Cancel Mod',
'Endless Battle Clause',
],
banlist: [
'ND Uber', 'Arena Trap', 'Pelipper + Drizzle', 'Politoed + Drizzle', 'Ninetales + Drought', 'Torkoal + Drought', 'Moody', 'Power Construct', 'Shadow Tag', 'King\'s Rock', 'Quick Claw', 'Razor Fang', 'Assist','Focus Band',
'Last Respects', 'Acupressure', 'Revival Blessing', 'Hidden Power',
],
onValidateSet(set) {
const species = this.dex.species.get(set.species);
if (species.natDexTier === 'Illegal') {
if (this.ruleTable.has(`+pokemon:${species.id}`)) return;
return [`${set.name || set.species} does not exist in the National Dex.`];
}
// if (species.natDexTier === "Unreleased") {
// const basePokemon = this.toID(species.baseSpecies);
// if (this.ruleTable.has(`+pokemon:${species.id}`) || this.ruleTable.has(`+basepokemon:${basePokemon}`)) {
// return;
// }
// return [`${set.name || set.species} does not exist in the National Dex.`];
// }
// Items other than Z-Crystals and Pokémon-specific items should be illegal
if (!set.item) return;
const item = this.dex.items.get(set.item);
if (!item.isNonstandard) return;
if (
['Past', 'Unobtainable'].includes(item.isNonstandard) &&
!item.zMove && !item.itemUser && !item.forcedForme && !item.isBerry
) {
if (this.ruleTable.has(`+item:${item.id}`)) return;
return [`${set.name}'s item ${item.name} does not exist in Gen ${this.dex.gen}.`];
}
},
},
{
name: "[Gen 9] Draft",
mod: 'gen9',
searchShow: false,
ruleset: ['Standard Draft', 'Min Source Gen = 9'],
},
{
name: "[Gen 9] Tera Preview Draft",
mod: 'gen9',
searchShow: false,
ruleset: ['[Gen 9] Draft', 'Tera Type Preview'],
},
{
name: "[Gen 9] 6v6 Doubles Draft",
mod: 'gen9',
gameType: 'doubles',
searchShow: false,
ruleset: ['Standard Draft', '!Sleep Clause Mod', '!Evasion Clause', 'Min Source Gen = 9'],
},
{
name: "[Gen 9] 4v4 Doubles Draft",
mod: 'gen9',
gameType: 'doubles',
searchShow: false,
bestOfDefault: true,
ruleset: ['Standard Draft', 'Item Clause', 'VGC Timer', '!Sleep Clause Mod', '!OHKO Clause', '!Evasion Clause', 'Adjust Level = 50', 'Picked Team Size = 4', 'Min Source Gen = 9'],
},
{
name: "[Gen 9] NatDex Draft",
mod: 'gen9',
searchShow: false,
ruleset: ['Standard Draft', '+Unobtainable', '+Past'],
},
{
name: "[Gen 9] Tera Preview NatDex Draft",
mod: 'gen9',
searchShow: false,
ruleset: ['[Gen 9] NatDex Draft', 'Tera Type Preview'],
},
{
name: "[Gen 9] NatDex 6v6 Doubles Draft",
mod: 'gen9',
gameType: 'doubles',
searchShow: false,
ruleset: ['[Gen 9] 6v6 Doubles Draft', '+Unobtainable', '+Past', '!! Min Source Gen = 3'],
},
{
name: "[Gen 9] NatDex LC Draft",
mod: 'gen9',
searchShow: false,
ruleset: ['[Gen 9] NatDex Draft', 'Double Item Clause', 'Little Cup'],
banlist: ['Dragon Rage', 'Sonic Boom'],
},
{
name: "[Gen 8] Galar Dex Draft",
mod: 'gen8',
searchShow: false,
ruleset: ['Standard Draft', 'Dynamax Clause'],
},
{
name: "[Gen 8] NatDex Draft",
mod: 'gen8',
searchShow: false,
ruleset: ['Standard Draft', 'Dynamax Clause', '+Past'],
},
{
name: "[Gen 8] NatDex 4v4 Doubles Draft",
mod: 'gen8',
gameType: 'doubles',
searchShow: false,
ruleset: ['Standard Draft', 'Item Clause', '!Sleep Clause Mod', '!OHKO Clause', '!Evasion Moves Clause', 'Adjust Level = 50', 'Picked Team Size = 4', '+Past'],
},
{
name: "[Gen 7] Draft",
mod: 'gen7',
searchShow: false,
ruleset: ['Standard Draft', '+LGPE'],
},
{
name: "[Gen 6] Draft",
mod: 'gen6',
searchShow: false,
ruleset: ['Standard Draft', 'Moody Clause', 'Swagger Clause'],
banlist: ['Soul Dew'],
},
// OM of the Month
///////////////////////////////////////////////////////////////////
{
section: "OM of the Month",
column: 2,
},
{
name: "[Gen 9] Fervent Impersonation",
desc: `Nickname a Pokémon after another Pokémon that it shares a moveset with, and it will transform into the Pokémon it's nicknamed after once it drops to or below 50% health.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3740523/">Fervent Impersonation</a>`,
],
mod: 'gen9',
// searchShow: false,
ruleset: ['Standard OMs', 'Sleep Moves Clause', 'Fervent Impersonation Mod', '!Nickname Clause'],
banlist: ['Arena Trap', 'Moody', 'Shadow Tag', 'King\'s Rock', 'Razor Fang', 'Baton Pass', 'Dire Claw', 'Shed Tail', 'Last Respects'],
restricted: [
'Arceus', 'Calyrex-Ice', 'Calyrex-Shadow', 'Chi-Yu', 'Chien-Pao', 'Deoxys-Base', 'Deoxys-Attack', 'Dialga', 'Dialga-Origin', 'Espathra', 'Eternatus',
'Flutter Mane', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Koraidon', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Lugia', 'Lunala', 'Magearna',
'Mewtwo', 'Miraidon', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palafin', 'Palkia', 'Palkia-Origin', 'Rayquaza', 'Regieleki', 'Reshiram', 'Shaymin-Sky',
'Solgaleo', 'Terapagos', 'Urshifu-Base', 'Zacian', 'Zacian-Crowned', 'Zamazenta-Crowned', 'Zekrom',
],
// Implemented the mechanics as a Rule because I'm too lazy to make battles read base format for `onResidual` at the moment
},
{
name: "[Gen 9] 350 Cup",
desc: `Pokemon with a BST of 350 or lower have their stats doubled.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3724198/">350 Cup</a>`,
],
mod: 'gen9',
ruleset: ['Standard OMs', 'Sleep Moves Clause', '350 Cup Mod', 'Evasion Clause'],
banlist: ['Calyrex-Shadow', 'Flittle', 'Gastly', 'Miraidon', 'Pikachu', 'Rufflet', 'Arena Trap', 'Moody', 'Shadow Tag', 'Eviolite', 'Baton Pass'],
},
{
name: "[Gen 9] Godly Gift",
desc: `Each Pokémon receives one base stat from a God (Restricted Pokémon) depending on its position in the team. If there is no restricted Pokémon, it uses the Pokémon in the first slot.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3710734/">Godly Gift</a>`,
`• <a href="https://www.smogon.com/forums/threads/3718065/">Godly Gift Resources</a>`,
],
mod: 'gen9',
ruleset: ['Standard OMs', 'Sleep Moves Clause', 'Godly Gift Mod'],
banlist: [
'Blissey', 'Calyrex-Shadow', 'Chansey', 'Deoxys-Attack', 'Koraidon', 'Miraidon', 'Arena Trap', 'Huge Power', 'Moody', 'Pure Power', 'Shadow Tag',
'Swift Swim', 'Bright Powder', 'Focus Band', 'King\'s Rock', 'Quick Claw', 'Razor Fang', 'Baton Pass', 'Last Respects', 'Shed Tail',
],
restricted: [
'Annihilape', 'Arceus', 'Calyrex-Ice', 'Chi-Yu', 'Crawdaunt', 'Deoxys-Base', 'Deoxys-Speed', 'Dialga', 'Dialga-Origin', 'Dragapult', 'Espathra', 'Eternatus',
'Flutter Mane', 'Giratina', 'Giratina-Origin', 'Gliscor', 'Groudon', 'Hawlucha', 'Ho-Oh', 'Iron Bundle', 'Kingambit', 'Kyogre', 'Kyurem', 'Kyurem-Black',
'Kyurem-White', 'Lugia', 'Lunala', 'Magearna', 'Mewtwo', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Ogerpon-Hearthflame', 'Palafin', 'Palkia', 'Palkia-Origin',
'Rayquaza', 'Regieleki', 'Reshiram', 'Shaymin-Sky', 'Smeargle', 'Solgaleo', 'Terapagos', 'Toxapex', 'Ursaluna', 'Ursaluna-Bloodmoon', 'Volcarona', 'Zacian',
'Zacian-Crowned', 'Zamazenta-Crowned', 'Zekrom',
],
},
// Other Metagames
///////////////////////////////////////////////////////////////////
{
section: "Other Metagames",
column: 2,
},
{
name: "[Gen 9] Almost Any Ability",
desc: `Pokémon have access to almost any ability.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3710568/">Almost Any Ability</a>`,
`• <a href="https://www.smogon.com/forums/threads/3710571/">AAA Resources</a>`,
],
mod: 'gen9',
ruleset: ['Standard OMs', '!Obtainable Abilities', 'Ability Clause = 1', 'Sleep Moves Clause', 'Terastal Clause'],
banlist: [
'Annihilape', 'Arceus', 'Baxcalibur', 'Calyrex-Ice', 'Calyrex-Shadow', 'Darkrai', 'Deoxys-Base', 'Deoxys-Attack', 'Dialga', 'Dialga-Origin', 'Dragapult', 'Enamorus-Base',
'Eternatus', 'Flutter Mane', 'Giratina', 'Giratina-Origin', 'Gouging Fire', 'Groudon', 'Ho-Oh', 'Hoopa-Unbound', 'Iron Bundle', 'Iron Valiant', 'Keldeo', 'Koraidon',
'Kyogre', 'Kyurem', 'Kyurem-Black', 'Kyurem-White', 'Lugia', 'Lunala', 'Magearna', 'Mewtwo', 'Miraidon', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Noivern', 'Palkia',
'Palkia-Origin', 'Raging Bolt', 'Rayquaza', 'Regigigas', 'Reshiram', 'Shaymin-Sky', 'Slaking', 'Sneasler', 'Solgaleo', 'Spectrier', 'Urshifu', 'Urshifu-Rapid-Strike',
'Walking Wake', 'Weavile', 'Zacian', 'Zacian-Crowned', 'Zekrom', 'Arena Trap', 'Comatose', 'Contrary', 'Fur Coat', 'Good as Gold', 'Gorilla Tactics', 'Huge Power',
'Ice Scales', 'Illusion', 'Imposter', 'Innards Out', 'Magic Bounce', 'Magnet Pull', 'Moody', 'Neutralizing Gas', 'Orichalcum Pulse', 'Parental Bond', 'Poison Heal',
'Pure Power', 'Shadow Tag', 'Simple', 'Speed Boost', 'Stakeout', 'Toxic Debris', 'Triage', 'Unburden', 'Water Bubble', 'Wonder Guard', 'King\'s Rock', 'Razor Fang',
'Baton Pass', 'Last Respects', 'Revival Blessing', 'Shed Tail',
],
},
{
name: "[Gen 9] Balanced Hackmons",
desc: `Anything directly hackable onto a set (EVs, IVs, forme, ability, item, and move) and is usable in local battles is allowed.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3710859/">Balanced Hackmons</a>`,
`• <a href="https://www.smogon.com/forums/threads/3712766/">BH Resources</a>`,
],
mod: 'gen9',
ruleset: [
'OHKO Clause', 'Evasion Clause', 'Species Clause', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Moves Clause',
'Endless Battle Clause', 'Hackmons Forme Legality', 'Species Reveal Clause', 'Terastal Clause',
],
banlist: [
'Calyrex-Shadow', 'Deoxys-Attack', 'Diancie-Mega', 'Gengar-Mega', 'Groudon-Primal', 'Kartana', 'Mewtwo-Mega-X', 'Mewtwo-Mega-Y', 'Rayquaza-Mega',
'Regigigas', 'Shedinja', 'Slaking', 'Arena Trap', 'Comatose', 'Contrary', 'Gorilla Tactics', 'Hadron Engine', 'Huge Power', 'Illusion', 'Innards Out',
'Libero', 'Liquid Ooze', 'Magnet Pull', 'Moody', 'Neutralizing Gas', 'Orichalcum Pulse', 'Parental Bond', 'Poison Heal', 'Protean', 'Pure Power',
'Shadow Tag', 'Stakeout', 'Water Bubble', 'Wonder Guard', 'Baton Pass', 'Belly Drum', 'Ceaseless Edge', 'Dire Claw', 'Electro Shot', 'Fillet Away',
'Imprison', 'Last Respects', 'Lumina Crash', 'Photon Geyser', 'Quiver Dance', 'Rage Fist', 'Revival Blessing', 'Shed Tail', 'Substitute', 'Shell Smash',
'Tail Glow',
],
},
{
name: "[Gen 9] Inheritance",
desc: `Pokémon may use the ability and moves of another, as long as they forfeit their own learnset.`,
threads: [
`• <a href="https://www.smogon.com/forums/threads/3712296/">Inheritance</a>`,
],
mod: 'gen9',
ruleset: ['Standard OMs', 'Ability Clause = 1', 'Sleep Moves Clause', 'Terastal Clause'],
banlist: [
'Arceus', 'Calyrex-Ice', 'Calyrex-Shadow', 'Chien-Pao', 'Cresselia', 'Deoxys-Base', 'Deoxys-Attack', 'Dialga', 'Dialga-Origin', 'Dondozo', 'Dragapult', 'Eternatus',
'Flutter Mane', 'Giratina', 'Giratina-Origin', 'Groudon', 'Hoopa-Unbound', 'Ho-Oh', 'Iron Bundle', 'Iron Valiant', 'Koraidon', 'Kyogre', 'Kyurem', 'Kyurem-Black',
'Kyurem-White', 'Lugia', 'Lunala', 'Magearna', 'Mewtwo', 'Miraidon', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Oricorio', 'Oricorio-Pa\'u', 'Oricorio-Pom-Pom',
'Oricorio-Sensu', 'Palkia', 'Palkia-Origin', 'Pecharunt', 'Rayquaza', 'Regieleki', 'Regigigas', 'Reshiram', 'Sableye', 'Samurott-Hisui', 'Scream Tail', 'Shaymin-Sky',
'Slaking', 'Smeargle', 'Solgaleo', 'Spectrier', 'Urshifu-Base', 'Ursaluna-Base', 'Weavile', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom',
'Arena Trap', 'Drizzle', 'Drought', 'Good as Gold', 'Huge Power', 'Imposter', 'Magic Bounce', 'Magnet Pull', 'Moody', 'Neutralizing Gas', 'Poison Heal', 'Pure Power',
'Shadow Tag', 'Speed Boost', 'Stakeout', 'Water Bubble', 'King\'s Rock', 'Razor Fang', 'Baton Pass', 'Fillet Away', 'Last Respects', 'Rage Fist', 'Shed Tail',
'Shell Smash',
],
getEvoFamily(speciesid) {
let species = Dex.species.get(speciesid);
while (species.prevo) {
const prevoSpecies = Dex.species.get(species.prevo);
if (prevoSpecies.evos.length > 1) break;
species = prevoSpecies;
}
return species.id;
},
validateSet(set, teamHas) {
if (!teamHas.abilityMap) {
teamHas.abilityMap = Object.create(null);
for (const pokemon of Dex.species.all()) {
if (pokemon.isNonstandard && !this.ruleTable.has(`+pokemontag:${this.toID(pokemon.isNonstandard)}`)) continue;
if (pokemon.battleOnly) continue;
if (this.ruleTable.isBannedSpecies(pokemon)) continue;
for (const key of Object.values(pokemon.abilities)) {
const abilityId = this.dex.toID(key);
if (abilityId in teamHas.abilityMap) {
teamHas.abilityMap[abilityId][pokemon.evos ? 'push' : 'unshift'](pokemon.id);
} else {
teamHas.abilityMap[abilityId] = [pokemon.id];
}
}
}
}
const problem = this.validateForme(set);
if (problem.length) return problem;
const species = this.dex.species.get(set.species);
if (!species.exists || species.num < 1) return [`The Pok\u00e9mon "${set.species}" does not exist.`];
if (species.isNonstandard && !this.ruleTable.has(`+pokemontag:${this.toID(species.isNonstandard)}`)) {
return [`${species.name} is not obtainable in Generation ${this.dex.gen}.`];
}
const name = set.name;
if (this.ruleTable.isBannedSpecies(species)) {
return this.validateSet(set, teamHas);
}
const ability = this.dex.abilities.get(set.ability);
if (!ability.exists || ability.isNonstandard) return [`${name} needs to have a valid ability.`];
const pokemonWithAbility = teamHas.abilityMap[ability.id];
if (!pokemonWithAbility) return [`${ability.name} is not available on a legal Pok\u00e9mon.`];
(this.format as any).debug = true;
if (!teamHas.abilitySources) teamHas.abilitySources = Object.create(null);
const validSources: string[] = teamHas.abilitySources[this.toID(set.species)] = []; // Evolution families
let canonicalSource = ''; // Specific for the basic implementation of Donor Clause (see onValidateTeam).