@pkmn/sim 0.5.28 → 0.6.2

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.
Files changed (53) hide show
  1. package/README.md +3 -2
  2. package/build/config/formats.js +72 -105
  3. package/build/config/formats.js.map +1 -1
  4. package/build/data/abilities.js +4 -0
  5. package/build/data/abilities.js.map +1 -1
  6. package/build/data/aliases.js +2 -2
  7. package/build/data/aliases.js.map +1 -1
  8. package/build/data/formats-data.js +111 -115
  9. package/build/data/formats-data.js.map +1 -1
  10. package/build/data/items.js +7 -1
  11. package/build/data/items.js.map +1 -1
  12. package/build/data/learnsets.js +3 -2
  13. package/build/data/learnsets.js.map +1 -1
  14. package/build/data/mods/gen1/moves.js +0 -10
  15. package/build/data/mods/gen1/moves.js.map +1 -1
  16. package/build/data/mods/gen1/scripts.js +15 -14
  17. package/build/data/mods/gen1/scripts.js.map +1 -1
  18. package/build/data/mods/gen2/formats-data.js +2 -2
  19. package/build/data/mods/gen2/formats-data.js.map +1 -1
  20. package/build/data/mods/gen2/moves.js +0 -1
  21. package/build/data/mods/gen2/moves.js.map +1 -1
  22. package/build/data/moves.js +44 -25
  23. package/build/data/moves.js.map +1 -1
  24. package/build/data/pokedex.js +1 -1
  25. package/build/sim/dex-conditions.d.ts +1 -0
  26. package/build/sim/dex-conditions.js.map +1 -1
  27. package/build/sim/dex.js +2 -2
  28. package/build/sim/dex.js.map +1 -1
  29. package/build/sim/field.js +1 -0
  30. package/build/sim/field.js.map +1 -1
  31. package/build/sim/pokemon.js +2 -10
  32. package/build/sim/pokemon.js.map +1 -1
  33. package/build/sim/team-validator.d.ts +2 -2
  34. package/build/sim/team-validator.js +19 -14
  35. package/build/sim/team-validator.js.map +1 -1
  36. package/config/formats.ts +75 -110
  37. package/data/abilities.ts +4 -0
  38. package/data/aliases.ts +2 -2
  39. package/data/formats-data.ts +111 -115
  40. package/data/items.ts +7 -1
  41. package/data/learnsets.ts +3 -2
  42. package/data/mods/gen1/moves.ts +0 -10
  43. package/data/mods/gen1/scripts.ts +14 -14
  44. package/data/mods/gen2/formats-data.ts +2 -2
  45. package/data/mods/gen2/moves.ts +0 -1
  46. package/data/moves.ts +43 -23
  47. package/data/pokedex.ts +1 -1
  48. package/package.json +3 -3
  49. package/sim/dex-conditions.ts +1 -0
  50. package/sim/dex.ts +1 -1
  51. package/sim/field.ts +1 -0
  52. package/sim/pokemon.ts +1 -8
  53. package/sim/team-validator.ts +27 -15
package/config/formats.ts CHANGED
@@ -284,27 +284,17 @@ export const Formats: FormatList = [
284
284
  name: "[Gen 8] Battle Stadium Singles",
285
285
 
286
286
  mod: 'gen8',
287
- ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8'],
288
- banlist: ['Eternatus-Eternamax'],
289
- unbanlist: ['Mythical', 'Restricted Legendary'],
287
+ ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8', 'VGC Timer', 'Limit Two Restricted'],
288
+ restricted: ['Restricted Legendary'],
290
289
  },
