@pkmn/sim 0.5.26 → 0.5.28

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 (56) hide show
  1. package/build/config/formats.js +205 -169
  2. package/build/config/formats.js.map +1 -1
  3. package/build/data/abilities.js +2 -4
  4. package/build/data/abilities.js.map +1 -1
  5. package/build/data/aliases.js +2 -2
  6. package/build/data/aliases.js.map +1 -1
  7. package/build/data/conditions.js +1 -1
  8. package/build/data/conditions.js.map +1 -1
  9. package/build/data/formats-data.js +24 -25
  10. package/build/data/formats-data.js.map +1 -1
  11. package/build/data/items.js +5 -5
  12. package/build/data/items.js.map +1 -1
  13. package/build/data/learnsets.js +30 -28
  14. package/build/data/learnsets.js.map +1 -1
  15. package/build/data/mods/gen2/moves.js +10 -5
  16. package/build/data/mods/gen2/moves.js.map +1 -1
  17. package/build/data/mods/gen3/formats-data.js +2 -2
  18. package/build/data/mods/gen3/formats-data.js.map +1 -1
  19. package/build/data/mods/gen3/moves.js +9 -0
  20. package/build/data/mods/gen3/moves.js.map +1 -1
  21. package/build/data/mods/gen5/formats-data.js +69 -69
  22. package/build/data/mods/gen5/formats-data.js.map +1 -1
  23. package/build/data/pokedex.js +13 -13
  24. package/build/data/pokedex.js.map +1 -1
  25. package/build/data/text/abilities.js +321 -139
  26. package/build/data/text/abilities.js.map +1 -1
  27. package/build/data/text/items.js +5 -5
  28. package/build/data/text/moves.js +8 -2
  29. package/build/data/text/moves.js.map +1 -1
  30. package/build/sim/battle-actions.js.map +1 -1
  31. package/build/sim/battle.js +2 -2
  32. package/build/sim/battle.js.map +1 -1
  33. package/build/sim/pokemon.js +1 -1
  34. package/build/sim/pokemon.js.map +1 -1
  35. package/build/sim/team-validator.js +21 -16
  36. package/build/sim/team-validator.js.map +1 -1
  37. package/config/formats.ts +206 -167
  38. package/data/abilities.ts +2 -4
  39. package/data/aliases.ts +2 -2
  40. package/data/conditions.ts +1 -1
  41. package/data/formats-data.ts +24 -25
  42. package/data/items.ts +5 -5
  43. package/data/learnsets.ts +30 -28
  44. package/data/mods/gen2/moves.ts +10 -5
  45. package/data/mods/gen3/formats-data.ts +2 -2
  46. package/data/mods/gen3/moves.ts +9 -0
  47. package/data/mods/gen5/formats-data.ts +69 -69
  48. package/data/pokedex.ts +13 -13
  49. package/data/text/abilities.ts +321 -139
  50. package/data/text/items.ts +5 -5
  51. package/data/text/moves.ts +8 -2
  52. package/package.json +1 -1
  53. package/sim/battle-actions.ts +1 -0
  54. package/sim/battle.ts +2 -2
  55. package/sim/pokemon.ts +1 -1
  56. package/sim/team-validator.ts +22 -18
package/data/pokedex.ts CHANGED
@@ -4153,7 +4153,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
4153
4153
  abilities: {0: "Poison Point", 1: "Swift Swim", H: "Intimidate"},
4154
4154
  heightm: 0.5,
4155
4155
  weightkg: 3.9,
4156
- color: "Gray",
4156
+ color: "Black",
4157
4157
  evos: ["Overqwil"],
4158
4158
  eggGroups: ["Water 2"],
4159
4159
  },
@@ -4249,7 +4249,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
4249
4249
  abilities: {0: "Inner Focus", 1: "Keen Eye", H: "Poison Touch"},
4250
4250
  heightm: 0.9,
4251
4251
  weightkg: 27,
4252
- color: "Black",
4252
+ color: "Gray",
4253
4253
  evos: ["Sneasler"],
4254
4254
  eggGroups: ["Field"],
4255
4255
  },
@@ -10984,7 +10984,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
10984
10984
  abilities: {0: "Keen Eye", 1: "Sheer Force", H: "Defiant"},
10985
10985
  heightm: 1.7,
10986
10986
  weightkg: 43.4,
10987
- color: "Red",
10987
+ color: "White",
10988
10988
  prevo: "Rufflet",
10989
10989
  evoLevel: 54,
10990
10990
  eggGroups: ["Flying"],
@@ -15851,7 +15851,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
15851
15851
  abilities: {0: "Hunger Switch"},
