@pkmn/sim 0.8.1 → 0.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/config/formats.js +190 -178
- package/build/cjs/config/formats.js.map +1 -1
- package/build/cjs/data/abilities.js +5 -2
- package/build/cjs/data/abilities.js.map +1 -1
- package/build/cjs/data/formats-data.js +11 -11
- package/build/cjs/data/formats-data.js.map +1 -1
- package/build/cjs/data/items.js +1 -5
- package/build/cjs/data/items.js.map +1 -1
- package/build/cjs/data/learnsets.js +0 -12
- package/build/cjs/data/learnsets.js.map +1 -1
- package/build/cjs/data/mods/gen2/rulesets.js +2 -2
- package/build/cjs/data/mods/gen2/rulesets.js.map +1 -1
- package/build/cjs/data/mods/gen3/formats-data.js +1 -1
- package/build/cjs/data/mods/gen3/formats-data.js.map +1 -1
- package/build/cjs/data/moves.js +6 -5
- package/build/cjs/data/moves.js.map +1 -1
- package/build/cjs/data/pokedex.js +0 -4
- package/build/cjs/data/pokedex.js.map +1 -1
- package/build/cjs/data/rulesets.js +65 -8
- package/build/cjs/data/rulesets.js.map +1 -1
- package/build/cjs/data/text/abilities.js +3 -3
- package/build/cjs/data/text/abilities.js.map +1 -1
- package/build/cjs/data/text/moves.js +1 -1
- package/build/cjs/data/text/moves.js.map +1 -1
- package/build/cjs/lib/utils.js +3 -3
- package/build/cjs/lib/utils.js.map +1 -1
- package/build/cjs/sim/battle-actions.js +17 -13
- package/build/cjs/sim/battle-actions.js.map +1 -1
- package/build/cjs/sim/dex-species.d.ts +8 -0
- package/build/cjs/sim/dex-species.js +32 -7
- package/build/cjs/sim/dex-species.js.map +1 -1
- package/build/cjs/sim/pokemon.js +7 -1
- package/build/cjs/sim/pokemon.js.map +1 -1
- package/build/cjs/sim/team-validator.js +12 -0
- package/build/cjs/sim/team-validator.js.map +1 -1
- package/build/esm/config/formats.mjs +190 -178
- package/build/esm/config/formats.mjs.map +1 -1
- package/build/esm/data/abilities.mjs +5 -2
- package/build/esm/data/abilities.mjs.map +1 -1
- package/build/esm/data/formats-data.mjs +11 -11
- package/build/esm/data/formats-data.mjs.map +1 -1
- package/build/esm/data/items.mjs +1 -5
- package/build/esm/data/items.mjs.map +1 -1
- package/build/esm/data/learnsets.mjs +0 -12
- package/build/esm/data/learnsets.mjs.map +1 -1
- package/build/esm/data/mods/gen2/rulesets.mjs +2 -2
- package/build/esm/data/mods/gen2/rulesets.mjs.map +1 -1
- package/build/esm/data/mods/gen3/formats-data.mjs +1 -1
- package/build/esm/data/mods/gen3/formats-data.mjs.map +1 -1
- package/build/esm/data/moves.mjs +6 -5
- package/build/esm/data/moves.mjs.map +1 -1
- package/build/esm/data/pokedex.mjs +0 -4
- package/build/esm/data/pokedex.mjs.map +1 -1
- package/build/esm/data/rulesets.mjs +65 -8
- package/build/esm/data/rulesets.mjs.map +1 -1
- package/build/esm/data/text/abilities.mjs +3 -3
- package/build/esm/data/text/abilities.mjs.map +1 -1
- package/build/esm/data/text/moves.mjs +1 -1
- package/build/esm/data/text/moves.mjs.map +1 -1
- package/build/esm/lib/utils.mjs +3 -3
- package/build/esm/lib/utils.mjs.map +1 -1
- package/build/esm/sim/battle-actions.mjs +17 -13
- package/build/esm/sim/battle-actions.mjs.map +1 -1
- package/build/esm/sim/dex-species.d.mts +8 -0
- package/build/esm/sim/dex-species.mjs +32 -7
- package/build/esm/sim/dex-species.mjs.map +1 -1
- package/build/esm/sim/pokemon.mjs +7 -1
- package/build/esm/sim/pokemon.mjs.map +1 -1
- package/build/esm/sim/team-validator.mjs +12 -0
- package/build/esm/sim/team-validator.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -106,11 +106,12 @@ export const Formats = [
|
|
|
106
106
|
'Gligar', 'Meditite',
|
|
107
107
|
'Misdreavus', 'Murkrow',
|
|
108
108
|
'Qwilfish-Hisui', 'Rufflet',
|
|
109
|
-
'
|
|
110
|
-
'Sneasel
|
|
111
|
-
'
|
|
112
|
-
'
|
|
113
|
-
'
|
|
109
|
+
'Scraggy', 'Scyther',
|
|
110
|
+
'Sneasel', 'Sneasel-Hisui',
|
|
111
|
+
'Stantler', 'Vulpix',
|
|
112
|
+
'Vulpix-Alola', 'Yanma',
|
|
113
|
+
'Moody', 'Baton Pass',
|
|
114
|
+
'Sticky Web'
|
|
114
115
|
]
|
|
115
116
|
},
|
|
116
117
|
{
|
|
@@ -261,46 +262,45 @@ export const Formats = [
|
|
|
261
262
|
banlist: ['Walking Wake', 'Iron Leaves']
|
|
262
263
|
},
|
|
263
264
|
{
|
|
264
|
-
name: '[Gen 9] VGC
|
|
265
|
-
mod: '
|
|
265
|
+
name: '[Gen 9] VGC 2024 Reg F',
|
|
266
|
+
mod: 'gen9',
|
|
266
267
|
gameType: 'doubles',
|
|
268
|
+
bestOfDefault: true,
|
|
267
269
|
ruleset: [
|
|
268
270
|
'Flat Rules',
|
|
269
271
|
'!! Adjust Level = 50',
|
|
270
272
|
'Min Source Gen = 9',
|
|
271
273
|
'VGC Timer',
|
|
272
|
-
'
|
|
273
|
-
'Best of = 3'
|
|
274
|
+
'Open Team Sheets'
|
|
274
275
|
],
|
|
275
|
-
banlist: [
|
|
276
|
+
banlist: []
|
|
276
277
|
},
|
|
277
278
|
{
|
|
278
|
-
name: '[Gen 9] VGC 2024 Reg F',
|
|
279
|
+
name: '[Gen 9] VGC 2024 Reg F (Bo3)',
|
|
279
280
|
mod: 'gen9',
|
|
280
281
|
gameType: 'doubles',
|
|
281
|
-
bestOfDefault: true,
|
|
282
282
|
ruleset: [
|
|
283
283
|
'Flat Rules',
|
|
284
284
|
'!! Adjust Level = 50',
|
|
285
285
|
'Min Source Gen = 9',
|
|
286
286
|
'VGC Timer',
|
|
287
|
-
'Open Team Sheets'
|
|
287
|
+
'Force Open Team Sheets',
|
|
288
|
+
'Best of = 3'
|
|
288
289
|
],
|
|
289
290
|
banlist: []
|
|
290
291
|
},
|
|
291
292
|
{
|
|
292
|
-
name: '[Gen 9]
|
|
293
|
+
name: '[Gen 9] Blueberry Prologue',
|
|
293
294
|
mod: 'gen9',
|
|
294
295
|
gameType: 'doubles',
|
|
295
296
|
ruleset: [
|
|
296
297
|
'Flat Rules',
|
|
297
298
|
'!! Adjust Level = 50',
|
|
299
|
+
'Blueberry Pokedex',
|
|
298
300
|
'Min Source Gen = 9',
|
|
299
|
-
'VGC Timer'
|
|
300
|
-
'Force Open Team Sheets',
|
|
301
|
-
'Best of = 3'
|
|
301
|
+
'VGC Timer'
|
|
302
302
|
],
|
|
303
|
-
|
|
303
|
+
unbanlist: ['Restricted Legendary']
|
|
304
304
|
},
|
|
305
305
|
{
|
|
306
306
|
name: '[Gen 9] Doubles Custom Game',
|
|
@@ -331,23 +331,24 @@ export const Formats = [
|
|
|
331
331
|
],
|
|
332
332
|
banlist: [
|
|
333
333
|
'Arceus', 'Calyrex-Ice', 'Calyrex-Shadow',
|
|
334
|
-
'Chi-Yu', 'Deoxys
|
|
335
|
-
'Deoxys-Defense', '
|
|
336
|
-
'
|
|
337
|
-
'
|
|
338
|
-
'Groudon', 'Ho-Oh',
|
|
339
|
-
'
|
|
340
|
-
'Kyurem-
|
|
341
|
-
'
|
|
342
|
-
'
|
|
343
|
-
'Necrozma-Dusk-Mane', 'Ogerpon-Cornerstone',
|
|
344
|
-
'Palkia
|
|
345
|
-
'Scream Tail', 'Shaymin-Sky',
|
|
346
|
-
'
|
|
347
|
-
'
|
|
348
|
-
'
|
|
349
|
-
|
|
350
|
-
'
|
|
334
|
+
'Chi-Yu', 'Deoxys', 'Deoxys-Attack',
|
|
335
|
+
'Deoxys-Defense', 'Deoxys-Speed', 'Dialga',
|
|
336
|
+
'Dialga-Origin', 'Dragonite', 'Eternatus',
|
|
337
|
+
'Flutter Mane', 'Gholdengo', 'Giratina',
|
|
338
|
+
'Giratina-Origin', 'Groudon', 'Ho-Oh',
|
|
339
|
+
'Jirachi', 'Koraidon', 'Kyogre',
|
|
340
|
+
'Kyurem-Black', 'Kyurem-White', 'Lugia',
|
|
341
|
+
'Lunala', 'Magearna', 'Mew',
|
|
342
|
+
'Mewtwo', 'Mimikyu', 'Miraidon',
|
|
343
|
+
'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Ogerpon-Cornerstone',
|
|
344
|
+
'Palkia', 'Palkia-Origin', 'Rayquaza',
|
|
345
|
+
'Reshiram', 'Scream Tail', 'Shaymin-Sky',
|
|
346
|
+
'Snorlax', 'Solgaleo', 'Terapagos',
|
|
347
|
+
'Zacian', 'Zacian-Crowned', 'Zamazenta',
|
|
348
|
+
'Zamazenta-Crowned', 'Zekrom', 'Moody',
|
|
349
|
+
'Focus Band', 'Focus Sash', "King's Rock",
|
|
350
|
+
'Razor Fang', 'Quick Claw', 'Acupressure',
|
|
351
|
+
'Perish Song'
|
|
351
352
|
]
|
|
352
353
|
},
|
|
353
354
|
{
|
|
@@ -369,19 +370,23 @@ export const Formats = [
|
|
|
369
370
|
'Dialga', 'Dialga-Origin',
|
|
370
371
|
'Eternatus', 'Giratina',
|
|
371
372
|
'Giratina-Origin', 'Groudon',
|
|
372
|
-
'
|
|
373
|
-
'
|
|
373
|
+
'Ho-Oh', 'Iron Hands',
|
|
374
|
+
'Koraidon', 'Kyogre',
|
|
375
|
+
'Kyurem-White', 'Lugia',
|
|
376
|
+
'Lunala', 'Magearna',
|
|
374
377
|
'Mewtwo', 'Miraidon',
|
|
378
|
+
'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane',
|
|
375
379
|
'Palkia', 'Palkia-Origin',
|
|
376
|
-
'Rayquaza', '
|
|
380
|
+
'Rayquaza', 'Reshiram',
|
|
381
|
+
'Solgaleo', 'Tornadus-Base',
|
|
377
382
|
'Urshifu', 'Urshifu-Rapid-Strike',
|
|
378
383
|
'Zacian', 'Zacian-Crowned',
|
|
379
384
|
'Zamazenta', 'Zamazenta-Crowned',
|
|
380
|
-
'
|
|
381
|
-
'
|
|
382
|
-
'
|
|
383
|
-
'
|
|
384
|
-
'Swagger'
|
|
385
|
+
'Zekrom', 'Commander',
|
|
386
|
+
'Moody', 'Focus Sash',
|
|
387
|
+
"King's Rock", 'Razor Fang',
|
|
388
|
+
'Ally Switch', 'Final Gambit',
|
|
389
|
+
'Perish Song', 'Swagger'
|
|
385
390
|
]
|
|
386
391
|
},
|
|
387
392
|
{
|
|
@@ -455,15 +460,16 @@ export const Formats = [
|
|
|
455
460
|
'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia',
|
|
456
461
|
'Palkia-Origin', 'Rayquaza', 'Reshiram',
|
|
457
462
|
'Shaymin-Sky', 'Solgaleo', 'Spectrier',
|
|
458
|
-
'
|
|
459
|
-
'
|
|
460
|
-
'
|
|
461
|
-
'Toxic
|
|
462
|
-
'
|
|
463
|
-
'
|
|
464
|
-
'
|
|
465
|
-
'
|
|
466
|
-
'
|
|
463
|
+
'Terapagos', 'Ursaluna', 'Ursaluna-Bloodmoon',
|
|
464
|
+
'Urshifu-Base', 'Zacian', 'Zacian-Crowned',
|
|
465
|
+
'Zekrom', 'Moody', 'Shadow Tag',
|
|
466
|
+
'Toxic Chain', 'Toxic Debris', 'Acupressure',
|
|
467
|
+
'Aromatic Mist', 'Baton Pass', 'Coaching',
|
|
468
|
+
'Court Change', 'Decorate', 'Dragon Cheer',
|
|
469
|
+
'Final Gambit', 'Flatter', 'Floral Healing',
|
|
470
|
+
'Follow Me', 'Heal Pulse', 'Last Respects',
|
|
471
|
+
'Poison Fang', 'Rage Powder', 'Spicy Extract',
|
|
472
|
+
'Swagger', 'Toxic', 'Toxic Spikes'
|
|
467
473
|
]
|
|
468
474
|
},
|
|
469
475
|
{
|
|
@@ -488,9 +494,9 @@ export const Formats = [
|
|
|
488
494
|
]
|
|
489
495
|
},
|
|
490
496
|
{
|
|
491
|
-
name: '[Gen 9] Monothreat
|
|
497
|
+
name: '[Gen 9] Monothreat Grass',
|
|
492
498
|
mod: 'gen9',
|
|
493
|
-
ruleset: ['[Gen 9] Monotype', 'Force Monotype =
|
|
499
|
+
ruleset: ['[Gen 9] Monotype', 'Force Monotype = Grass']
|
|
494
500
|
},
|
|
495
501
|
{
|
|
496
502
|
name: '[Gen 9] Monotype CAP',
|
|
@@ -502,8 +508,15 @@ export const Formats = [
|
|
|
502
508
|
name: '[Gen 9] Monotype LC',
|
|
503
509
|
mod: 'gen9',
|
|
504
510
|
ruleset: ['[Gen 9] LC', 'Same Type Clause', 'Terastal Clause'],
|
|
505
|
-
banlist: ['Damp Rock', 'Focus Band', 'Heat Rock', 'Icy Rock', 'Quick Claw'],
|
|
506
|
-
unbanlist: [
|
|
511
|
+
banlist: ['Minccino', 'Damp Rock', 'Focus Band', 'Heat Rock', 'Icy Rock', 'Quick Claw'],
|
|
512
|
+
unbanlist: [
|
|
513
|
+
'Diglett-Base',
|
|
514
|
+
'Growlithe-Hisui',
|
|
515
|
+
'Scraggy',
|
|
516
|
+
'Vulpix',
|
|
517
|
+
'Vulpix-Alola',
|
|
518
|
+
'Sticky Web'
|
|
519
|
+
]
|
|
507
520
|
},
|
|
508
521
|
{
|
|
509
522
|
name: '[Gen 9] Balanced Hackmons',
|
|
@@ -522,7 +535,8 @@ export const Formats = [
|
|
|
522
535
|
'Terastal Clause'
|
|
523
536
|
],
|
|
524
537
|
banlist: [
|
|
525
|
-
'Calyrex-Shadow', '
|
|
538
|
+
'Calyrex-Shadow', 'Deoxys-Attack', 'Gengar-Mega',
|
|
539
|
+
'Groudon-Primal', 'Kartana', 'Mewtwo-Mega-X',
|
|
526
540
|
'Mewtwo-Mega-Y', 'Rayquaza-Mega', 'Regigigas',
|
|
527
541
|
'Shedinja', 'Slaking', 'Arena Trap',
|
|
528
542
|
'Comatose', 'Contrary', 'Gorilla Tactics',
|
|
@@ -533,10 +547,11 @@ export const Formats = [
|
|
|
533
547
|
'Pure Power', 'Shadow Tag', 'Stakeout',
|
|
534
548
|
'Water Bubble', 'Wonder Guard', 'Baton Pass',
|
|
535
549
|
'Belly Drum', 'Ceaseless Edge', 'Dire Claw',
|
|
536
|
-
'
|
|
537
|
-
'
|
|
538
|
-
'
|
|
539
|
-
'
|
|
550
|
+
'Electro Shot', 'Fillet Away', 'Imprison',
|
|
551
|
+
'Last Respects', 'Lumina Crash', 'Photon Geyser',
|
|
552
|
+
'Quiver Dance', 'Rage Fist', 'Revival Blessing',
|
|
553
|
+
'Shed Tail', 'Substitute', 'Shell Smash',
|
|
554
|
+
'Tail Glow'
|
|
540
555
|
]
|
|
541
556
|
},
|
|
542
557
|
{
|
|
@@ -622,34 +637,27 @@ export const Formats = [
|
|
|
622
637
|
'Sleep Clause Mod'
|
|
623
638
|
],
|
|
624
639
|
banlist: [
|
|
625
|
-
'Annihilape', 'Arceus', 'Baxcalibur',
|
|
626
|
-
'
|
|
627
|
-
'
|
|
628
|
-
'
|
|
629
|
-
'
|
|
630
|
-
'
|
|
631
|
-
'
|
|
632
|
-
'
|
|
633
|
-
'
|
|
634
|
-
'
|
|
635
|
-
'
|
|
636
|
-
'
|
|
637
|
-
'
|
|
638
|
-
'
|
|
639
|
-
'
|
|
640
|
-
'
|
|
641
|
-
'
|
|
642
|
-
'
|
|
643
|
-
'
|
|
644
|
-
'
|
|
645
|
-
'
|
|
646
|
-
'Zamazenta-Crowned', 'Zekrom', 'Zygarde-Base',
|
|
647
|
-
'Zygarde-Complete', 'Moody', 'Shadow Tag',
|
|
648
|
-
'Power Construct', 'Booster Energy', 'Damp Rock',
|
|
649
|
-
'Focus Band', 'Icy Rock', "King's Rock",
|
|
650
|
-
'Leppa Berry', 'Quick Claw', 'Razor Fang',
|
|
651
|
-
'Smooth Rock', 'Terrain Extender', 'Acupressure',
|
|
652
|
-
'Baton Pass', 'Last Respects'
|
|
640
|
+
'Annihilape', 'Arceus', 'Baxcalibur', 'Blastoise-Mega',
|
|
641
|
+
'Blaziken', 'Blaziken-Mega', 'Calyrex-Ice', 'Calyrex-Shadow',
|
|
642
|
+
'Chi-Yu', 'Chien-Pao', 'Darkrai', 'Deoxys-Base',
|
|
643
|
+
'Deoxys-Attack', 'Dialga', 'Dracovish', 'Dragapult',
|
|
644
|
+
'Espathra', 'Eternatus', 'Flutter Mane', 'Genesect',
|
|
645
|
+
'Gengar-Mega', 'Giratina', 'Giratina-Origin', 'Groudon',
|
|
646
|
+
'Ho-Oh', 'Hoopa-Unbound', 'Iron Bundle', 'Kangaskhan-Mega',
|
|
647
|
+
'Kartana', 'Kingambit', 'Koraidon', 'Kyogre',
|
|
648
|
+
'Kyurem-Black', 'Kyurem-White', 'Lucario-Mega', 'Lugia',
|
|
649
|
+
'Lunala', 'Magearna', 'Marshadow', 'Mawile-Mega',
|
|
650
|
+
'Medicham-Mega', 'Metagross-Mega', 'Mewtwo', 'Miraidon',
|
|
651
|
+
'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Ogerpon-Hearthflame',
|
|
652
|
+
'Palafin', 'Palkia', 'Pheromosa', 'Rayquaza',
|
|
653
|
+
'Reshiram', 'Salamence-Mega', 'Shaymin-Sky', 'Solgaleo',
|
|
654
|
+
'Spectrier', 'Urshifu-Base', 'Xerneas', 'Yveltal',
|
|
655
|
+
'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned',
|
|
656
|
+
'Zekrom', 'Zygarde-Base', 'Zygarde-Complete', 'Moody',
|
|
657
|
+
'Shadow Tag', 'Power Construct', 'Booster Energy', 'Damp Rock',
|
|
658
|
+
'Focus Band', 'Icy Rock', "King's Rock", 'Leppa Berry',
|
|
659
|
+
'Quick Claw', 'Razor Fang', 'Smooth Rock', 'Terrain Extender',
|
|
660
|
+
'Acupressure', 'Baton Pass', 'Last Respects', 'Shed Tail'
|
|
653
661
|
]
|
|
654
662
|
},
|
|
655
663
|
{
|
|
@@ -665,27 +673,21 @@ export const Formats = [
|
|
|
665
673
|
'Gravity Sleep Clause'
|
|
666
674
|
],
|
|
667
675
|
banlist: [
|
|
668
|
-
'Annihilape', 'Arceus',
|
|
669
|
-
'Calyrex-
|
|
670
|
-
'
|
|
671
|
-
'
|
|
672
|
-
'
|
|
673
|
-
'
|
|
674
|
-
'
|
|
675
|
-
'
|
|
676
|
-
'
|
|
677
|
-
'
|
|
678
|
-
'
|
|
679
|
-
'
|
|
680
|
-
'
|
|
681
|
-
'
|
|
682
|
-
'
|
|
683
|
-
'Urshifu-Base', 'Xerneas',
|
|
684
|
-
'Yveltal', 'Zacian',
|
|
685
|
-
'Zacian-Crowned', 'Zamazenta-Crowned',
|
|
686
|
-
'Zekrom', 'Commander',
|
|
687
|
-
'Power Construct', 'Assist',
|
|
688
|
-
'Dark Void', 'Swagger'
|
|
676
|
+
'Annihilape', 'Arceus', 'Calyrex-Ice',
|
|
677
|
+
'Calyrex-Shadow', 'Dialga', 'Dialga-Origin',
|
|
678
|
+
'Eternatus', 'Genesect', 'Gengar-Mega',
|
|
679
|
+
'Giratina', 'Giratina-Origin', 'Groudon',
|
|
680
|
+
'Ho-Oh', 'Koraidon', 'Kyogre',
|
|
681
|
+
'Kyurem-White', 'Lugia', 'Lunala',
|
|
682
|
+
'Magearna', 'Melmetal', 'Mewtwo',
|
|
683
|
+
'Miraidon', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane',
|
|
684
|
+
'Palkia', 'Palkia-Origin', 'Rayquaza',
|
|
685
|
+
'Reshiram', 'Shedinja', 'Solgaleo',
|
|
686
|
+
'Terapagos', 'Urshifu-Base', 'Xerneas',
|
|
687
|
+
'Yveltal', 'Zacian', 'Zacian-Crowned',
|
|
688
|
+
'Zamazenta-Crowned', 'Zekrom', 'Commander',
|
|
689
|
+
'Power Construct', 'Assist', 'Dark Void',
|
|
690
|
+
'Swagger'
|
|
689
691
|
]
|
|
690
692
|
},
|
|
691
693
|
{ name: '[Gen 9] National Dex AG', mod: 'gen9', ruleset: ['Standard NatDex'] },
|
|
@@ -1397,20 +1399,13 @@ export const Formats = [
|
|
|
1397
1399
|
{
|
|
1398
1400
|
name: '[Gen 4] OU',
|
|
1399
1401
|
mod: 'gen4',
|
|
1400
|
-
ruleset: [
|
|
1401
|
-
|
|
1402
|
-
'
|
|
1403
|
-
'
|
|
1404
|
-
'
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
'Piloswine + Snow Cloak',
|
|
1408
|
-
'Mamoswine + Snow Cloak',
|
|
1409
|
-
'Quick Claw',
|
|
1410
|
-
'Soul Dew',
|
|
1411
|
-
'Baton Pass',
|
|
1412
|
-
'Swagger'
|
|
1413
|
-
]
|
|
1402
|
+
ruleset: [
|
|
1403
|
+
'Standard',
|
|
1404
|
+
'Evasion Abilities Clause',
|
|
1405
|
+
'Baton Pass Stat Trap Clause',
|
|
1406
|
+
'Freeze Clause Mod'
|
|
1407
|
+
],
|
|
1408
|
+
banlist: ['AG', 'Uber', 'Arena Trap', 'Quick Claw', 'Soul Dew', 'Swagger']
|
|
1414
1409
|
},
|
|
1415
1410
|
{
|
|
1416
1411
|
name: '[Gen 3] OU',
|
|
@@ -2241,15 +2236,17 @@ export const Formats = [
|
|
|
2241
2236
|
'Sleep Moves Clause'
|
|
2242
2237
|
],
|
|
2243
2238
|
banlist: [
|
|
2244
|
-
'
|
|
2245
|
-
'
|
|
2246
|
-
'
|
|
2247
|
-
'
|
|
2248
|
-
'
|
|
2249
|
-
'
|
|
2250
|
-
'
|
|
2251
|
-
|
|
2252
|
-
|
|
2239
|
+
'Arceus', 'Blaziken', 'Cottonee',
|
|
2240
|
+
'Darkrai', 'Deoxys', 'Dialga',
|
|
2241
|
+
'Dragonite', 'Giratina', 'Groudon',
|
|
2242
|
+
'Ho-Oh', 'Jirachi', 'Kyogre',
|
|
2243
|
+
'Kyurem-Black', 'Kyurem-White', 'Lugia',
|
|
2244
|
+
'Mew', 'Mewtwo', 'Palkia',
|
|
2245
|
+
'Rayquaza', 'Reshiram', 'Shaymin-Sky',
|
|
2246
|
+
'Togekiss', 'Victini', 'Whimsicott',
|
|
2247
|
+
'Zekrom', 'Focus Band', 'Focus Sash',
|
|
2248
|
+
'Quick Claw', 'Soul Dew', 'Perish Song'
|
|
2249
|
+
]
|
|
2253
2250
|
},
|
|
2254
2251
|
{
|
|
2255
2252
|
name: '[Gen 5] ZU',
|
|
@@ -2344,7 +2341,7 @@ export const Formats = [
|
|
|
2344
2341
|
{
|
|
2345
2342
|
name: '[Gen 4] UU',
|
|
2346
2343
|
mod: 'gen4',
|
|
2347
|
-
ruleset: ['[Gen 4] OU', '!Freeze Clause Mod'],
|
|
2344
|
+
ruleset: ['[Gen 4] OU', '!Baton Pass Stat Trap Clause', '!Freeze Clause Mod'],
|
|
2348
2345
|
banlist: ['OU', 'UUBL'],
|
|
2349
2346
|
unbanlist: ['Arena Trap', 'Quick Claw', 'Swagger']
|
|
2350
2347
|
},
|
|
@@ -2406,21 +2403,25 @@ export const Formats = [
|
|
|
2406
2403
|
ruleset: [
|
|
2407
2404
|
'Picked Team Size = 1',
|
|
2408
2405
|
'Max Team Size = 3',
|
|
2409
|
-
'
|
|
2406
|
+
'Standard',
|
|
2410
2407
|
'Accuracy Moves Clause',
|
|
2411
2408
|
'Sleep Moves Clause',
|
|
2412
|
-
'Team Preview'
|
|
2413
|
-
'!Freeze Clause Mod'
|
|
2409
|
+
'Team Preview'
|
|
2414
2410
|
],
|
|
2415
2411
|
banlist: [
|
|
2416
|
-
'
|
|
2417
|
-
'
|
|
2418
|
-
'
|
|
2419
|
-
'
|
|
2420
|
-
'
|
|
2421
|
-
'
|
|
2422
|
-
|
|
2423
|
-
|
|
2412
|
+
'Arceus', 'Darkrai', 'Deoxys-Attack',
|
|
2413
|
+
'Deoxys-Base', 'Deoxys-Defense', 'Deoxys-Speed',
|
|
2414
|
+
'Dialga', 'Garchomp', 'Giratina',
|
|
2415
|
+
'Groudon', 'Ho-Oh', 'Jirachi',
|
|
2416
|
+
'Kyogre', 'Latias', 'Latios',
|
|
2417
|
+
'Lugia', 'Machamp', 'Manaphy',
|
|
2418
|
+
'Mew', 'Mewtwo', 'Palkia',
|
|
2419
|
+
'Porygon-Z', 'Rayquaza', 'Salamence',
|
|
2420
|
+
'Shaymin', 'Shaymin-Sky', 'Snorlax',
|
|
2421
|
+
'Togekiss', 'Focus Sash', 'Soul Dew',
|
|
2422
|
+
'Destiny Bond', 'Explosion', 'Perish Song',
|
|
2423
|
+
'Self-Destruct'
|
|
2424
|
+
]
|
|
2424
2425
|
},
|
|
2425
2426
|
{
|
|
2426
2427
|
name: '[Gen 4] ZU',
|
|
@@ -2518,11 +2519,16 @@ export const Formats = [
|
|
|
2518
2519
|
mod: 'gen3',
|
|
2519
2520
|
ruleset: ['Standard', 'Baton Pass Stat Clause'],
|
|
2520
2521
|
banlist: [
|
|
2521
|
-
'Uber',
|
|
2522
|
-
'
|
|
2523
|
-
'
|
|
2524
|
-
'
|
|
2525
|
-
'
|
|
2522
|
+
'Uber',
|
|
2523
|
+
'OU',
|
|
2524
|
+
'UUBL',
|
|
2525
|
+
'UU',
|
|
2526
|
+
'NUBL',
|
|
2527
|
+
'NU',
|
|
2528
|
+
'PUBL',
|
|
2529
|
+
'PU',
|
|
2530
|
+
'ZUBL',
|
|
2531
|
+
'Baton Pass + Substitute'
|
|
2526
2532
|
]
|
|
2527
2533
|
},
|
|
2528
2534
|
{
|
|
@@ -2543,22 +2549,26 @@ export const Formats = [
|
|
|
2543
2549
|
ruleset: [
|
|
2544
2550
|
'Picked Team Size = 1',
|
|
2545
2551
|
'Max Team Size = 3',
|
|
2546
|
-
'
|
|
2552
|
+
'Standard',
|
|
2547
2553
|
'Accuracy Moves Clause',
|
|
2548
2554
|
'Sleep Moves Clause',
|
|
2549
|
-
'Team Preview'
|
|
2550
|
-
'!Freeze Clause Mod'
|
|
2555
|
+
'Team Preview'
|
|
2551
2556
|
],
|
|
2552
2557
|
banlist: [
|
|
2553
|
-
'Clefable', '
|
|
2554
|
-
'
|
|
2555
|
-
'
|
|
2556
|
-
'
|
|
2557
|
-
'
|
|
2558
|
-
'
|
|
2559
|
-
'
|
|
2560
|
-
|
|
2561
|
-
|
|
2558
|
+
'Clefable', 'Deoxys-Base',
|
|
2559
|
+
'Deoxys-Attack', 'Deoxys-Defense',
|
|
2560
|
+
'Deoxys-Speed', 'Groudon',
|
|
2561
|
+
'Ho-Oh', 'Kyogre',
|
|
2562
|
+
'Latias', 'Latios',
|
|
2563
|
+
'Lugia', 'Mew',
|
|
2564
|
+
'Mewtwo', 'Rayquaza',
|
|
2565
|
+
'Slaking', 'Snorlax',
|
|
2566
|
+
'Suicune', 'Zapdos',
|
|
2567
|
+
'Destiny Bond', 'Explosion',
|
|
2568
|
+
'Ingrain', 'Perish Song',
|
|
2569
|
+
'Self-Destruct', 'Focus Band',
|
|
2570
|
+
"King's Rock", 'Quick Claw'
|
|
2571
|
+
]
|
|
2562
2572
|
},
|
|
2563
2573
|
{
|
|
2564
2574
|
name: '[Gen 3] Custom Game',
|
|
@@ -2600,7 +2610,7 @@ export const Formats = [
|
|
|
2600
2610
|
name: '[Gen 2] NU',
|
|
2601
2611
|
mod: 'gen2',
|
|
2602
2612
|
ruleset: ['[Gen 2] UU'],
|
|
2603
|
-
banlist: ['UU', 'NUBL'],
|
|
2613
|
+
banlist: ['UU', 'NUBL', 'Swagger'],
|
|
2604
2614
|
unbanlist: ['Agility + Baton Pass']
|
|
2605
2615
|
},
|
|
2606
2616
|
{
|
|
@@ -2609,24 +2619,26 @@ export const Formats = [
|
|
|
2609
2619
|
ruleset: [
|
|
2610
2620
|
'Picked Team Size = 1',
|
|
2611
2621
|
'Max Team Size = 3',
|
|
2612
|
-
'
|
|
2622
|
+
'Standard',
|
|
2613
2623
|
'Accuracy Moves Clause',
|
|
2614
2624
|
'Sleep Moves Clause',
|
|
2615
2625
|
'Team Preview'
|
|
2616
2626
|
],
|
|
2617
2627
|
banlist: [
|
|
2618
|
-
'Alakazam', '
|
|
2619
|
-
'
|
|
2620
|
-
'
|
|
2621
|
-
|
|
2622
|
-
'
|
|
2623
|
-
'
|
|
2624
|
-
'
|
|
2625
|
-
'
|
|
2628
|
+
'Alakazam', 'Celebi',
|
|
2629
|
+
'Clefable', 'Ho-Oh',
|
|
2630
|
+
'Lugia', 'Mew',
|
|
2631
|
+
'Mewtwo', 'Snorlax',
|
|
2632
|
+
'Zapdos', 'Berserk Gene',
|
|
2633
|
+
'Focus Band', "King's Rock",
|
|
2634
|
+
'Quick Claw', 'Attract',
|
|
2635
|
+
'Destiny Bond', 'Explosion',
|
|
2636
|
+
'Perish Song', 'Present',
|
|
2637
|
+
'Self-Destruct', 'Swagger'
|
|
2626
2638
|
]
|
|
2627
2639
|
},
|
|
2628
2640
|
{
|
|
2629
|
-
name: '[Gen 2]
|
|
2641
|
+
name: '[Gen 2] NC 2000',
|
|
2630
2642
|
mod: 'gen2stadium2',
|
|
2631
2643
|
ruleset: [
|
|
2632
2644
|
'Picked Team Size = 3',
|
|
@@ -2643,7 +2655,7 @@ export const Formats = [
|
|
|
2643
2655
|
'Event Moves Clause',
|
|
2644
2656
|
'Nickname Clause',
|
|
2645
2657
|
'Team Preview',
|
|
2646
|
-
'
|
|
2658
|
+
'NC 2000 Move Legality'
|
|
2647
2659
|
],
|
|
2648
2660
|
banlist: ['Uber']
|
|
2649
2661
|
},
|
|
@@ -2681,12 +2693,12 @@ export const Formats = [
|
|
|
2681
2693
|
ruleset: [
|
|
2682
2694
|
'Picked Team Size = 1',
|
|
2683
2695
|
'Max Team Size = 3',
|
|
2684
|
-
'
|
|
2696
|
+
'Standard',
|
|
2685
2697
|
'Accuracy Moves Clause',
|
|
2686
2698
|
'Sleep Moves Clause',
|
|
2687
2699
|
'Team Preview'
|
|
2688
2700
|
],
|
|
2689
|
-
banlist: ['Bind', 'Clamp', 'Explosion', 'Fire Spin', 'Self-Destruct', 'Wrap']
|
|
2701
|
+
banlist: ['Mew', 'Mewtwo', 'Bind', 'Clamp', 'Explosion', 'Fire Spin', 'Self-Destruct', 'Wrap']
|
|
2690
2702
|
},
|
|
2691
2703
|
{
|
|
2692
2704
|
name: '[Gen 1] Japanese OU',
|
|
@@ -2714,7 +2726,7 @@ export const Formats = [
|
|
|
2714
2726
|
ruleset: ['[Gen 1] OU', 'Allow Tradeback']
|
|
2715
2727
|
},
|
|
2716
2728
|
{
|
|
2717
|
-
name: '[Gen 1]
|
|
2729
|
+
name: '[Gen 1] NC 1997',
|
|
2718
2730
|
mod: 'gen1jpn',
|
|
2719
2731
|
ruleset: [
|
|
2720
2732
|
'Picked Team Size = 3',
|
|
@@ -2728,7 +2740,7 @@ export const Formats = [
|
|
|
2728
2740
|
'Nickname Clause',
|
|
2729
2741
|
'HP Percentage Mod',
|
|
2730
2742
|
'Cancel Mod',
|
|
2731
|
-
'
|
|
2743
|
+
'NC 1997 Move Legality'
|
|
2732
2744
|
],
|
|
2733
2745
|
banlist: ['Uber']
|
|
2734
2746
|
},
|