@pkmn/sim 0.5.5 → 0.5.6

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 (38) hide show
  1. package/build/config/formats.js +260 -239
  2. package/build/config/formats.js.map +1 -1
  3. package/build/data/aliases.js +4 -4
  4. package/build/data/aliases.js.map +1 -1
  5. package/build/data/formats-data.js +118 -5
  6. package/build/data/formats-data.js.map +1 -1
  7. package/build/data/mods/gen3/formats-data.js +1 -1
  8. package/build/data/mods/gen3/formats-data.js.map +1 -1
  9. package/build/data/mods/gen5/formats-data.js +1 -1
  10. package/build/data/mods/gen5/formats-data.js.map +1 -1
  11. package/build/data/mods/gen6/formats-data.js +3 -2
  12. package/build/data/mods/gen6/formats-data.js.map +1 -1
  13. package/build/data/mods/gen7/formats-data.js +2 -1
  14. package/build/data/mods/gen7/formats-data.js.map +1 -1
  15. package/build/data/pokedex.js +479 -10
  16. package/build/data/pokedex.js.map +1 -1
  17. package/build/data/rulesets.js +3 -1
  18. package/build/data/rulesets.js.map +1 -1
  19. package/build/sim/battle.js +23 -22
  20. package/build/sim/battle.js.map +1 -1
  21. package/build/sim/dex-species.js +5 -2
  22. package/build/sim/dex-species.js.map +1 -1
  23. package/build/sim/exported-global-types.d.ts +1 -0
  24. package/build/sim/global-types.d.ts +1 -0
  25. package/config/formats.ts +263 -242
  26. package/data/aliases.ts +4 -4
  27. package/data/formats-data.ts +118 -5
  28. package/data/mods/gen3/formats-data.ts +1 -1
  29. package/data/mods/gen5/formats-data.ts +1 -1
  30. package/data/mods/gen6/formats-data.ts +3 -2
  31. package/data/mods/gen7/formats-data.ts +2 -1
  32. package/data/pokedex.ts +479 -10
  33. package/data/rulesets.ts +2 -1
  34. package/package.json +2 -2
  35. package/sim/battle.ts +24 -23
  36. package/sim/dex-species.ts +5 -2
  37. package/sim/exported-global-types.ts +1 -0
  38. package/sim/global-types.ts +1 -0
package/data/aliases.ts CHANGED
@@ -14,8 +14,8 @@ export const Aliases: {[alias: string]: string} = {
14
14
  mono: "[Gen 8] Monotype",
15
15
  ag: "[Gen 8] Anything Goes",
16
16
  bss: "[Gen 8] Battle Stadium Singles",
17
- vgc: "[Gen 8] VGC 2021 Series 11",
18
- bsd: "[Gen 8] VGC 2021 Series 11",
17
+ vgc: "[Gen 8] VGC 2022",
18
+ bsd: "[Gen 8] VGC 2022",
19
19
  randdubs: "[Gen 8] Random Doubles Battle",
20
20
  doubles: "[Gen 8] Doubles OU",
21
21
  dou: "[Gen 8] Doubles OU",
@@ -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] Pokebilities",
71
- lcotm: "[Gen 8] Camomons",
70
+ omotm: "[Gen 8] Trademarked",
71
+ lcotm: "[Gen 8] Linked",
72
72
 
73
73
  // mega evos
74
74
  fabio: "Ampharos-Mega",
@@ -270,7 +270,8 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
270
270
  tier: "LC",
271
271
  },
272
272
  sandshrewalola: {
273
- tier: "LC",
273
+ tier: "NUBL",
274
+ doublesTier: "LC",
274
275
  },
275
276
  sandslash: {
276
277
  randomBattleMoves: ["earthquake", "knockoff", "rapidspin", "spikes", "stealthrock", "stoneedge", "swordsdance", "toxic"],
@@ -285,7 +286,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
285
286
  randomBattleLevel: 86,
286
287
  randomDoubleBattleMoves: ["drillrun", "ironhead", "protect", "swordsdance", "tripleaxel"],
287
288
  randomDoubleBattleLevel: 90,
288
- tier: "(PU)",
289
+ tier: "NUBL",
289
290
  doublesTier: "(DUU)",
290
291
  },
291
292
  nidoranf: {
@@ -503,6 +504,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
503
504
  growlithe: {
504
505
  tier: "LC",
505
506
  },
507
+ growlithehisui: {
508
+ isNonstandard: "Future",
509
+ tier: "Illegal",
510
+ },
506
511
  arcanine: {
507
512
  randomBattleMoves: ["closecombat", "extremespeed", "flareblitz", "morningsun", "toxic", "wildcharge", "willowisp"],
508
513
  randomBattleLevel: 82,
@@ -511,6 +516,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
511
516
  tier: "NU",
512
517
  doublesTier: "DUU",
513
518
  },
519
+ arcaninehisui: {
520
+ isNonstandard: "Future",
521
+ tier: "Illegal",
522
+ },
514
523
  poliwag: {
515
524
  tier: "LC",
516
525
  },
@@ -830,10 +839,18 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
830
839
  isNonstandard: "Past",
831
840
  tier: "Illegal",
832
841
  },