15852
15852
  heightm: 0.3,
15853
15853
  weightkg: 3,
15854
- color: "Yellow",
15854
+ color: "Purple",
15855
15855
  eggGroups: ["Field", "Fairy"],
15856
15856
  requiredAbility: "Hunger Switch",
15857
15857
  battleOnly: "Morpeko",
@@ -16402,7 +16402,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
16402
16402
  abilities: {0: "Pressure", H: "Poison Touch"},
16403
16403
  heightm: 1.3,
16404
16404
  weightkg: 43,
16405
- color: "Gray",
16405
+ color: "Blue",
16406
16406
  prevo: "Sneasel-Hisui",
16407
16407
  evoType: "useItem",
16408
16408
  evoItem: "Razor Claw",
@@ -16433,7 +16433,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
16433
16433
  abilities: {0: "Healer", H: "Contrary"},
16434
16434
  heightm: 1.6,
16435
16435
  weightkg: 48,
16436
- color: "Brown",
16436
+ color: "Pink",
16437
16437
  tags: ["Sub-Legendary"],
16438
16438
  eggGroups: ["Undiscovered"],
16439
16439
  otherFormes: ["Enamorus-Therian"],
@@ -16450,7 +16450,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
16450
16450
  abilities: {0: "Overcoat"},
16451
16451
  heightm: 1.6,
16452
16452
  weightkg: 48,
16453
- color: "Brown",
16453
+ color: "Pink",
16454
16454
  eggGroups: ["Undiscovered"],
16455
16455
  changesFrom: "Enamorus",
16456
16456
  },
@@ -17296,7 +17296,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
17296
17296
  num: -59,
17297
17297
  name: "Miasmaw",
17298
17298
  types: ["Bug", "Dragon"],
17299
- baseStats: {hp: 85, atk: 135, def: 60, spa: 115, spd: 85, spe: 92},
17299
+ baseStats: {hp: 85, atk: 135, def: 60, spa: 88, spd: 105, spe: 99},
17300
17300
  abilities: {0: "Neutralizing Gas", 1: "Hyper Cutter", H: "Compound Eyes"},
17301
17301
  heightm: 1.2,
17302
17302
  weightkg: 57,
@@ -17392,12 +17392,12 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
17392
17392
  baseForme: "Prologue",
17393
17393
  types: ["Poison", "Flying"],
17394
17394
  gender: "N",
17395
- baseStats: {hp: 85, atk: 70, def: 113, spa: 118, spd: 90, spe: 64},
17395
+ baseStats: {hp: 85, atk: 50, def: 113, spa: 118, spd: 90, spe: 64},
17396
17396
  abilities: {0: "Stamina", H: "Power of Alchemy"},
17397
17397
  heightm: 0.8,
17398
17398
  weightkg: 11.5,
17399
17399
  color: "Purple",
17400
- eggGroups: ["Undiscovered"],
17400
+ eggGroups: ["Amorphous"],
17401
17401
  otherFormes: ["Venomicon-Epilogue"],
17402
17402
  formeOrder: ["Venomicon", "Venomicon-Epilogue"],
17403
17403
  gen: 8,
@@ -17409,12 +17409,12 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
17409
17409
  forme: "Epilogue",
17410
17410
  types: ["Poison", "Flying"],
17411
17411
  gender: "N",
17412
- baseStats: {hp: 85, atk: 102, def: 85, spa: 63, spd: 85, spe: 120},
17412
+ baseStats: {hp: 85, atk: 102, def: 85, spa: 62, spd: 85, spe: 101},
17413
17413
  abilities: {0: "Tinted Lens"},
17414
17414
  heightm: 0.8,
17415
17415
  weightkg: 12.4,
17416
17416
  color: "Purple",
17417
- eggGroups: ["Undiscovered"],
17417
+ eggGroups: ["Amorphous"],
17418
17418
  requiredItem: "Vile Vial",
17419
17419
  changesFrom: "Venomicon",
17420
17420
  gen: 8,
@@ -17423,7 +17423,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
17423
17423
  num: -68,
17424
17424
  name: "Saharaja",
17425
17425
  types: ["Ground"],
17426
- baseStats: {hp: 70, atk: 120, def: 105, spa: 65, spd: 130, spe: 90},
17426
+ baseStats: {hp: 70, atk: 112, def: 105, spa: 65, spd: 123, spe: 78},
17427
17427
  abilities: {0: "Water Absorb", 1: "Serene Grace"},
17428
17428
  heightm: 2.3,
17429
17429
  weightkg: 303.9,