@pkmn/sim 0.7.47 → 0.7.48

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/cjs/config/formats.js +98 -56
  2. package/build/cjs/config/formats.js.map +1 -1
  3. package/build/cjs/data/abilities.js +4 -1
  4. package/build/cjs/data/abilities.js.map +1 -1
  5. package/build/cjs/data/aliases.js +1 -1
  6. package/build/cjs/data/formats-data.js +36 -23
  7. package/build/cjs/data/formats-data.js.map +1 -1
  8. package/build/cjs/data/learnsets.js +157 -4
  9. package/build/cjs/data/learnsets.js.map +1 -1
  10. package/build/cjs/data/legality.js +260 -50
  11. package/build/cjs/data/legality.js.map +1 -1
  12. package/build/cjs/data/mods/gen4/moves.js +3 -3
  13. package/build/cjs/data/mods/gen4/moves.js.map +1 -1
  14. package/build/cjs/data/pokedex.js +39 -3
  15. package/build/cjs/data/pokedex.js.map +1 -1
  16. package/build/cjs/sim/team-validator.js +100 -23
  17. package/build/cjs/sim/team-validator.js.map +1 -1
  18. package/build/esm/config/formats.mjs +98 -56
  19. package/build/esm/config/formats.mjs.map +1 -1
  20. package/build/esm/data/abilities.mjs +4 -1
  21. package/build/esm/data/abilities.mjs.map +1 -1
  22. package/build/esm/data/aliases.mjs +1 -1
  23. package/build/esm/data/formats-data.mjs +36 -23
  24. package/build/esm/data/formats-data.mjs.map +1 -1
  25. package/build/esm/data/learnsets.mjs +157 -4
  26. package/build/esm/data/learnsets.mjs.map +1 -1
  27. package/build/esm/data/legality.mjs +260 -50
  28. package/build/esm/data/legality.mjs.map +1 -1
  29. package/build/esm/data/mods/gen4/moves.mjs +3 -3
  30. package/build/esm/data/mods/gen4/moves.mjs.map +1 -1
  31. package/build/esm/data/pokedex.mjs +39 -3
  32. package/build/esm/data/pokedex.mjs.map +1 -1
  33. package/build/esm/sim/team-validator.mjs +100 -23
  34. package/build/esm/sim/team-validator.mjs.map +1 -1
  35. package/build/types/sim/exported-global-types.d.ts +14 -1
  36. package/build/types/sim/global-types.d.ts +14 -1
  37. package/build/types/sim/team-validator.d.ts +16 -0
  38. package/package.json +1 -1