842
+ voltorbhisui: {
843
+ isNonstandard: "Future",
844
+ tier: "Illegal",
845
+ },
833
846
  electrode: {
834
847
  isNonstandard: "Past",
835
848
  tier: "Illegal",
836
849
  },
850
+ electrodehisui: {
851
+ isNonstandard: "Future",
852
+ tier: "Illegal",
853
+ },
837
854
  exeggcute: {
838
855
  tier: "LC",
839
856
  },
@@ -1431,6 +1448,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1431
1448
  isNonstandard: "Past",
1432
1449
  tier: "Illegal",
1433
1450
  },
1451
+ typhlosionhisui: {
1452
+ isNonstandard: "Future",
1453
+ tier: "Illegal",
1454
+ },
1434
1455
  totodile: {
1435
1456
  isNonstandard: "Past",
1436
1457
  tier: "Illegal",
@@ -1679,6 +1700,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1679
1700
  tier: "(PU)",
1680
1701
  doublesTier: "(DUU)",
1681
1702
  },
1703
+ qwilfishhisui: {
1704
+ isNonstandard: "Future",
1705
+ tier: "Illegal",
1706
+ },
1682
1707
  shuckle: {
1683
1708
  randomBattleMoves: ["encore", "knockoff", "stealthrock", "stickyweb", "toxic"],
1684
1709
  randomBattleLevel: 86,
@@ -1702,6 +1727,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
1702
1727
  sneasel: {
1703
1728
  tier: "NFE",
1704
1729
  },
1730
+ sneaselhisui: {
1731
+ isNonstandard: "Future",
1732
+ tier: "Illegal",
1733
+ },
1705
1734
  weavile: {
1706
1735
  randomBattleMoves: ["iceshard", "knockoff", "lowkick", "swordsdance", "tripleaxel"],
1707
1736
  randomBattleLevel: 79,
@@ -3146,6 +3175,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3146
3175
  tier: "Uber",
3147
3176
  doublesTier: "DUber",
3148
3177
  },
3178
+ dialgaorigin: {
3179
+ isNonstandard: "Future",
3180
+ tier: "Illegal",
3181
+ },
3149
3182
  palkia: {
3150
3183
  randomBattleMoves: ["dracometeor", "fireblast", "hydropump", "spacialrend", "thunderwave"],
3151
3184
  randomBattleLevel: 74,
@@ -3154,6 +3187,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3154
3187
  tier: "Uber",
3155
3188
  doublesTier: "DUber",
3156
3189
  },
3190
+ palkiaorigin: {
3191
+ isNonstandard: "Future",
3192
+ tier: "Illegal",
3193
+ },
3157
3194
  heatran: {
3158
3195
  randomBattleMoves: ["earthpower", "flashcannon", "lavaplume", "protect", "stealthrock", "taunt", "toxic"],
3159
3196
  randomBattleLevel: 78,
@@ -3314,6 +3351,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3314
3351
  isNonstandard: "Past",
3315
3352
  tier: "Illegal",
3316
3353
  },
3354
+ samurotthisui: {
3355
+ isNonstandard: "Future",
3356
+ tier: "Illegal",
3357
+ },
3317
3358
  patrat: {
3318
3359
  isNonstandard: "Past",
3319
3360
  tier: "Illegal",
@@ -3547,6 +3588,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3547
3588
  tier: "(PU)",
3548
3589
  doublesTier: "(DUU)",
3549
3590
  },
3591
+ lilliganthisui: {
3592
+ isNonstandard: "Future",
3593
+ tier: "Illegal",
3594
+ },
3550
3595
  basculin: {
3551
3596
  randomBattleMoves: ["aquajet", "crunch", "flipturn", "headsmash", "liquidation", "psychicfangs"],
3552
3597
  randomBattleLevel: 86,
@@ -3563,6 +3608,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3563
3608
  tier: "(PU)",
3564
3609
  doublesTier: "(DUU)",
3565
3610
  },
3611
+ basculinwhitestriped: {
3612
+ isNonstandard: "Future",
3613
+ tier: "Illegal",
3614
+ },
3566
3615
  sandile: {
3567
3616
  tier: "LC",
3568
3617
  },
@@ -3704,12 +3753,20 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
3704
3753
  zorua: {
3705
3754
  tier: "LC",
3706
3755
  },
3756
+ zoruahisui: {
3757
+ isNonstandard: "Future",
3758
+ tier: "Illegal",
3759
+ },
3707
3760
  zoroark: {
3708
3761
  randomBattleMoves: ["darkpulse", "flamethrower", "nastyplot", "sludgebomb", "trick"],
3709
3762
  randomDoubleBattleMoves: ["darkpulse", "flamethrower", "focusblast", "nastyplot", "protect", "sludgebomb"],
3710
3763
  tier: "NU",
3711
3764
  doublesTier: "(DUU)",
3712
3765
  },
3766
+ zoroarkhisui: {
3767
+ isNonstandard: "Future",
3768
+ tier: "Illegal",
3769
+ },
3713
3770
  minccino: {
3714
3771
  tier: "LC",
3715
3772
  },
@@ -4019,6 +4076,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4019
4076
  tier: "NU",
4020
4077
  doublesTier: "(DUU)",
4021
4078
  },
