@pkmn/sim 0.6.1 → 0.6.3
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.
- package/build/config/formats.js +161 -166
- package/build/config/formats.js.map +1 -1
- package/build/data/aliases.js +2 -2
- package/build/data/aliases.js.map +1 -1
- package/build/data/formats-data.js +111 -115
- package/build/data/formats-data.js.map +1 -1
- package/build/data/items.js +7 -1
- package/build/data/items.js.map +1 -1
- package/build/data/learnsets.js +3 -2
- package/build/data/learnsets.js.map +1 -1
- package/build/data/mods/gen1/moves.js +0 -10
- package/build/data/mods/gen1/moves.js.map +1 -1
- package/build/data/mods/gen1/scripts.js +87 -52
- package/build/data/mods/gen1/scripts.js.map +1 -1
- package/build/data/mods/gen2/moves.js +0 -1
- package/build/data/mods/gen2/moves.js.map +1 -1
- package/build/data/mods/gen2/scripts.js +1 -1
- package/build/data/moves.js +44 -25
- package/build/data/moves.js.map +1 -1
- package/build/data/pokedex.js +1 -1
- package/build/data/rulesets.js +58 -0
- package/build/data/rulesets.js.map +1 -1
- package/build/sim/battle.js +8 -4
- package/build/sim/battle.js.map +1 -1
- package/build/sim/dex-conditions.d.ts +1 -0
- package/build/sim/dex-conditions.js.map +1 -1
- package/build/sim/field.js +1 -0
- package/build/sim/field.js.map +1 -1
- package/build/sim/pokemon.js +2 -10
- package/build/sim/pokemon.js.map +1 -1
- package/build/sim/team-validator.d.ts +2 -2
- package/build/sim/team-validator.js +19 -14
- package/build/sim/team-validator.js.map +1 -1
- package/config/formats.ts +168 -169
- package/data/aliases.ts +2 -2
- package/data/formats-data.ts +111 -115
- package/data/items.ts +7 -1
- package/data/learnsets.ts +3 -2
- package/data/mods/gen1/moves.ts +0 -10
- package/data/mods/gen1/scripts.ts +85 -51
- package/data/mods/gen2/moves.ts +0 -1
- package/data/mods/gen2/scripts.ts +1 -1
- package/data/moves.ts +43 -23
- package/data/pokedex.ts +1 -1
- package/data/rulesets.ts +59 -0
- package/package.json +1 -1
- package/sim/battle.ts +6 -4
- package/sim/dex-conditions.ts +1 -0
- package/sim/field.ts +1 -0
- package/sim/pokemon.ts +1 -8
- package/sim/team-validator.ts +27 -15
package/build/data/learnsets.js
CHANGED
|
@@ -79225,7 +79225,7 @@ exports.Learnsets = {
|
|
|
79225
79225
|
blizzard: ["8M"],
|
|
79226
79226
|
bodyslam: ["8M"],
|
|
79227
79227
|
boomburst: ["8L75"],
|
|
79228
|
-
calmmind: ["8M"
|
|
79228
|
+
calmmind: ["8M"],
|
|
79229
79229
|
charm: ["8M"],
|
|
79230
79230
|
crunch: ["8M", "8L35"],
|
|
79231
79231
|
darkpulse: ["8M", "8S0"],
|
|
@@ -79273,6 +79273,7 @@ exports.Learnsets = {
|
|
|
79273
79273
|
stompingtantrum: ["8M", "8L30"],
|
|
79274
79274
|
substitute: ["8M"],
|
|
79275
79275
|
sunnyday: ["8M"],
|
|
79276
|
+
switcheroo: ["8S0"],
|
|
79276
79277
|
taunt: ["8M"],
|
|
79277
79278
|
thief: ["8M"],
|
|
79278
79279
|
thunder: ["8M"],
|
|
@@ -79285,7 +79286,7 @@ exports.Learnsets = {
|
|
|
79285
79286
|
wideguard: ["8L50"],
|
|
79286
79287
|
},
|
|
79287
79288
|
eventData: [
|
|
79288
|
-
{ generation: 8, level: 50, moves: ["recover", "
|
|
79289
|
+
{ generation: 8, level: 50, moves: ["recover", "switcheroo", "darkpulse", "belch"], pokeball: "cherishball" },
|
|
79289
79290
|
],
|
|
79290
79291
|
},
|
|
79291
79292
|
syclant: {
|