291
290
  {
292
- name: "[Gen 8] Champion League",
293
- threads: [
294
- `&bullet; <a href="https://www.smogon.com/forums/threads/3707533/">Champion League Discussion</a>`,
295
- ],
291
+ name: "[Gen 8] Battle Stadium Singles Series 13",
296
292
 
297
293
  mod: 'gen8',
294
+ searchShow: false,
298
295
  ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8'],
299
- banlist: ['All Pokemon'],
300
- unbanlist: [
301
- 'Venusaur', 'Charizard', 'Blastoise', 'Sandslash-Base', 'Ninetales-Base', 'Arcanine', 'Alakazam', 'Tentacruel', 'Magneton', 'Cloyster',
302
- 'Exeggutor-Base', 'Rhydon', 'Gyarados', 'Lapras', 'Vaporeon', 'Jolteon', 'Flareon', 'Aerodactyl', 'Dragonite', 'Heracross', 'Skarmory',
303
- 'Tyranitar', 'Ludicolo', 'Gardevoir', 'Aggron', 'Wailord', 'Altaria', 'Whiscash', 'Claydol', 'Cradily', 'Armaldo', 'Milotic', 'Salamence',
304
- 'Metagross', 'Roserade', 'Gastrodon', 'Spiritomb', 'Garchomp', 'Lucario', 'Rhyperior', 'Togekiss', 'Seismitoad', 'Archeops',
305
- 'Vanilluxe', 'Escavalier', 'Haxorus', 'Accelgor', 'Druddigon', 'Bouffalant', 'Hydreigon', 'Volcarona', 'Aegislash', 'Tyrantrum',
306
- 'Aurorus', 'Hawlucha', 'Carbink', 'Goodra', 'Gourgeist', 'Rillaboom', 'Cinderace', 'Inteleon', 'Mr. Rime', 'Dragapult',
307
- ],
296
+ banlist: ['Eternatus-Eternamax'],
297
+ unbanlist: ['Mythical', 'Restricted Legendary'],
308
298
  },