4079
+ braviaryhisui: {
4080
+ isNonstandard: "Future",
4081
+ tier: "Illegal",
4082
+ },
4022
4083
  vullaby: {
4023
4084
  tier: "NFE",
4024
4085
  },
@@ -4167,7 +4228,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4167
4228
  randomDoubleBattleMoves: ["dracometeor", "earthpower", "freezedry", "glaciate", "protect", "roost"],
4168
4229
  randomDoubleBattleLevel: 78,
4169
4230
  tier: "Uber",
4170
- doublesTier: "DUU",
4231
+ doublesTier: "(DUU)",
4171
4232
  },
4172
4233
  kyuremblack: {
4173
4234
  randomBattleMoves: ["dragondance", "fusionbolt", "iciclespear", "outrage"],
@@ -4529,6 +4590,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4529
4590
  sliggoo: {
4530
4591
  tier: "NFE",
4531
4592
  },
4593
+ sliggoohisui: {
4594
+ isNonstandard: "Future",
4595
+ tier: "Illegal",
4596
+ },
4532
4597
  goodra: {
4533
4598
  randomBattleMoves: ["dracometeor", "earthquake", "fireblast", "powerwhip", "sludgebomb", "thunderbolt"],
4534
4599
  randomBattleLevel: 82,
@@ -4537,6 +4602,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4537
4602
  tier: "NU",
4538
4603
  doublesTier: "(DUU)",
4539
4604
  },
4605
+ goodrahisui: {
4606
+ isNonstandard: "Future",
4607
+ tier: "Illegal",
4608
+ },
4540
4609
  klefki: {
4541
4610
  randomBattleMoves: ["magnetrise", "playrough", "spikes", "thunderwave", "toxic"],
4542
4611
  randomBattleLevel: 82,
@@ -4611,6 +4680,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4611
4680
  tier: "(PU)",
4612
4681
  doublesTier: "(DUU)",
4613
4682
  },
4683
+ avalugghisui: {
4684
+ isNonstandard: "Future",
4685
+ tier: "Illegal",
4686
+ },
4614
4687
  noibat: {
4615
4688
  tier: "LC",
4616
4689
  },
@@ -4705,6 +4778,10 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
4705
4778
  tier: "NU",
4706
4779
  doublesTier: "(DUU)",
4707
4780
  },
4781
+ decidueyehisui: {
4782
+ isNonstandard: "Future",
4783
+ tier: "Illegal",
4784
+ },
4708
4785
  litten: {
4709
4786
  tier: "LC",
4710
4787
  },
@@ -5948,7 +6025,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5948
6025
  randomDoubleBattleMoves: ["blizzard", "boltbeak", "iciclecrash", "lowkick", "protect"],
5949
6026
  randomDoubleBattleLevel: 88,
5950
6027
  tier: "UUBL",
5951
- doublesTier: "DUU",
6028
+ doublesTier: "(DUU)",
5952
6029
  },
5953
6030
  dracovish: {
5954
6031
  randomBattleMoves: ["crunch", "fishiousrend", "icefang", "lowkick", "psychicfangs"],
@@ -5963,7 +6040,7 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
5963
6040
  randomBattleLevel: 86,
5964
6041
  randomDoubleBattleMoves: ["blizzard", "fishiousrend", "iciclecrash", "protect", "superfang"],
5965
6042
  randomDoubleBattleLevel: 88,
5966
- tier: "NUBL",
6043
+ tier: "(PU)",
5967
6044
  doublesTier: "(DUU)",
5968
6045
  },