@@ -15,7 +15,7 @@ export const Aliases = {
15
15
  bss: "[Gen 9] Battle Stadium Singles Series 2",
16
16
  vgc: "[Gen 9] VGC 2023 Series 2",
17
17
  bsd: "[Gen 9] VGC 2023 Series 2",
18
- randdubs: "[Gen 8] Random Doubles Battle",
18
+ randdubs: "[Gen 9] Random Doubles Battle",
19
19
  doubles: "[Gen 9] Doubles OU",
20
20
  dou: "[Gen 9] Doubles OU",
21
21
  dubs: "[Gen 9] Doubles OU",
@@ -184,7 +184,9 @@ export const FormatsData = {
184
184
  tier: "Illegal",
185
185
  },
186
186
  pikachu: {
187
- tier: "NFE",
187
+ tier: "(PU)",
188
+ doublesTier: "NFE",
189
+ natDexTier: "RU",
188
190
  },
189
191
  pikachucosplay: {
190
192
  isNonstandard: "Past",
@@ -1082,7 +1084,7 @@ export const FormatsData = {
1082
1084
  tier: "LC",
1083
1085
  },
1084
1086
  gyarados: {
1085
- tier: "RU",
1087
+ tier: "RUBL",
1086
1088
  doublesTier: "DUU",
1087
1089
  natDexTier: "RUBL",
1088
1090
  },
@@ -1122,7 +1124,7 @@ export const FormatsData = {
1122
1124
  natDexTier: "RU",
1123
1125
  },
1124
1126
  jolteon: {
1125
- tier: "NU",
1127
+ tier: "NUBL",
1126
1128
  doublesTier: "(DUU)",
1127
1129
  natDexTier: "RU",
1128
1130
  },
@@ -1272,9 +1274,9 @@ export const FormatsData = {
1272
1274
  natDexTier: "Uber",
1273
1275
  },
1274
1276
  mew: {
1275
- tier: "RU",
1277
+ tier: "RUBL",
1276
1278
  doublesTier: "(DUU)",
1277
- natDexTier: "RU",
1279
+ natDexTier: "RUBL",
1278
1280
  },
1279
1281
  chikorita: {
1280
1282
  isNonstandard: "Past",
@@ -1538,7 +1540,7 @@ export const FormatsData = {
1538
1540
  natDexTier: "NFE",
1539
1541
  },
1540
1542
  dudunsparce: {
1541
- tier: "NU",
1543
+ tier: "NUBL",
1542
1544
  doublesTier: "(DUU)",
1543
1545
  natDexTier: "RU",
1544
1546
  },
@@ -2033,7 +2035,7 @@ export const FormatsData = {
2033
2035
  tier: "LC",
2034
2036
  },
2035
2037
  hariyama: {
2036
- tier: "RUBL",
2038
+ tier: "RU",
2037
2039
  doublesTier: "DUU",
2038
2040
  natDexTier: "RU",
2039
2041
  },
@@ -2258,7 +2260,7 @@ export const FormatsData = {
2258
2260
  altariamega: {
2259
2261
  isNonstandard: "Past",
2260
2262
  tier: "Illegal",
2261
- natDexTier: "RU",
2263
+ natDexTier: "RUBL",
2262
2264
  },
2263
2265
  zangoose: {
2264
2266
  tier: "PU",
@@ -2532,12 +2534,12 @@ export const FormatsData = {
2532
2534
  latios: {
2533
2535
  isNonstandard: "Past",
2534
2536
  tier: "Illegal",
2535
- natDexTier: "RU",
2537
+ natDexTier: "RUBL",
2536
2538
  },
2537
2539
  latiosmega: {
2538
2540
  isNonstandard: "Past",
2539
2541
  tier: "Illegal",
2540
- natDexTier: "RU",
2542
+ natDexTier: "RUBL",
2541
2543
  },
2542
2544
  kyogre: {
2543
2545
  tier: "Uber",
@@ -2572,7 +2574,7 @@ export const FormatsData = {
2572
2574
  jirachi: {
2573
2575
  isNonstandard: "Past",
2574
2576
  tier: "Illegal",
2575
- natDexTier: "RU",
2577
+ natDexTier: "RUBL",
2576
2578
  },
2577
2579
  deoxys: {
2578
2580
  isNonstandard: "Past",
@@ -2646,7 +2648,7 @@ export const FormatsData = {
2646
2648
  tier: "NFE",
2647
2649
  },
2648
2650
  staraptor: {
2649
- tier: "RUBL",
2651
+ tier: "RU",
2650
2652
  doublesTier: "(DUU)",
2651
2653
  natDexTier: "RU",
2652
2654
  },
@@ -2996,7 +2998,7 @@ export const FormatsData = {
2996
2998
  cresselia: {
2997
2999
  tier: "OU",
2998
3000
  doublesTier: "DOU",
2999
- natDexTier: "RU",
3001
+ natDexTier: "RUBL",
3000
3002
  },
3001
3003
  phione: {
3002
3004
  isNonstandard: "Past",
@@ -3470,7 +3472,7 @@ export const FormatsData = {
3470
3472
  tier: "LC",
3471
3473
  },
3472
3474
  zoroark: {
3473
- tier: "NU",
3475
+ tier: "NUBL",
3474
3476
  doublesTier: "(DUU)",
3475
3477
  natDexTier: "RU",
3476
3478
  },
@@ -4136,7 +4138,7 @@ export const FormatsData = {
4136
4138
  hawlucha: {
4137
4139
  tier: "RUBL",
4138
4140
  doublesTier: "(DUU)",
4139
- natDexTier: "RU",
4141
+ natDexTier: "RUBL",
4140
4142
  },
4141
4143
  dedenne: {
4142
4144
  tier: "(PU)",
@@ -4390,12 +4392,12 @@ export const FormatsData = {
4390
4392
  natDexTier: "RU",
4391
4393
  },
4392
4394
  oricorio: {
4393
- tier: "NU",
4395
+ tier: "NUBL",
4394
4396
  doublesTier: "(DUU)",
4395
4397
  natDexTier: "RU",
4396
4398
  },
4397
4399
  oricoriopompom: {
4398
- tier: "RUBL",
4400
+ tier: "RU",
4399
4401
  doublesTier: "(DUU)",
4400
4402
  natDexTier: "RU",
4401
4403
  },
@@ -5009,7 +5011,7 @@ export const FormatsData = {
5009
5011
  tier: "LC",
5010
5012
  },
5011
5013
  drednaw: {
5012
- tier: "RUBL",
5014
+ tier: "RU",
5013
5015
  doublesTier: "(DUU)",
5014
5016
  natDexTier: "RU",
5015
5017
  },
@@ -5100,7 +5102,7 @@ export const FormatsData = {
5100
5102
  tier: "LC",
5101
5103
  },
5102
5104
  toxtricity: {
5103
- tier: "RUBL",
5105
+ tier: "RU",
5104
5106
  doublesTier: "(DUU)",
5105
5107
  natDexTier: "RU",
5106
5108
  },
@@ -5609,7 +5611,7 @@ export const FormatsData = {
5609
5611
  natDexTier: "RU",
5610
5612
  },
5611
5613
  flamigo: {
5612
- tier: "RUBL",
5614
+ tier: "RU",
5613
5615
  doublesTier: "(DUU)",
5614
5616
  natDexTier: "RU",
5615
5617
  },
@@ -5676,6 +5678,9 @@ export const FormatsData = {
5676
5678
  gimmighoul: {
5677
5679
  tier: "LC",
5678
5680
  },
5681
+ gimmighoulroaming: {
5682
+ tier: "LC",
5683
+ },
5679
5684
  gholdengo: {
5680
5685
  tier: "OU",
5681
5686
  doublesTier: "DOU",
@@ -5732,7 +5737,7 @@ export const FormatsData = {
5732
5737
  natDexTier: "UU",
5733
5738
  },
5734
5739
  ironjugulis: {
5735
- tier: "RU",
5740
+ tier: "RUBL",
5736
5741
  doublesTier: "(DUU)",
5737
5742
  natDexTier: "RU",
5738
5743
  },
@@ -5818,7 +5823,7 @@ export const FormatsData = {
5818
5823
  kingambit: {
5819
5824
  tier: "OU",
5820
5825
  doublesTier: "DOU",
5821
- natDexTier: "OU",
5826
+ natDexTier: "Uber",
5822
5827
  },
5823
5828
  clodsire: {
5824
5829
  tier: "OU",
@@ -5836,7 +5841,7 @@ export const FormatsData = {
5836
5841
  natDexTier: "Uber",
5837
5842
  },
5838
5843
  ironleaves: {
5839
- tier: "RU",
5844
+ tier: "RUBL",
5840
5845
  doublesTier: "(DUU)",
5841
5846
  natDexTier: "RUBL",
5842
5847
  },
@@ -6124,6 +6129,14 @@ export const FormatsData = {
6124
6129
  isNonstandard: "CAP",
6125
6130
  tier: "CAP",
6126
6131
  },
6132
+ ababo: {
6133
+ isNonstandard: "CAP",
6134
+ tier: "CAP LC",
6135
+ },
6136
+ scattervein: {
6137
+ isNonstandard: "CAP",
6138
+ tier: "CAP NFE",
6139
+ },
6127
6140
  hemogoblin: {
6128
6141
  isNonstandard: "CAP",
6129
6142
  tier: "CAP",