@pkmn/sim 0.5.12 → 0.5.15
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 +163 -149
- package/build/config/formats.js.map +1 -1
- package/build/data/abilities.js +2 -2
- package/build/data/abilities.js.map +1 -1
- package/build/data/aliases.js +2 -2
- package/build/data/aliases.js.map +1 -1
- package/build/data/conditions.js +4 -1
- package/build/data/conditions.js.map +1 -1
- package/build/data/formats-data.js +2 -2
- package/build/data/formats-data.js.map +1 -1
- package/build/data/items.js +4 -2
- package/build/data/items.js.map +1 -1
- package/build/data/learnsets.js +5 -4
- package/build/data/learnsets.js.map +1 -1
- package/build/data/mods/gen1/formats-data.js +38 -36
- package/build/data/mods/gen1/formats-data.js.map +1 -1
- package/build/data/mods/gen1/scripts.js +1 -1
- package/build/data/mods/gen1/scripts.js.map +1 -1
- package/build/data/mods/gen2/items.js +28 -0
- package/build/data/mods/gen2/items.js.map +1 -1
- package/build/data/mods/gen2/moves.js +2 -2
- package/build/data/mods/gen2/moves.js.map +1 -1
- package/build/data/mods/gen3/items.js +28 -0
- package/build/data/mods/gen3/items.js.map +1 -1
- package/build/data/mods/gen4/abilities.js +20 -0
- package/build/data/mods/gen4/abilities.js.map +1 -1
- package/build/data/mods/gen4/items.js +28 -0
- package/build/data/mods/gen4/items.js.map +1 -1
- package/build/data/mods/gen4/moves.js +14 -6
- package/build/data/mods/gen4/moves.js.map +1 -1
- package/build/data/mods/gen5/items.js +0 -4
- package/build/data/mods/gen5/items.js.map +1 -1
- package/build/data/mods/gen6/formats-data.js +3 -3
- package/build/data/mods/gen6/formats-data.js.map +1 -1
- package/build/data/mods/gen6/items.js +24 -0
- package/build/data/mods/gen6/items.js.map +1 -1
- package/build/data/mods/gen7/abilities.js +31 -0
- package/build/data/mods/gen7/abilities.js.map +1 -1
- package/build/data/mods/gen7/items.js +12 -0
- package/build/data/mods/gen7/items.js.map +1 -1
- package/build/data/mods/gen7/moves.js +14 -0
- package/build/data/mods/gen7/moves.js.map +1 -1
- package/build/data/moves.js +45 -19
- package/build/data/moves.js.map +1 -1
- package/build/data/rulesets.js +72 -1
- package/build/data/rulesets.js.map +1 -1
- package/build/data/tags.js +3 -3
- package/build/data/tags.js.map +1 -1
- package/build/data/text/moves.js +8 -8
- package/build/data/text/moves.js.map +1 -1
- package/build/sim/battle-queue.d.ts +2 -2
- package/build/sim/battle-queue.js +8 -0
- package/build/sim/battle-queue.js.map +1 -1
- package/build/sim/battle.js +42 -2
- package/build/sim/battle.js.map +1 -1
- package/build/sim/dex-conditions.d.ts +2 -2
- package/build/sim/dex-conditions.js +1 -0
- package/build/sim/dex-conditions.js.map +1 -1
- package/build/sim/dex-data.js +1 -0
- package/build/sim/dex-data.js.map +1 -1
- package/build/sim/dex-formats.js +1 -0
- package/build/sim/dex-formats.js.map +1 -1
- package/build/sim/dex-items.js +1 -0
- package/build/sim/dex-items.js.map +1 -1
- package/build/sim/dex-moves.d.ts +1 -0
- package/build/sim/dex-moves.js +1 -0
- package/build/sim/dex-moves.js.map +1 -1
- package/build/sim/dex-species.js +1 -0
- package/build/sim/dex-species.js.map +1 -1
- package/build/sim/pokemon.js +18 -5
- package/build/sim/pokemon.js.map +1 -1
- package/build/sim/team-validator.js +1 -1
- package/build/sim/team-validator.js.map +1 -1
- package/config/formats.ts +169 -154
- package/data/abilities.ts +2 -2
- package/data/aliases.ts +2 -2
- package/data/conditions.ts +4 -1
- package/data/formats-data.ts +2 -2
- package/data/items.ts +4 -2
- package/data/learnsets.ts +5 -4
- package/data/mods/gen1/formats-data.ts +38 -36
- package/data/mods/gen1/scripts.ts +1 -1
- package/data/mods/gen2/items.ts +28 -0
- package/data/mods/gen2/moves.ts +2 -2
- package/data/mods/gen3/items.ts +28 -0
- package/data/mods/gen4/abilities.ts +20 -0
- package/data/mods/gen4/items.ts +28 -0
- package/data/mods/gen4/moves.ts +14 -7
- package/data/mods/gen5/items.ts +0 -4
- package/data/mods/gen6/formats-data.ts +3 -3
- package/data/mods/gen6/items.ts +24 -0
- package/data/mods/gen7/abilities.ts +31 -0
- package/data/mods/gen7/items.ts +12 -0
- package/data/mods/gen7/moves.ts +14 -0
- package/data/moves.ts +45 -18
- package/data/rulesets.ts +71 -1
- package/data/tags.ts +3 -3
- package/data/text/moves.ts +8 -8
- package/package.json +3 -3
- package/sim/battle-queue.ts +10 -2
- package/sim/battle.ts +39 -2
- package/sim/dex-conditions.ts +7 -2
- package/sim/dex-data.ts +1 -0
- package/sim/dex-formats.ts +1 -0
- package/sim/dex-items.ts +1 -0
- package/sim/dex-moves.ts +2 -0
- package/sim/dex-species.ts +1 -0
- package/sim/pokemon.ts +19 -7
- package/sim/team-validator.ts +1 -1
package/build/data/learnsets.js
CHANGED
|
@@ -20482,20 +20482,20 @@ exports.Learnsets = {
|
|
|
20482
20482
|
dualwingbeat: ["8T"],
|
|
20483
20483
|
endure: ["8M", "8L60"],
|
|
20484
20484
|
facade: ["8M"],
|
|
20485
|
-
fierywrath: ["8L45", "8S0"],
|
|
20485
|
+
fierywrath: ["8L45", "8S0", "8S1"],
|
|
20486
20486
|
fly: ["8M"],
|
|
20487
20487
|
foulplay: ["8M"],
|
|
20488
20488
|
gigaimpact: ["8M"],
|
|
20489
20489
|
gust: ["8L1"],
|
|
20490
20490
|
hex: ["8M"],
|
|
20491
|
-
hurricane: ["8M", "8L55", "8S0"],
|
|
20491
|
+
hurricane: ["8M", "8L55", "8S0", "8S1"],
|
|
20492
20492
|
hyperbeam: ["8M"],
|
|
20493
20493
|
hypervoice: ["8M"],
|
|
20494
20494
|
imprison: ["8M"],
|
|
20495
20495
|
lashout: ["8T"],
|
|
20496
20496
|
leer: ["8L1"],
|
|
20497
20497
|
memento: ["8L65"],
|
|
20498
|
-
nastyplot: ["8M", "8L50", "8S0"],
|
|
20498
|
+
nastyplot: ["8M", "8L50", "8S0", "8S1"],
|
|
20499
20499
|
payback: ["8M", "8L5"],
|
|
20500
20500
|
protect: ["8M"],
|
|
20501
20501
|
rest: ["8M"],
|
|
@@ -20509,7 +20509,7 @@ exports.Learnsets = {
|
|
|
20509
20509
|
snore: ["8M"],
|
|
20510
20510
|
steelwing: ["8M"],
|
|
20511
20511
|
substitute: ["8M"],
|
|
20512
|
-
suckerpunch: ["8L30", "8S0"],
|
|
20512
|
+
suckerpunch: ["8L30", "8S0", "8S1"],
|
|
20513
20513
|
swift: ["8M"],
|
|
20514
20514
|
taunt: ["8M"],
|
|
20515
20515
|
uturn: ["8M"],
|
|
@@ -20517,6 +20517,7 @@ exports.Learnsets = {
|
|
|
20517
20517
|
},
|
|
20518
20518
|
eventData: [
|
|
20519
20519
|
{ generation: 8, level: 70, moves: ["fierywrath", "hurricane", "suckerpunch", "nastyplot"] },
|
|
20520
|
+
{ generation: 8, level: 70, shiny: true, moves: ["fierywrath", "hurricane", "suckerpunch", "nastyplot"], pokeball: "cherishball" },
|
|
20520
20521
|
],
|
|
20521
20522
|
eventOnly: true,
|
|
20522
20523
|
},
|