5969
6046
  duraludon: {
@@ -6141,6 +6218,42 @@ export const FormatsData: {[k: string]: SpeciesFormatsData} = {
6141
6218
  tier: "Uber",
6142
6219
  doublesTier: "DUber",
6143
6220
  },
6221
+ wyrdeer: {
6222
+ isNonstandard: "Future",
6223
+ tier: "Illegal",
6224
+ },
6225
+ kleavor: {
6226
+ isNonstandard: "Future",
6227
+ tier: "Illegal",
6228
+ },
6229
+ ursaluna: {
6230
+ isNonstandard: "Future",
6231
+ tier: "Illegal",
6232
+ },
6233
+ basculegion: {
6234
+ isNonstandard: "Future",
6235
+ tier: "Illegal",
6236
+ },
6237
+ basculegionf: {
6238
+ isNonstandard: "Future",
6239
+ tier: "Illegal",
6240
+ },
6241
+ sneasler: {
6242
+ isNonstandard: "Future",
6243
+ tier: "Illegal",
6244
+ },
6245
+ overqwil: {
6246
+ isNonstandard: "Future",
6247
+ tier: "Illegal",
6248
+ },
6249
+ enamorus: {
6250
+ isNonstandard: "Future",
6251
+ tier: "Illegal",
6252
+ },
6253
+ enamorustherian: {
6254
+ isNonstandard: "Future",
6255
+ tier: "Illegal",
6256
+ },
6144
6257
  missingno: {
6145
6258
  isNonstandard: "Custom",
6146
6259
  tier: "Illegal",
@@ -1352,7 +1352,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
1352
1352
  tier: "UUBL",
1353
1353
  },
1354
1354
  registeel: {
1355
- randomBattleMoves: ["protect", "rest", "seismictoss", "sleeptalk", "toxic"],
1355
+ randomBattleMoves: ["rest", "seismictoss", "sleeptalk", "toxic"],
1356
1356
  tier: "UUBL",
1357
1357
  },
1358
1358
  latias: {
@@ -658,7 +658,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
658
658
  doublesTier: "DUU",
659
659
  },
660
660
  glaceon: {
661
- randomBattleMoves: ["hiddenpowerground", "icebeam", "protect", "shadowball", "wish"],
661
+ randomBattleMoves: ["hiddenpowerground", "icebeam", "protect", "shadowball", "toxic", "wish"],
662
662
  tier: "(PU)",
663
663
  doublesTier: "DUU",
664
664
  },
@@ -623,11 +623,12 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
623
623
  tier: "LC",
624
624
  },
625
625
  rhydon: {
626
+ randomBattleMoves: ["earthquake", "megahorn", "rockblast", "stealthrock", "stoneedge", "toxic"],
626
627
  tier: "NU",
627
628
  doublesTier: "NFE",
628
629
  },
629
630
  rhyperior: {
630
- randomBattleMoves: ["dragontail", "earthquake", "icepunch", "megahorn", "rockblast", "rockpolish", "stealthrock", "stoneedge"],
631
+ randomBattleMoves: ["dragontail", "earthquake", "icepunch", "megahorn", "rockblast", "rockpolish", "stoneedge"],
631
632
  randomDoubleBattleMoves: ["earthquake", "hammerarm", "megahorn", "protect", "rockslide", "stealthrock", "stoneedge"],
632
633
  tier: "RU",
633
634
  doublesTier: "DUU",
@@ -3860,7 +3861,7 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
3860
3861
  avalugg: {
3861
3862
  randomBattleMoves: ["avalanche", "earthquake", "rapidspin", "recover", "roar", "toxic"],
3862
3863
  randomDoubleBattleMoves: ["avalanche", "earthquake", "protect", "recover"],
3863
- tier: "(PU)",
3864
+ tier: "PU",
3864
3865
  doublesTier: "(DUU)",
3865
3866
  },
3866
3867
  noibat: {
@@ -717,11 +717,12 @@ export const FormatsData: {[k: string]: ModdedSpeciesFormatsData} = {
717
717
  tier: "LC",
718
718
  },
719
719
  rhydon: {
720
+ randomBattleMoves: ["earthquake", "megahorn", "rockblast", "stealthrock", "stoneedge", "toxic"],
720
721
  tier: "NU",
721
722
  doublesTier: "NFE",
722
723
  },
723
724
  rhyperior: {
724
- randomBattleMoves: ["dragontail", "earthquake", "icepunch", "megahorn", "rockblast", "rockpolish", "stealthrock", "stoneedge"],
725
+ randomBattleMoves: ["dragontail", "earthquake", "icepunch", "megahorn", "rockblast", "rockpolish", "stoneedge"],
725
726
  randomDoubleBattleMoves: ["earthquake", "icepunch", "megahorn", "protect", "rockslide", "stealthrock", "stoneedge"],
726
727
  tier: "RU",
727
728
  doublesTier: "(DUU)",