@pkmn/sim 0.4.24 → 0.5.1

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 (46) hide show
  1. package/build/config/formats.js +171 -109
  2. package/build/config/formats.js.map +1 -1
  3. package/build/data/aliases.js +2 -2
  4. package/build/data/aliases.js.map +1 -1
  5. package/build/data/conditions.js +1 -0
  6. package/build/data/conditions.js.map +1 -1
  7. package/build/data/formats-data.js +14 -6
  8. package/build/data/formats-data.js.map +1 -1
  9. package/build/data/items.js +24 -0
  10. package/build/data/items.js.map +1 -1
  11. package/build/data/learnsets.js +34 -0
  12. package/build/data/learnsets.js.map +1 -1
  13. package/build/data/mods/gen2/formats-data.js +2 -2
  14. package/build/data/mods/gen2/formats-data.js.map +1 -1
  15. package/build/data/mods/gen3/formats-data.js +1 -1
  16. package/build/data/mods/gen3/formats-data.js.map +1 -1
  17. package/build/data/mods/gen6/pokedex.js +17 -17
  18. package/build/data/mods/gen6/pokedex.js.map +1 -1
  19. package/build/data/moves.js +1 -0
  20. package/build/data/moves.js.map +1 -1
  21. package/build/data/pokedex.js +33 -0
  22. package/build/data/pokedex.js.map +1 -1
  23. package/build/data/text/items.js +4 -0
  24. package/build/data/text/items.js.map +1 -1
  25. package/build/sim/battle-actions.js +1 -1
  26. package/build/sim/battle-actions.js.map +1 -1
  27. package/build/sim/dex-formats.js +1 -1
  28. package/build/sim/dex-formats.js.map +1 -1
  29. package/build/sim/dex-species.js +4 -3
  30. package/build/sim/dex-species.js.map +1 -1
  31. package/config/formats.ts +177 -112
  32. package/data/aliases.ts +2 -2
  33. package/data/conditions.ts +1 -0
  34. package/data/formats-data.ts +14 -6
  35. package/data/items.ts +24 -0
  36. package/data/learnsets.ts +34 -0
  37. package/data/mods/gen2/formats-data.ts +2 -2
  38. package/data/mods/gen3/formats-data.ts +1 -1
  39. package/data/mods/gen6/pokedex.ts +17 -17
  40. package/data/moves.ts +1 -0
  41. package/data/pokedex.ts +33 -0
  42. package/data/text/items.ts +4 -0
  43. package/package.json +1 -1
  44. package/sim/battle-actions.ts +1 -1
  45. package/sim/dex-formats.ts +1 -1
  46. package/sim/dex-species.ts +4 -3
package/config/formats.ts CHANGED
@@ -141,7 +141,6 @@ export const Formats: FormatList = [
141
141
  mod: 'gen8',
142
142
  ruleset: ['[Gen 8] RU'],
143
143
  banlist: ['RU', 'NUBL', 'Drizzle', 'Drought'],
144
- unbanlist: ['Indeedee'],
145
144
  },