309
299
  {
310
300
  name: "[Gen 8] Custom Game",
@@ -395,6 +385,7 @@ export const Formats: FormatList = [
395
385
  name: "[Gen 8] Battle Stadium Doubles Series 13",
396
386
 
397
387
  mod: 'gen8',
388
+ searchShow: false,
398
389
  gameType: 'doubles',
399
390
  ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8', 'VGC Timer'],
400
391
  banlist: ['Eternatus-Eternamax'],
@@ -647,39 +638,14 @@ export const Formats: FormatList = [
647
638
  column: 2,
648
639
  },
649
640
  {
650
- name: "[Gen 8] Revelationmons",
651
- desc: `The moves in the first slot(s) of a Pok&eacute;mon's set have their types changed to match the Pok&eacute;mon's type(s).`,
652
- threads: [
653
- `&bullet; <a href="https://www.smogon.com/forums/threads/3692297/">Revelationmons</a>`,
654
- ],
655
-
656
- mod: 'gen8',
657
- ruleset: ['Standard OMs', 'Revelationmons Mod', 'Sleep Moves Clause'],
658
- banlist: [
659
- 'Blacephalon', 'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragonite', 'Dragapult', 'Eternatus',
660
- 'Genesect', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kingdra', 'Kommo-o', 'Kyogre', 'Kyurem-Black', 'Kyurem-White',
661
- 'Landorus-Base', 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane',
662
- 'Noivern', 'Palkia', 'Pheromosa', 'Polteageist', 'Rayquaza', 'Reshiram', 'Solgaleo', 'Spectrier', 'Thundurus-Therian', 'Urshifu-Base',
663
- 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Magnet Pull',
664
- 'Moody', 'Power Construct', 'Shadow Tag', 'King\'s Rock', 'Baton Pass',
665
- ],
666
- restricted: ['Bolt Beak', 'Close Combat', 'U-turn', 'Volt Switch'],
667
- },
668
- {
669
- name: "[Gen 8] Tag Team Singles",
670
- desc: `Bring four Pok&eacute;mon to Team Preview and choose two to battle in a singles battle.`,
641
+ name: "[Gen 8] Pure Hackmons",
642
+ desc: `Anything directly hackable onto a set (EVs, IVs, forme, ability, item, and move) and is usable in local battles is allowed.`,
671
643
  threads: [
672
- `&bullet; <a href="https://www.smogon.com/forums/threads/3705415/">Tag Team Singles</a>`,
644
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3656851/">Pure Hackmons</a>`,
673
645
  ],
674
646
 
675
647
  mod: 'gen8',
676
- ruleset: ['Picked Team Size = 2', 'Max Team Size = 4', 'Standard OMs', 'Sleep Moves Clause', 'Evasion Abilities Clause'],
677
- banlist: [
678
- 'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Dialga', 'Eternatus', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kyogre', 'Kyurem-Black',
679
- 'Kyurem-White', 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Melmetal', 'Mewtwo', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia',
680
- 'Rayquaza', 'Reshiram', 'Solgaleo', 'Spectrier', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned',
681
- 'Zekrom', 'Moody', 'Power Construct', 'Bright Powder', 'Focus Sash', 'King\'s Rock', 'Lax Incense', 'Final Gambit',
682
- ],
648
+ ruleset: ['-Nonexistent', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Endless Battle Clause'],
683
649
  },
684
650
 
685
651
  // Other Metagames
@@ -691,7 +657,7 @@ export const Formats: FormatList = [
691
657
  },
692
658
  {
693
659
  name: "[Gen 8] Balanced Hackmons",
694
- desc: `Anything that can be hacked in-game and is usable in local battles is allowed.`,
660
+ desc: `Anything directly hackable onto a set (EVs, IVs, forme, ability, item, and move) and is usable in local battles is allowed.`,
695
661
  threads: [
696
662
  `&bullet; <a href="https://www.smogon.com/forums/threads/3656408/">Balanced Hackmons</a>`,
697
663
  `&bullet; <a href="https://www.smogon.com/forums/threads/3659817/">BH Resources</a>`,
@@ -1875,17 +1841,6 @@ export const Formats: FormatList = [
1875
1841
  pokemon.m.innates = undefined;
1876
1842
  },
1877
1843
  },
1878
- {
1879
- name: "[Gen 8] Pure Hackmons",
1880
- desc: `Anything that can be hacked in-game and is usable in local battles is allowed.`,
1881
- threads: [
1882
- `&bullet; <a href="https://www.smogon.com/forums/threads/3656851/">Pure Hackmons</a>`,
1883
- ],
1884
-
1885
- mod: 'gen8',
1886
- searchShow: false,
1887
- ruleset: ['-Nonexistent', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Endless Battle Clause'],
1888
- },
1889
1844
  {
1890
1845
  name: "[Gen 8] Shared Power",
1891
1846
  desc: `Once a Pok&eacute;mon switches in, its ability is shared with the rest of the team.`,
@@ -1947,6 +1902,23 @@ export const Formats: FormatList = [
1947
1902
  }
1948
1903
  },
1949
1904
  },
1905
+ {
1906
+ name: "[Gen 8] Tag Team Singles",
1907
+ desc: `Bring four Pok&eacute;mon to Team Preview and choose two to battle in a singles battle.`,
1908
+ threads: [
1909
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3705415/">Tag Team Singles</a>`,
1910
+ ],
1911
+
1912
+ mod: 'gen8',
1913
+ searchShow: false,
1914
+ ruleset: ['Picked Team Size = 2', 'Max Team Size = 4', 'Standard OMs', 'Sleep Moves Clause', 'Evasion Abilities Clause'],
1915
+ banlist: [
1916
+ 'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Dialga', 'Eternatus', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kyogre', 'Kyurem-Black',
1917
+ 'Kyurem-White', 'Lugia', 'Lunala', 'Magearna', 'Marshadow', 'Melmetal', 'Mewtwo', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia',
1918
+ 'Rayquaza', 'Reshiram', 'Solgaleo', 'Spectrier', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned',
1919
+ 'Zekrom', 'Moody', 'Power Construct', 'Bright Powder', 'Focus Sash', 'King\'s Rock', 'Lax Incense', 'Final Gambit',
1920
+ ],
1921
+ },
1950
1922
  {
1951
1923
  name: "[Gen 8] Trademarked",
1952
1924
  desc: `Sacrifice your Pok&eacute;mon's ability for a status move that activates on switch-in.`,
@@ -2558,34 +2530,39 @@ export const Formats: FormatList = [
2558
2530
  column: 3,
2559
2531
  },
2560
2532
  {
2561
- name: "[Gen 5] Ubers",
2533
+ name: "[Gen 6] Ubers",
2562
2534
  threads: [
2563
- `&bullet; <a href="https://www.smogon.com/forums/posts/8286278/">BW2 Ubers</a>`,
2535
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8286277/">ORAS Ubers</a>`,
2564
2536
  ],
2565
2537
 
2566
- mod: 'gen5',
2538
+ mod: 'gen6',
2567
2539
  // searchShow: false,
2568
- ruleset: ['Standard', 'Sleep Clause Mod'],
2540
+ ruleset: ['Standard', 'Swagger Clause', 'Mega Rayquaza Clause'],
2569
2541
  },
2570
2542
  {
2571
- name: "[Gen 7] PU",
2543
+ name: "[Gen 3] Doubles OU",
2572
2544
  threads: [
2573
- `&bullet; <a href="https://www.smogon.com/forums/threads/3611496/">USM PU Sample Teams</a>`,
2574
- `&bullet; <a href="https://www.smogon.com/forums/threads/3614892/">USM PU Viability Rankings</a>`,
2545
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3666831/">ADV Doubles OU</a>`,
2575
2546
  ],
2576
2547
 
2577
- mod: 'gen7',
2548
+ mod: 'gen3',
2578
2549
  // searchShow: false,
2579
- ruleset: ['[Gen 7] NU'],
2580
- banlist: ['NU', 'PUBL'],
2550
+ gameType: 'doubles',
2551
+ ruleset: ['Standard', '!Sleep Clause Mod', '!Switch Priority Clause Mod'],
2552
+ banlist: ['Uber'],
2553
+ unbanlist: ['Deoxys-Speed', 'Wobbuffet', 'Wynaut'],
2581
2554
  },
2582
2555
  {
2583
- name: "[Gen 2] UUBL",
2584
- threads: [`&bullet; <a href="https://www.smogon.com/forums/threads/3662389/">GSC UUBL</a>`],
2556
+ name: "[Gen 3] UU",
2557
+ threads: [
2558
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3585923/">ADV UU Metagame Discussion</a>`,
2559
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3548578/">ADV UU Viability Rankings</a>`,
2560
+ ],
2585
2561
 
2586
- mod: 'gen2',
2587
- ruleset: ['[Gen 2] OU'],
2588
- banlist: ['OU'],
2562
+ mod: 'gen3',
2563
+ // searchShow: false,
2564
+ ruleset: ['Standard'],
2565
+ banlist: ['Uber', 'OU', 'UUBL', 'Smeargle + Ingrain', 'Arena Trap', 'Baton Pass', 'Swagger'],
2589
2566
  },
2590
2567
 
2591
2568
  // Past Gens OU
@@ -2684,7 +2661,7 @@ export const Formats: FormatList = [
2684
2661
  },
2685
2662
  {
2686
2663
  name: "[Gen 7] Balanced Hackmons",
2687
- desc: `Anything that can be hacked in-game and is usable in local battles is allowed.`,
2664
+ desc: `Anything directly hackable onto a set (EVs, IVs, forme, ability, item, and move) and is usable in local battles is allowed.`,
2688
2665
  threads: [
2689
2666
  `&bullet; <a href="https://www.smogon.com/forums/posts/8407209/">USM Balanced Hackmons</a>`,
2690
2667
  ],
@@ -2856,6 +2833,18 @@ export const Formats: FormatList = [
2856
2833
  ruleset: ['[Gen 7] RU'],
2857
2834
  banlist: ['RU', 'NUBL', 'Drought'],
2858
2835
  },
2836
+ {
2837
+ name: "[Gen 7] PU",
2838
+ threads: [
2839
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3611496/">USM PU Sample Teams</a>`,
2840
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3614892/">USM PU Viability Rankings</a>`,
2841
+ ],
2842
+
2843
+ mod: 'gen7',
2844
+ searchShow: false,
2845
+ ruleset: ['[Gen 7] NU'],
2846
+ banlist: ['NU', 'PUBL'],
2847
+ },
2859
2848
  {
2860
2849
  name: "[Gen 7] LC",
2861
2850
  threads: [
@@ -3114,16 +3103,6 @@ export const Formats: FormatList = [
3114
3103
  section: "OR/AS Singles",
3115
3104
  column: 4,
3116
3105
  },
3117
- {
3118
- name: "[Gen 6] Ubers",
3119
- threads: [
3120
- `&bullet; <a href="https://www.smogon.com/forums/posts/8286277/">ORAS Ubers</a>`,
3121
- ],
3122
-
3123
- mod: 'gen6',
3124
- searchShow: false,
3125
- ruleset: ['Standard', 'Swagger Clause', 'Mega Rayquaza Clause'],
3126
- },
3127
3106
  {
3128
3107
  name: "[Gen 6] UU",
3129
3108
  threads: [
@@ -3401,6 +3380,16 @@ export const Formats: FormatList = [
3401
3380
  section: "B2/W2 Singles",
3402
3381
  column: 4,
3403
3382
  },
3383
+ {
3384
+ name: "[Gen 5] Ubers",
3385
+ threads: [
3386
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8286278/">BW2 Ubers</a>`,
3387
+ ],
3388
+
3389
+ mod: 'gen5',
3390
+ searchShow: false,
3391
+ ruleset: ['Standard', 'Sleep Clause Mod'],
3392
+ },
3404
3393
  {
3405
3394
  name: "[Gen 5] UU",
3406
3395
  threads: [
@@ -3788,18 +3777,6 @@ export const Formats: FormatList = [
3788
3777
  ruleset: ['Standard', 'Deoxys Camouflage Clause', 'One Baton Pass Clause'],
3789
3778
  banlist: ['Wobbuffet + Leftovers'],
3790
3779
  },
3791
- {
3792
- name: "[Gen 3] UU",
3793
- threads: [
3794
- `&bullet; <a href="https://www.smogon.com/forums/threads/3585923/">ADV UU Metagame Discussion</a>`,
3795
- `&bullet; <a href="https://www.smogon.com/forums/threads/3548578/">ADV UU Viability Rankings</a>`,
3796
- ],
3797
-
3798
- mod: 'gen3',
3799
- searchShow: false,
3800
- ruleset: ['Standard'],
3801
- banlist: ['Uber', 'OU', 'UUBL', 'Smeargle + Ingrain', 'Arena Trap', 'Baton Pass', 'Swagger'],
3802
- },
3803
3780
  {
3804
3781
  name: "[Gen 3] NU",
3805
3782
  threads: [
@@ -3830,19 +3807,6 @@ export const Formats: FormatList = [
3830
3807
  ],
3831
3808
  unbanlist: ['Mr. Mime', 'Wobbuffet', 'Wynaut', 'Sand Veil', 'Soundproof'],
3832
3809
  },
3833
- {
3834
- name: "[Gen 3] Doubles OU",
3835
- threads: [
3836
- `&bullet; <a href="https://www.smogon.com/forums/threads/3666831/">ADV Doubles OU</a>`,
3837
- ],
3838
-
3839
- mod: 'gen3',
3840
- searchShow: false,
3841
- gameType: 'doubles',
3842
- ruleset: ['Standard', '!Sleep Clause Mod', '!Switch Priority Clause Mod'],
3843
- banlist: ['Uber'],
3844
- unbanlist: ['Deoxys-Speed', 'Wobbuffet', 'Wynaut'],
3845
- },
3846
3810
  {
3847
3811
  name: "[Gen 3] Custom Game",
3848
3812
 
@@ -3878,7 +3842,7 @@ export const Formats: FormatList = [
3878
3842
  mod: 'gen2',
3879
3843
  searchShow: false,
3880
3844
  ruleset: ['[Gen 2] OU'],
3881
- banlist: ['OU', 'UUBL'],
3845
+ banlist: ['OU', 'UUBL', 'Agility + Baton Pass'],
3882
3846
  unbanlist: ['Mean Look + Baton Pass', 'Spider Web + Baton Pass'],
3883
3847
  },
3884
3848
  {
@@ -3889,6 +3853,7 @@ export const Formats: FormatList = [
3889
3853
  searchShow: false,
3890
3854
  ruleset: ['[Gen 2] UU'],
3891
3855
  banlist: ['UU', 'NUBL'],
3856
+ unbanlist: ['Agility + Baton Pass'],
3892
3857
  },
3893
3858
  {
3894
3859
  name: "[Gen 2] 1v1",
@@ -3965,7 +3930,7 @@ export const Formats: FormatList = [
3965
3930
  {
3966
3931
  name: "[Gen 1] NU",
3967
3932
  threads: [
3968
- `&bullet; <a href="https://www.smogon.com/forums/threads/3668913/">RBY NU Viability Rankings</a>`,
3933
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3679758/">RBY NU Metagame Discussion &amp; Resources</a>`,
3969
3934
  ],
3970
3935
 
3971
3936
  mod: 'gen1',
package/data/abilities.ts CHANGED
@@ -2348,6 +2348,7 @@ export const Abilities: {[abilityid: string]: AbilityData} = {
2348
2348
  if (pokemon.transformed) return;
2349
2349
  this.add('-ability', pokemon, 'Neutralizing Gas');
2350
2350
  pokemon.abilityState.ending = false;
2351
+ const strongWeathers = ['desolateland', 'primordialsea', 'deltastream'];
2351
2352
  for (const target of this.getAllActive()) {
2352
2353
  if (target.illusion) {
2353
2354
  this.singleEvent('End', this.dex.abilities.get('Illusion'), target.abilityState, target, pokemon, 'neutralizinggas');
@@ -2356,6 +2357,9 @@ export const Abilities: {[abilityid: string]: AbilityData} = {
2356
2357
  delete target.volatiles['slowstart'];
2357
2358
  this.add('-end', target, 'Slow Start', '[silent]');
2358
2359
  }
2360
+ if (strongWeathers.includes(target.getAbility().id)) {
2361
+ this.singleEvent('End', this.dex.abilities.get(target.getAbility().id), target.abilityState, target, pokemon, 'neutralizinggas');
2362
+ }
2359
2363
  }
2360
2364
  },
2361
2365
  onEnd(source) {
package/data/aliases.ts CHANGED
@@ -71,8 +71,8 @@ export const Aliases: {[alias: string]: string} = {
71
71
  gen6ag: "[Gen 6] Anything Goes",
72
72
  crossevo: "[Gen 8] Cross Evolution",
73
73
  mayhem: "[Gen 8] Random Battle Mayhem",
74
- omotm: "[Gen 8] Revelationmons",
75
- lcotm: "[Gen 8] Tag Team Singles",
74
+ omotm: "[Gen 8] Pure Hackmons",
75
+ // lcotm: "[Gen 8] Tag Team Singles",
76
76
 
77
77
  // mega evos
78
78
  fabio: "Ampharos-Mega",