@pkmn/sim 0.6.2 → 0.6.4

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 (39) hide show
  1. package/build/config/formats.js +98 -76
  2. package/build/config/formats.js.map +1 -1
  3. package/build/data/abilities.js +1 -1
  4. package/build/data/abilities.js.map +1 -1
  5. package/build/data/formats-data.js +3 -3
  6. package/build/data/formats-data.js.map +1 -1
  7. package/build/data/mods/gen1/moves.js +3 -2
  8. package/build/data/mods/gen1/moves.js.map +1 -1
  9. package/build/data/mods/gen1/scripts.js +75 -40
  10. package/build/data/mods/gen1/scripts.js.map +1 -1
  11. package/build/data/mods/gen2/scripts.js +1 -1
  12. package/build/data/moves.js +8 -6
  13. package/build/data/moves.js.map +1 -1
  14. package/build/data/pokedex.js +5 -0
  15. package/build/data/pokedex.js.map +1 -1
  16. package/build/data/rulesets.js +58 -0
  17. package/build/data/rulesets.js.map +1 -1
  18. package/build/sim/battle-queue.js +4 -3
  19. package/build/sim/battle-queue.js.map +1 -1
  20. package/build/sim/battle.js +8 -4
  21. package/build/sim/battle.js.map +1 -1
  22. package/build/sim/dex-species.d.ts +2 -0
  23. package/build/sim/dex-species.js.map +1 -1
  24. package/build/sim/team-validator.js +4 -0
  25. package/build/sim/team-validator.js.map +1 -1
  26. package/config/formats.ts +101 -73
  27. package/data/abilities.ts +1 -1
  28. package/data/formats-data.ts +3 -3
  29. package/data/mods/gen1/moves.ts +3 -2
  30. package/data/mods/gen1/scripts.ts +73 -39
  31. package/data/mods/gen2/scripts.ts +1 -1
  32. package/data/moves.ts +8 -6
  33. package/data/pokedex.ts +5 -0
  34. package/data/rulesets.ts +59 -0
  35. package/package.json +1 -1
  36. package/sim/battle-queue.ts +4 -3
  37. package/sim/battle.ts +6 -4
  38. package/sim/dex-species.ts +2 -0
  39. package/sim/team-validator.ts +5 -0
@@ -1262,7 +1262,7 @@ exports.FormatsData = {
1262
1262
  natDexTier: "RU",
1263
1263
  },
1264
1264
  magby: {
1265
- tier: "LC",
1265
+ tier: "NFE",
1266
1266
  },
1267
1267
  magmar: {
1268
1268
  tier: "NFE",
@@ -1408,7 +1408,7 @@ exports.FormatsData = {
1408
1408
  natDexTier: "RU",
1409
1409
  },
1410
1410
  glaceon: {
1411
- randomBattleMoves: ["freezedry", "protect", "shadowball", "toxic", "wish"],
1411
+ randomBattleMoves: ["freezedry", "protect", "toxic", "wish"],
1412
1412
  randomBattleLevel: 88,
1413
1413
  randomDoubleBattleMoves: ["blizzard", "freezedry", "helpinghand", "protect", "shadowball", "wish"],
1414
1414
  randomDoubleBattleLevel: 88,
@@ -5844,7 +5844,7 @@ exports.FormatsData = {
5844
5844
  natDexTier: "RU",
5845
5845
  },
5846
5846
  silvallyghost: {
5847
- randomBattleMoves: ["multiattack", "partingshot", "swordsdance", "xscissor"],
5847
+ randomBattleMoves: ["flamecharge", "multiattack", "partingshot", "swordsdance", "xscissor"],
5848
5848
  randomBattleLevel: 84,
5849
5849
  randomDoubleBattleMoves: ["multiattack", "swordsdance", "tailwind", "xscissor"],
5850
5850
  randomDoubleBattleLevel: 88,