146
145
  {
147
146
  name: "[Gen 8] PU",
@@ -152,7 +151,7 @@ export const Formats: FormatList = [
152
151
 
153
152
  mod: 'gen8',
154
153
  ruleset: ['[Gen 8] NU'],
155
- banlist: ['NU', 'PUBL', 'Indeedee'],
154
+ banlist: ['NU', 'PUBL'],
156
155
  },
157
156
  {
158
157
  name: "[Gen 8] LC",
@@ -165,7 +164,7 @@ export const Formats: FormatList = [
165
164
  mod: 'gen8',
166
165
  ruleset: ['Little Cup', 'Standard', 'Dynamax Clause'],
167
166
  banlist: [
168
- 'Corsola-Galar', 'Cutiefly', 'Drifloon', 'Gastly', 'Gothita', 'Rufflet', 'Scraggy', 'Scyther', 'Sneasel', 'Swirlix', 'Tangela', 'Vullaby', 'Vulpix-Alola', 'Woobat',
167
+ 'Corsola-Galar', 'Cutiefly', 'Drifloon', 'Gastly', 'Gothita', 'Rufflet', 'Scraggy', 'Scyther', 'Sneasel', 'Swirlix', 'Tangela', 'Vullaby', 'Vulpix-Alola', 'Woobat', 'Zigzagoon-Base',
169
168
  'Chlorophyll', 'Moody', 'Baton Pass', 'Sticky Web',
170
169
  ],
171
170
  },
@@ -231,7 +230,10 @@ export const Formats: FormatList = [
231
230
 
232
231
  mod: 'gen8',
233
232
  ruleset: ['[Gen 8] PU'],
234
- banlist: ['PU', 'Centiskorch', 'Drampa', 'Exeggutor-Alola', 'Gallade', 'Haunter', 'Magmortar', 'Magneton', 'Omastar', 'Rotom-Frost', 'Turtonator', 'Vikavolt', 'Silvally-Dragon', 'Silvally-Ground', 'Sneasel', 'Damp Rock', 'Grassy Seed'],
233
+ banlist: [
234
+ 'PU', 'Centiskorch', 'Drampa', 'Exeggutor-Alola', 'Gallade', 'Haunter', 'Magmortar', 'Magneton', 'Omastar', 'Rotom-Frost',
235
+ 'Turtonator', 'Vanilluxe', 'Vikavolt', 'Silvally-Dragon', 'Silvally-Ground', 'Sneasel', 'Damp Rock', 'Grassy Seed',
236
+ ],
235
237
  },
236
238
  {
237
239
  name: "[Gen 8] LC UU",
@@ -274,6 +276,7 @@ export const Formats: FormatList = [
274
276
  mod: 'gen8',
275
277
  searchShow: false,
276
278
  ruleset: ['[Gen 8] LC', '+CAP'],
279
+ banlist: ['Cawdet'],
277
280
  },
278
281
  {
279
282
  name: "[Gen 8] Battle Stadium Singles",
@@ -367,12 +370,32 @@ export const Formats: FormatList = [
367
370
  },
368
371
  {
369
372
  name: "[Gen 8] VGC 2021 Series 11",
373
+ threads: [
374
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3677186/">VGC 2021 Series 11 Metagame Discussion</a>`,
375
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3693427/">VGC 2021 Series 11 Sample Teams</a>`,
376
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3693284/">VGC 2021 Series 11 Viability Rankings</a>`,
377
+ ],
370
378
 
371
379
  mod: 'gen8',
372
380
  gameType: 'doubles',
373
381
  ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8', 'VGC Timer', 'Limit One Restricted'],
374
382
  restricted: ['Restricted Legendary'],
375
383
  },
384
+ {
385
+ name: "[Gen 8] Tiny Tourney",
386
+ threads: [
387
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3694047/">Tiny Tourney Metagame Discussion</a>`,
388
+ ],
389
+
390
+ mod: 'gen8',
391
+ gameType: 'doubles',
392
+ ruleset: ['Flat Rules', '!! Adjust Level = 50', 'Min Source Gen = 8'],
393
+ onValidateSet(set) {
394
+ const species = this.dex.species.get(set.species);
395
+ if (!species.nfe || species.prevo) return [`Non-first-stage Pok\u00e9mon cannot be used in Tiny Tourney.`];
396
+ if (species.heightm > 1) return [`${species.name} is too tall to be used in Tiny Tourney.`];
397
+ },
398
+ },
376
399
  {
377
400
  name: "[Gen 8] VGC 2021 Series 9",
378
401
 
@@ -609,44 +632,37 @@ export const Formats: FormatList = [
609
632
  column: 2,
610
633
  },
611
634
  {
612
- name: "[Gen 8] Sketchmons",
613
- desc: `Pok&eacute;mon can learn one of any move they don't normally learn, barring the few that are banned.`,
635
+ name: "[Gen 8] Revelationmons",
636
+ 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).`,
614
637
  threads: [
615
- `&bullet; <a href="https://www.smogon.com/forums/threads/3680298/">Sketchmons</a>`,
638
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3692297/">Revelationmons</a>`,
616
639
  ],
617
640
 
618
641
  mod: 'gen8',
619
- ruleset: ['Standard', 'Dynamax Clause', 'Sketchmons Move Legality'],
642
+ ruleset: ['Standard', 'Dynamax Clause', 'Revelationmons Mod', 'Sleep Moves Clause'],
620
643
  banlist: [
621
- 'Calyrex-Ice', 'Calyrex-Shadow', 'Cinderace', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragapult', 'Eternatus', 'Genesect',
622
- 'Giratina', 'Giratina-Origin', 'Groudon', 'Hawlucha', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base',
623
- 'Lugia', 'Lunala', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa',
624
- 'Porygon-Z', 'Rayquaza', 'Regieleki', 'Reshiram', 'Rillaboom', 'Shedinja', 'Solgaleo', 'Spectrier', 'Swoobat', 'Tapu Bulu',
625
- 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Zeraora', 'Zygarde-Base',
626
- 'Arena Trap', 'Moody', 'Power Construct', 'Sand Rush', 'Shadow Tag', 'King\'s Rock', 'Baton Pass',
627
- ],
628
- restricted: [
629
- 'Acupressure', 'Astral Barrage', 'Belly Drum', 'Bolt Beak', 'Clangorous Soul', 'Double Iron Bash', 'Electrify', 'Extreme Speed',
630
- 'Fishious Rend', 'Geomancy', 'Glacial Lance', 'Lovely Kiss', 'No Retreat', 'Oblivion Wing', 'Octolock', 'Quiver Dance', 'Secret Sword',
631
- 'Shell Smash', 'Shift Gear', 'Sleep Powder', 'Spore', 'Thousand Arrows', 'Transform', 'V-create', 'Wicked Blow',
644
+ 'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragonite', 'Dragapult', 'Eternatus', 'Genesect',
645
+ 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kommo-o', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base', 'Lugia',
646
+ 'Lunala', 'Magearna', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Noivern', 'Palkia',
647
+ 'Pheromosa', 'Rayquaza', 'Reshiram', 'Solgaleo', 'Spectrier', 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned',
648
+ 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Magnet Pull', 'Moody', 'Power Construct', 'Shadow Tag',
649
+ 'King\'s Rock', 'Baton Pass',
632
650
  ],
651
+ restricted: ['Bolt Beak', 'U-turn', 'Volt Switch'],
633
652
  },
634
653
  {
635
- name: "[Gen 8] AAA Doubles",
636
- desc: `Pok&eacute;mon have access to almost any ability, in a doubles setting.`,
654
+ name: "[Gen 8 BDSP] Balanced Hackmons",
655
+ desc: `Anything that can be hacked in-game and is usable in local battles is allowed.`,
637
656
  threads: [
638
- `&bullet; <a href="https://www.smogon.com/forums/posts/8299984">AAA Doubles</a>`,
657
+ `&bullet; <a href="https://www.smogon.com/forums/posts/9043074">BDSP Balanced Hackmons</a>`,
639
658
  ],
640
659
 
641
- mod: 'gen8',
642
- gameType: 'doubles',
643
- ruleset: ['[Gen 8] Doubles OU', 'Sleep Clause Mod', '2 Ability Clause', '!Obtainable Abilities'],
660
+ mod: 'gen8bdsp',
661
+ ruleset: ['-Nonexistent', 'OHKO Clause', 'Evasion Moves Clause', 'Species Clause', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Moves Clause', 'Endless Battle Clause'],
644
662
  banlist: [
645
- 'Kyurem-Black', 'Regigigas', 'Shedinja', 'Urshifu-Rapid-Strike', 'Zygarde-Base', 'Anger Point', 'Arena Trap', 'Comatose', 'Contrary',
646
- 'Dancer', 'Desolate Land', 'Fluffy', 'Fur Coat', 'Gorilla Tactics', 'Huge Power', 'Ice Scales', 'Illusion', 'Imposter', 'Innards Out',
647
- 'Intrepid Sword', 'Libero', 'Moody', 'Neutralizing Gas', 'Parental Bond', 'Prankster', 'Primordial Sea', 'Protean', 'Pure Power',
648
- 'Rattled', 'Serene Grace', 'Simple', 'Soul-Heart', 'Stakeout', 'Steam Engine', 'Speed Boost', 'Water Bubble', 'Water Compaction',
649
- 'Wonder Guard', 'King\'s Rock', 'Weakness Policy', 'Beat Up', 'Stored Power',
663
+ 'Shedinja', 'Arena Trap', 'Contrary', 'Gorilla Tactics', 'Huge Power', 'Illusion', 'Innards Out', 'Intrepid Sword',
664
+ 'Magnet Pull', 'Moody', 'Neutralizing Gas', 'Parental Bond', 'Pure Power', 'Shadow Tag', 'Stakeout', 'Water Bubble',
665
+ 'Wonder Guard', 'Comatose + Sleep Talk', 'Shell Smash',
650
666
  ],
651
667
  },
652
668
 
@@ -794,12 +810,12 @@ export const Formats: FormatList = [
794
810
  mod: 'gen8',
795
811
  ruleset: ['Standard', 'STABmons Move Legality', 'Dynamax Clause', 'Sleep Moves Clause'],
796
812
  banlist: [
797
- 'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragapult', 'Eternatus', 'Genesect', 'Garchomp', 'Giratina',
798
- 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus', 'Landorus-Therian', 'Lugia', 'Lunala',
799
- 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Porygon-Z', 'Rayquaza', 'Reshiram',
800
- 'Silvally', 'Solgaleo', 'Spectrier', 'Tapu Bulu', 'Tapu Koko', 'Thundurus-Base', 'Urshifu-Base', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned',
801
- 'Zamazenta', 'Zamazenta-Crowned', 'Zapdos-Galar', 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Magnet Pull', 'Moody', 'Power Construct', 'Shadow Tag',
802
- 'King\'s Rock', 'Baton Pass',
813
+ 'Aegislash', 'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragapult', 'Dragonite', 'Eternatus', 'Genesect',
814
+ 'Garchomp', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kartana', 'Kyogre', 'Kyurem-Black', 'Kyurem-White', 'Landorus', 'Landorus-Therian',
815
+ 'Lugia', 'Lunala', 'Marshadow', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Porygon-Z',
816
+ 'Rayquaza', 'Reshiram', 'Silvally', 'Solgaleo', 'Spectrier', 'Tapu Bulu', 'Tapu Koko', 'Thundurus-Base', 'Urshifu-Base', 'Xerneas', 'Yveltal',
817
+ 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zapdos-Galar', 'Zekrom', 'Zygarde-Base', 'Arena Trap', 'Magnet Pull', 'Moody',
818
+ 'Power Construct', 'Shadow Tag', 'King\'s Rock', 'Baton Pass',
803
819
  ],
804
820
  restricted: [
805
821
  'Acupressure', 'Astral Barrage', 'Belly Drum', 'Bolt Beak', 'Clangorous Soul', 'Double Iron Bash', 'Electrify', 'Extreme Speed', 'Fishious Rend',
@@ -847,6 +863,9 @@ export const Formats: FormatList = [
847
863
  {
848
864
  name: "[Gen 8 BDSP] Random Battle",
849
865
  desc: `Randomized teams of level-balanced Pok&eacute;mon with sets that are generated to be competitively viable.`,
866
+ threads: [
867
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3693955/">BDSP Random Battle Set Discussion</a>`,
868
+ ],
850
869
 
851
870
  mod: 'gen8bdsp',
852
871
  team: 'random',
@@ -863,6 +882,49 @@ export const Formats: FormatList = [
863
882
  ruleset: ['Standard'],
864
883
  banlist: ['Uber', 'Arena Trap', 'Drizzle', 'Moody', 'Shadow Tag', 'King\'s Rock', 'Razor Fang', 'Baton Pass'],
865
884
  },
885
+ {
886
+ name: "[Gen 8 BDSP] Ubers",
887
+ threads: [
888
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3694036/">BDSP Ubers Discussion &amp; Resources</a>`,
889
+ ],
890
+
891
+ mod: 'gen8bdsp',
892
+ ruleset: ['Standard'],
893
+ banlist: ['AG', 'Baton Pass'],
894
+ },
895
+ {
896
+ name: "[Gen 8 BDSP] UU",
897
+ threads: [
898
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3694307/">BDSP UU</a>`,
899
+ ],
900
+
901
+ mod: 'gen8bdsp',
902
+ ruleset: ['[Gen 8 BDSP] OU'],
903
+ banlist: ['OU', 'UUBL'],
904
+ },
905
+ {
906
+ name: "[Gen 8 BDSP] Monotype",
907
+ threads: [
908
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3694267/">BDSP Monotype</a>`,
909
+ ],
910
+
911
+ mod: 'gen8bdsp',
912
+ ruleset: ['Standard', 'Same Type Clause'],
913
+ banlist: [
914
+ 'Dialga', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kyogre', 'Lugia', 'Mewtwo', 'Palkia', 'Rayquaza',
915
+ 'Arena Trap', 'Moody', 'Shadow Tag', 'Damp Rock', 'King\'s Rock', 'Razor Fang', 'Baton Pass',
916
+ ],
917
+ },
918
+ {
919
+ name: "[Gen 8 BDSP] CAP",
920
+ threads: [
921
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3694238/">BDSP CAP</a>`,
922
+ ],
923
+
924
+ mod: 'gen8bdsp',
925
+ searchShow: false,
926
+ ruleset: ['[Gen 8 BDSP] OU', '+CAP'],
927
+ },
866
928
  {
867
929
  name: "[Gen 8 BDSP] Doubles OU",
868
930
  threads: [
@@ -871,17 +933,18 @@ export const Formats: FormatList = [
871
933
 
872
934
  mod: 'gen8bdsp',
873
935
  gameType: 'doubles',
874
- searchShow: false,
875
936
  ruleset: ['Standard Doubles'],
876
- banlist: ['DUber', 'Swagger'],
937
+ banlist: ['DUber'],
877
938
  },
878
939
  {
879
940
  name: "[Gen 8 BDSP] Battle Festival Doubles",
941
+ threads: [
942
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3694269/">Battle Festival Doubles</a>`,
943
+ ],
880
944
 
881
945
  mod: 'gen8bdsp',
882
946
  gameType: 'doubles',
883
- // VGC Timer is temporary
884
- ruleset: ['Flat Rules', 'Min Source Gen = 8', 'VGC Timer'],
947
+ ruleset: ['Flat Rules', 'Min Source Gen = 8'],
885
948
  },
886
949
  {
887
950
  name: "[Gen 8 BDSP] Pure Hackmons",
@@ -911,9 +974,9 @@ export const Formats: FormatList = [
911
974
  banlist: [
912
975
  'Calyrex-Ice', 'Calyrex-Shadow', 'Darmanitan-Galar', 'Dialga', 'Dracovish', 'Dragonite', 'Eternatus', 'Genesect', 'Giratina', 'Giratina-Origin', 'Groudon',
913
976
  'Ho-Oh', 'Hydreigon', 'Kartana', 'Kyogre', 'Kyurem', 'Kyurem-Black', 'Kyurem-White', 'Landorus-Base', 'Latias', 'Latios', 'Lugia', 'Lunala', 'Marshadow',
914
- 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Rayquaza', 'Reshiram', 'Shedinja', 'Slowking-Galar', 'Solgaleo',
915
- 'Tornadus-Therian', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom', 'Zeraora', 'Zygarde-Base',
916
- 'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag', 'Baton Pass',
977
+ 'Mew', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia', 'Pheromosa', 'Rayquaza', 'Reshiram', 'Reuniclus', 'Shedinja',
978
+ 'Slowking-Galar', 'Solgaleo', 'Spectrier', 'Tornadus-Therian', 'Xerneas', 'Yveltal', 'Zacian', 'Zacian-Crowned', 'Zamazenta', 'Zamazenta-Crowned', 'Zekrom',
979
+ 'Zeraora', 'Zygarde-Base', 'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag', 'Baton Pass',
917
980
  ],
918
981
  onModifySpeciesPriority: 2,
919
982
  onModifySpecies(species, target, source, effect) {
@@ -940,8 +1003,9 @@ export const Formats: FormatList = [
940
1003
  searchShow: false,
941
1004
  ruleset: ['Standard', 'Dynamax Clause'],
942
1005
  banlist: [
943
- 'Blissey', 'Calyrex-Shadow', 'Chansey', 'Hawlucha', 'Marowak-Alola', 'Melmetal', 'Pikachu', 'Toxapex', 'Zacian', 'Zacian-Crowned',
944
- 'Uber > 1', 'AG ++ Uber > 1', 'Arena Trap', 'Huge Power', 'Moody', 'Pure Power', 'Shadow Tag', 'Baton Pass',
1006
+ 'Blissey', 'Calyrex-Shadow', 'Chansey', 'Dragapult', 'Hawlucha', 'Marowak-Alola', 'Melmetal', 'Pikachu', 'Toxapex',
1007
+ 'Xerneas', 'Zacian', 'Zacian-Crowned', 'Uber > 1', 'AG ++ Uber > 1', 'Arena Trap', 'Huge Power', 'Moody', 'Pure Power',
1008
+ 'Shadow Tag', 'Baton Pass',
945
1009
  ],
946
1010
  onValidateTeam(team) {
947
1011
  const gods = new Set<string>();
@@ -2003,40 +2067,50 @@ export const Formats: FormatList = [
2003
2067
  column: 3,
2004
2068
  },
2005
2069
  {
2006
- name: "[Gen 6] Ubers",
2070
+ name: "[Gen 1] UU",
2007
2071
  threads: [
2008
- `&bullet; <a href="https://www.smogon.com/forums/posts/8286277/">ORAS Ubers</a>`,
2072
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3573896/">RBY UU Metagame Discussion</a>`,
2073
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3647713/">RBY UU Viability Rankings</a>`,
2009
2074
  ],
2010
2075
 
2011
- mod: 'gen6',
2076
+ mod: 'gen1',
2012
2077
  // searchShow: false,
2013
- ruleset: ['Standard', 'Swagger Clause', 'Mega Rayquaza Clause'],
2078
+ ruleset: ['[Gen 1] OU'],
2079
+ banlist: ['OU', 'UUBL'],
2014
2080
  },
2015
2081
  {
2016
- name: "[Gen 4] UU",
2082
+ name: "[Gen 6] 1v1",
2083
+ desc: `Bring three Pok&eacute;mon to Team Preview and choose one to battle.`,
2017
2084
  threads: [
2018
- `&bullet; <a href="https://www.smogon.com/forums/threads/3532624/">DPP UU Metagame Discussion</a>`,
2019
- `&bullet; <a href="https://www.smogon.com/forums/threads/3503638/">DPP UU Viability Rankings</a>`,
2085
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8031459/">ORAS 1v1</a>`,
2020
2086
  ],
2021
2087
 
2022
- mod: 'gen4',
2088
+ mod: 'gen6',
2023
2089
  // searchShow: false,
2024
- ruleset: ['[Gen 4] OU'],
2025
- banlist: ['OU', 'UUBL'],
2026
- unbanlist: ['Arena Trap'],
2090
+ ruleset: [
2091
+ 'Max Team Size = 3', 'Picked Team Size = 1',
2092
+ 'Obtainable', 'Nickname Clause', 'Moody Clause', 'OHKO Clause', 'Evasion Moves Clause', 'Accuracy Moves Clause', 'Swagger Clause', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod', 'Team Preview',
2093
+ ],
2094
+ banlist: [
2095
+ 'Arceus', 'Blaziken', 'Darkrai', 'Deoxys-Base', 'Deoxys-Attack', 'Deoxys-Defense', 'Dialga', 'Giratina',
2096
+ 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kangaskhan-Mega', 'Kyogre', 'Kyurem-White', 'Lugia', 'Mewtwo',
2097
+ 'Palkia', 'Rayquaza', 'Reshiram', 'Salamence-Mega', 'Shaymin-Sky', 'Xerneas', 'Yveltal', 'Zekrom',
2098
+ 'Focus Sash', 'Soul Dew', 'Perish Song',
2099
+ ],
2027
2100
  },
2028
2101
  {
2029
- name: "[Gen 3] Doubles OU",
2102
+ name: "[Gen 5] Doubles OU",
2030
2103
  threads: [
2031
- `&bullet; <a href="https://www.smogon.com/forums/threads/3666831/">ADV Doubles OU</a>`,
2104
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3606719/">BW2 Doubles Metagame Discussion</a>`,
2105
+ `&bullet; <a href="https://www.smogon.com/forums/posts/7393048/">BW2 Doubles Viability Rankings</a>`,
2106
+ `&bullet; <a href="https://www.smogon.com/forums/posts/7393081/">BW2 Doubles Sample Teams</a>`,
2032
2107
  ],
2033
2108
 
2034
- mod: 'gen3',
2035
- // searchShow: false,
2109
+ mod: 'gen5',
2036
2110
  gameType: 'doubles',
2037
- ruleset: ['Standard', '!Sleep Clause Mod', '!Switch Priority Clause Mod'],
2038
- banlist: ['Uber'],
2039
- unbanlist: ['Deoxys-Speed', 'Wobbuffet', 'Wynaut'],
2111
+ // searchShow: false,
2112
+ ruleset: ['Standard', 'Evasion Abilities Clause', 'Swagger Clause', 'Sleep Clause Mod'],
2113
+ banlist: ['DUber', 'Soul Dew', 'Dark Void', 'Gravity'],
2040
2114
  },
2041
2115
 
2042
2116
  // Past Gens OU
@@ -2141,7 +2215,7 @@ export const Formats: FormatList = [
2141
2215
  ],
2142
2216
 
2143
2217
  mod: 'gen7',
2144
- ruleset: ['-Nonexistent', '2 Ability Clause', 'OHKO Clause', 'Evasion Moves Clause', 'CFZ Clause', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Clause Mod', 'Endless Battle Clause'],
2218
+ ruleset: ['-Nonexistent', '2 Ability Clause', 'OHKO Clause', 'Evasion Moves Clause', 'Forme Clause', 'CFZ Clause', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Clause Mod', 'Endless Battle Clause'],
2145
2219
  banlist: [
2146
2220
  'Groudon-Primal', 'Rayquaza-Mega', 'Gengarite', 'Comatose + Sleep Talk', 'Chatter',
2147
2221
  'Arena Trap', 'Contrary', 'Huge Power', 'Illusion', 'Innards Out', 'Magnet Pull', 'Moody', 'Parental Bond', 'Protean', 'Psychic Surge', 'Pure Power', 'Shadow Tag', 'Stakeout', 'Water Bubble', 'Wonder Guard',
@@ -2351,7 +2425,8 @@ export const Formats: FormatList = [
2351
2425
  'Groudon', 'Ho-Oh', 'Hoopa-Unbound', 'Kangaskhan-Mega', 'Kartana', 'Kyogre', 'Kyurem-White', 'Lucario-Mega', 'Lugia', 'Lunala', 'Magearna',
2352
2426
  'Marshadow', 'Mawile-Mega', 'Medicham-Mega', 'Metagross-Mega', 'Mewtwo', 'Naganadel', 'Necrozma-Dawn-Wings', 'Necrozma-Dusk-Mane', 'Palkia',
2353
2427
  'Pheromosa', 'Rayquaza', 'Reshiram', 'Salamence-Mega', 'Shaymin-Sky', 'Solgaleo', 'Tapu Lele', 'Xerneas', 'Yveltal', 'Zekrom', 'Zygarde',
2354
- 'Battle Bond', 'Shadow Tag', 'Damp Rock', 'Smooth Rock', 'Terrain Extender', 'Baton Pass',
2428
+ 'Battle Bond', 'Shadow Tag', 'Bright Powder', 'Damp Rock', 'Focus Band', 'King\'s Rock', 'Lax Incense', 'Quick Claw', 'Razor Fang',
2429
+ 'Smooth Rock', 'Terrain Extender', 'Baton Pass',
2355
2430
  ],
2356
2431
  },
2357
2432
  {
@@ -2576,6 +2651,16 @@ export const Formats: FormatList = [
2576
2651
  section: "OR/AS Singles",
2577
2652
  column: 4,
2578
2653
  },
2654
+ {
2655
+ name: "[Gen 6] Ubers",
2656
+ threads: [
2657
+ `&bullet; <a href="https://www.smogon.com/forums/posts/8286277/">ORAS Ubers</a>`,
2658
+ ],
2659
+
2660
+ mod: 'gen6',
2661
+ searchShow: false,
2662
+ ruleset: ['Standard', 'Swagger Clause', 'Mega Rayquaza Clause'],
2663
+ },
2579
2664
  {
2580
2665
  name: "[Gen 6] UU",
2581
2666
  threads: [
@@ -2658,26 +2743,6 @@ export const Formats: FormatList = [
2658
2743
  'Soul Dew', 'Baton Pass',
2659
2744
  ],
2660
2745
  },
2661
- {
2662
- name: "[Gen 6] 1v1",
2663
- desc: `Bring three Pok&eacute;mon to Team Preview and choose one to battle.`,
2664
- threads: [
2665
- `&bullet; <a href="https://www.smogon.com/forums/posts/8031459/">ORAS 1v1</a>`,
2666
- ],
2667
-
2668
- mod: 'gen6',
2669
- searchShow: false,
2670
- ruleset: [
2671
- 'Max Team Size = 3', 'Picked Team Size = 1',
2672
- 'Obtainable', 'Nickname Clause', 'Moody Clause', 'OHKO Clause', 'Evasion Moves Clause', 'Accuracy Moves Clause', 'Swagger Clause', 'Endless Battle Clause', 'HP Percentage Mod', 'Cancel Mod', 'Team Preview',
2673
- ],
2674
- banlist: [
2675
- 'Arceus', 'Blaziken', 'Darkrai', 'Deoxys-Base', 'Deoxys-Attack', 'Deoxys-Defense', 'Dialga', 'Giratina',
2676
- 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kangaskhan-Mega', 'Kyogre', 'Kyurem-White', 'Lugia', 'Mewtwo',
2677
- 'Palkia', 'Rayquaza', 'Reshiram', 'Salamence-Mega', 'Shaymin-Sky', 'Xerneas', 'Yveltal', 'Zekrom',
2678
- 'Focus Sash', 'Soul Dew', 'Perish Song',
2679
- ],
2680
- },
2681
2746
  {
2682
2747
  name: "[Gen 6] Anything Goes",
2683
2748
  threads: [
@@ -2938,7 +3003,7 @@ export const Formats: FormatList = [
2938
3003
  'Picked Team Size = 1', 'Max Team Size = 3',
2939
3004
  'Standard', 'Baton Pass Clause', 'Swagger Clause',
2940
3005
  ],
2941
- banlist: ['Uber', 'Cottonee', 'Dragonite', 'Kyurem-Black', 'Togekiss', 'Whimsicott', 'Victini', 'Bright Powder', 'Focus Band', 'Focus Sash', 'Lax Incense', 'Quick Claw', 'Soul Dew', 'Perish Song'],
3006
+ banlist: ['Uber', 'Cottonee', 'Dragonite', 'Kyurem-Black', 'Mew', 'Togekiss', 'Whimsicott', 'Victini', 'Bright Powder', 'Focus Band', 'Focus Sash', 'Lax Incense', 'Quick Claw', 'Soul Dew', 'Perish Song'],
2942
3007
  unbanlist: ['Genesect', 'Landorus', 'Manaphy', 'Thundurus', 'Tornadus-Therian'],
2943
3008
  },
2944
3009
  {
@@ -2967,20 +3032,6 @@ export const Formats: FormatList = [
2967
3032
  section: 'B2/W2 Doubles',
2968
3033
  column: 4,
2969
3034
  },
2970
- {
2971
- name: "[Gen 5] Doubles OU",
2972
- threads: [
2973
- `&bullet; <a href="https://www.smogon.com/forums/threads/3606719/">BW2 Doubles Metagame Discussion</a>`,
2974
- `&bullet; <a href="https://www.smogon.com/forums/posts/7393048/">BW2 Doubles Viability Rankings</a>`,
2975
- `&bullet; <a href="https://www.smogon.com/forums/posts/7393081/">BW2 Doubles Sample Teams</a>`,
2976
- ],
2977
-
2978
- mod: 'gen5',
2979
- gameType: 'doubles',
2980
- searchShow: false,
2981
- ruleset: ['Standard', 'Evasion Abilities Clause', 'Swagger Clause', 'Sleep Clause Mod'],
2982
- banlist: ['DUber', 'Soul Dew', 'Dark Void', 'Gravity'],
2983
- },
2984
3035
  {
2985
3036
  name: "[Gen 5] VGC 2013",
2986
3037
 
@@ -3049,6 +3100,19 @@ export const Formats: FormatList = [
3049
3100
  ruleset: ['Standard'],
3050
3101
  banlist: ['AG'],
3051
3102
  },
3103
+ {
3104
+ name: "[Gen 4] UU",
3105
+ threads: [
3106
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3532624/">DPP UU Metagame Discussion</a>`,
3107
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3503638/">DPP UU Viability Rankings</a>`,
3108
+ ],
3109
+
3110
+ mod: 'gen4',
3111
+ searchShow: false,
3112
+ ruleset: ['[Gen 4] OU'],
3113
+ banlist: ['OU', 'UUBL'],
3114
+ unbanlist: ['Arena Trap'],
3115
+ },
3052
3116
  {
3053
3117
  name: "[Gen 4] NU",
3054
3118
  threads: [
@@ -3220,6 +3284,19 @@ export const Formats: FormatList = [
3220
3284
  banlist: ['UU'],
3221
3285
  unbanlist: ['Baton Pass'],
3222
3286
  },
3287
+ {
3288
+ name: "[Gen 3] Doubles OU",
3289
+ threads: [
3290
+ `&bullet; <a href="https://www.smogon.com/forums/threads/3666831/">ADV Doubles OU</a>`,
3291
+ ],
3292
+
3293
+ mod: 'gen3',
3294
+ searchShow: false,
3295
+ gameType: 'doubles',
3296
+ ruleset: ['Standard', '!Sleep Clause Mod', '!Switch Priority Clause Mod'],
3297
+ banlist: ['Uber'],
3298
+ unbanlist: ['Deoxys-Speed', 'Wobbuffet', 'Wynaut'],
3299
+ },
3223
3300
  {
3224
3301
  name: "[Gen 3] 1v1",
3225
3302
  desc: `Bring three Pok&eacute;mon to Team Preview and choose one to battle.`,
@@ -3338,18 +3415,6 @@ export const Formats: FormatList = [
3338
3415
  searchShow: false,
3339
3416
  ruleset: ['Standard'],
3340
3417
  },
3341
- {
3342
- name: "[Gen 1] UU",
3343
- threads: [
3344
- `&bullet; <a href="https://www.smogon.com/forums/threads/3573896/">RBY UU Metagame Discussion</a>`,
3345
- `&bullet; <a href="https://www.smogon.com/forums/threads/3647713/">RBY UU Viability Rankings</a>`,
3346
- ],
3347
-
3348
- mod: 'gen1',
3349
- searchShow: false,
3350
- ruleset: ['[Gen 1] OU'],
3351
- banlist: ['OU', 'UUBL'],
3352
- },
3353
3418
  {
3354
3419
  name: "[Gen 1] NU",
3355
3420
  threads: [
package/data/aliases.ts CHANGED
@@ -67,8 +67,8 @@ export const Aliases: {[alias: string]: string} = {
67
67
  gen6mono: "[Gen 6] Monotype",
68
68
  gen6ag: "[Gen 6] Anything Goes",
69
69
  crossevo: "[Gen 8] Cross Evolution",
70
- omotm: "[Gen 8] Sketchmons",
71
- lcotm: "[Gen 8] AAA Doubles",
70
+ omotm: "[Gen 8] Revelationmons",
71
+ lcotm: "[Gen 8 BDSP] Balanced Hackmons",
72
72
 
73
73
  // mega evos
74
74
  fabio: "Ampharos-Mega",
@@ -396,6 +396,7 @@ export const Conditions: {[k: string]: ConditionData} = {
396
396
  if (data.source.isActive && data.source.hasItem('lifeorb') && this.gen >= 5) {
397
397
  this.singleEvent('AfterMoveSecondarySelf', data.source.getItem(), data.source.itemState, data.source, target, data.source.getItem());
398
398
  }
399
+ this.activeMove = null;
399
400
 
400
401
  this.checkWin();
401
402
  },
@@ -710,7 +710,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
710
710
  randomBattleMoves: ["bravebird", "closecombat", "firstimpression", "knockoff", "swordsdance"],
711
711
  randomBattleLevel: 82,
712
712
  randomDoubleBattleMoves: ["bravebird", "closecombat", "firstimpression", "knockoff", "poisonjab", "protect", "swordsdance"],
713
- randomDoubleBattleLevel: 84,
713
+ randomDoubleBattleLevel: 85,
714
714
  randomBattleNoDynamaxMoves: ["bravebird", "closecombat", "firstimpression", "knockoff", "poisonjab", "swordsdance"],
715
715
  tier: "NU",
716
716
  doublesTier: "(DUU)",
@@ -1965,7 +1965,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1965
1965
  tier: "Illegal",
1966
1966
  },
1967
1967
  zigzagoon: {
1968
- tier: "LC",
1968
+ tier: "NFE",
1969
1969
  },
1970
1970
  zigzagoongalar: {
1971
1971
  tier: "LC",
@@ -3443,7 +3443,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3443
3443
  },
3444
3444
  audino: {
3445
3445
  randomBattleMoves: ["healbell", "knockoff", "protect", "toxic", "wish"],
3446
- randomBattleLevel: 88,
3446
+ randomBattleLevel: 90,
3447
3447
  randomDoubleBattleMoves: ["bodyslam", "healpulse", "helpinghand", "knockoff", "protect", "thunderwave"],
3448
3448
  randomDoubleBattleLevel: 89,
3449
3449
  tier: "PU",
@@ -3832,7 +3832,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3832
3832
  randomBattleMoves: ["bugbuzz", "gigadrain", "stickyweb", "thunder", "voltswitch"],
3833
3833
  randomBattleLevel: 82,
3834
3834
  randomDoubleBattleMoves: ["bugbuzz", "electroweb", "energyball", "protect", "stickyweb", "thunder"],
3835
- randomDoubleBattleLevel: 86,
3835
+ randomDoubleBattleLevel: 85,
3836
3836
  tier: "PU",
3837
3837
  doublesTier: "(DUU)",
3838
3838
  },
@@ -4194,7 +4194,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4194
4194
  },
4195
4195
  keldeoresolute: {
4196
4196
  randomBattleMoves: ["airslash", "calmmind", "hydropump", "icywind", "scald", "secretsword", "substitute"],
4197
- randomBattleLevel: 80,
4197
+ randomBattleLevel: 79,
4198
4198
  },
4199
4199
  meloetta: {
4200
4200
  isNonstandard: "Past",
@@ -5936,7 +5936,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5936
5936
  },
5937
5937
  dracozolt: {
5938
5938
  randomBattleMoves: ["aerialace", "boltbeak", "earthquake", "lowkick", "outrage"],
5939
- randomBattleLevel: 79,
5939
+ randomBattleLevel: 78,
5940
5940
  randomDoubleBattleMoves: ["aerialace", "boltbeak", "dragonclaw", "highhorsepower", "rockslide"],
5941
5941
  randomDoubleBattleLevel: 82,
5942
5942
  randomBattleNoDynamaxMoves: ["boltbeak", "dragonclaw", "earthquake", "outrage"],
@@ -6410,6 +6410,14 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6410
6410
  isNonstandard: "CAP",
6411
6411
  tier: "CAP",
6412
6412
  },
6413
+ venomicon: {
6414
+ isNonstandard: "CAP",
6415
+ tier: "CAP",
6416
+ },
6417
+ venomiconepilogue: {
6418
+ isNonstandard: "CAP",
6419
+ tier: "CAP",
6420
+ },
6413
6421
  pokestarsmeargle: {
6414
6422
  isNonstandard: "Custom",
6415
6423
  tier: "Illegal",
package/data/items.ts CHANGED
@@ -7107,4 +7107,28 @@ export const Items: {[itemid: string]: ItemData} = {
7107
7107
  gen: 6,
7108
7108
  isNonstandard: "CAP",
7109
7109
  },
7110
+ vilevial: {
7111
+ name: "Vile Vial",
7112
+ spritenum: 752,
7113
+ fling: {
7114
+ basePower: 60,
7115
+ },
7116
+ onBasePowerPriority: 15,
7117
+ onBasePower(basePower, user, target, move) {
7118
+ if (user.baseSpecies.num === -67 && ['Poison', 'Flying'].includes(move.type)) {
7119
+ return this.chainModify([4915, 4096]);
7120
+ }
7121
+ },
7122
+ onTakeItem(item, pokemon, source) {
7123
+ if (source?.baseSpecies.num === -67 || pokemon.baseSpecies.num === -67) {
7124
+ return false;
7125
+ }
7126
+ return true;
7127
+ },
7128
+ forcedForme: "Venomicon-Epilogue",
7129
+ itemUser: ["Venomicon-Epilogue"],
7130
+ num: 112,
7131
+ gen: 8,
7132
+ isNonstandard: "CAP",
7133
+ },
7110
7134
  };
package/data/learnsets.ts CHANGED
@@ -82815,6 +82815,40 @@ export const Learnsets: {[speciesid: string]: LearnsetData} = {
82815
82815
  watergun: ["8L1"],
82816
82816
  },
82817
82817
  },
82818
+ venomicon: {
82819
+ learnset: {
82820
+ acidarmor: ["8L1"],
82821
+ attract: ["8M"],
82822
+ bodypress: ["8M"],
82823
+ bravebird: ["8M"],
82824
+ coil: ["8L1"],
82825
+ discharge: ["8L1"],
82826
+ drillpeck: ["8L1"],
82827
+ earthpower: ["8M"],
82828
+ endure: ["8M"],
82829
+ facade: ["8M"],
82830
+ gunkshot: ["8M"],
82831
+ hurricane: ["8M"],
82832
+ imprison: ["8M"],
82833
+ knockoff: ["8L1"],
82834
+ mysticalfire: ["8M"],
82835
+ nastyplot: ["8M"],
82836
+ poisonjab: ["8M"],
82837
+ protect: ["8M"],
82838
+ rest: ["8M"],
82839
+ roost: ["8L1"],
82840
+ round: ["8M"],
82841
+ sleeptalk: ["8M"],
82842
+ sludgebomb: ["8M"],
82843
+ snore: ["8M"],
82844
+ stealthrock: ["8M"],
82845
+ substitute: ["8M"],
82846
+ swordsdance: ["8M"],
82847
+ thunderwave: ["8M"],
82848
+ toxic: ["8L1"],
82849
+ uturn: ["8M"],
82850
+ },
82851
+ },
82818
82852
  pokestarsmeargle: {
82819
82853
  eventData: [
82820
82854
  {generation: 5, level: 60, gender: "M", abilities: ["owntempo"], moves: ["mindreader", "guillotine", "tailwhip", "gastroacid"]},