@pkmn/sim 0.8.9 → 0.9.1
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/LICENSE +1 -1
- package/README.md +33 -1
- package/build/cjs/config/formats.js +184 -676
- package/build/cjs/config/formats.js.map +1 -1
- package/build/cjs/data/abilities.js +7 -2
- package/build/cjs/data/abilities.js.map +1 -1
- package/build/cjs/data/aliases.js +6 -2
- package/build/cjs/data/aliases.js.map +1 -1
- package/build/cjs/data/conditions.js +1 -0
- package/build/cjs/data/conditions.js.map +1 -1
- package/build/cjs/data/formats-data.js +119 -119
- package/build/cjs/data/formats-data.js.map +1 -1
- package/build/cjs/data/legality.js +11 -1
- package/build/cjs/data/legality.js.map +1 -1
- package/build/cjs/data/mods/gen4/abilities.js +1 -1
- package/build/cjs/data/mods/gen4/abilities.js.map +1 -1
- package/build/cjs/data/mods/gen4/moves.js +1 -1
- package/build/cjs/data/mods/gen4/moves.js.map +1 -1
- package/build/cjs/data/mods/gen7/abilities.js +0 -4
- package/build/cjs/data/mods/gen7/abilities.js.map +1 -1
- package/build/cjs/data/moves.js +1 -1
- package/build/cjs/data/moves.js.map +1 -1
- package/build/cjs/data/pokedex.js +18 -18
- package/build/cjs/data/pokedex.js.map +1 -1
- package/build/cjs/data/rulesets.js +0 -1
- package/build/cjs/data/rulesets.js.map +1 -1
- package/build/cjs/sim/battle-actions.d.ts +4 -0
- package/build/cjs/sim/battle-actions.js.map +1 -1
- package/build/cjs/sim/battle-queue.d.ts +1 -1
- package/build/cjs/sim/battle-queue.js +14 -0
- package/build/cjs/sim/battle-queue.js.map +1 -1
- package/build/cjs/sim/battle-stream.d.ts +3 -2
- package/build/cjs/sim/battle-stream.js +4 -2
- package/build/cjs/sim/battle-stream.js.map +1 -1
- package/build/cjs/sim/battle.d.ts +1 -1
- package/build/cjs/sim/battle.js +11 -5
- package/build/cjs/sim/battle.js.map +1 -1
- package/build/cjs/sim/dex-formats.d.ts +2 -0
- package/build/cjs/sim/dex-formats.js +12 -6
- package/build/cjs/sim/dex-formats.js.map +1 -1
- package/build/cjs/sim/dex-items.js +0 -4
- package/build/cjs/sim/dex-items.js.map +1 -1
- package/build/cjs/sim/dex.d.ts +4 -2
- package/build/cjs/sim/dex.js +2 -0
- package/build/cjs/sim/dex.js.map +1 -1
- package/build/cjs/sim/exported-global-types.d.ts +5 -1
- package/build/cjs/sim/field.js +2 -1
- package/build/cjs/sim/field.js.map +1 -1
- package/build/cjs/sim/global-types.d.ts +5 -1
- package/build/cjs/sim/pokemon.d.ts +4 -0
- package/build/cjs/sim/pokemon.js +6 -0
- package/build/cjs/sim/pokemon.js.map +1 -1
- package/build/cjs/sim/side.d.ts +3 -1
- package/build/cjs/sim/side.js +24 -2
- package/build/cjs/sim/side.js.map +1 -1
- package/build/cjs/sim/team-validator.js +1 -1
- package/build/cjs/sim/team-validator.js.map +1 -1
- package/build/esm/config/formats.mjs +184 -676
- package/build/esm/config/formats.mjs.map +1 -1
- package/build/esm/data/abilities.mjs +7 -2
- package/build/esm/data/abilities.mjs.map +1 -1
- package/build/esm/data/aliases.mjs +6 -2
- package/build/esm/data/aliases.mjs.map +1 -1
- package/build/esm/data/conditions.mjs +1 -0
- package/build/esm/data/conditions.mjs.map +1 -1
- package/build/esm/data/formats-data.mjs +119 -119
- package/build/esm/data/formats-data.mjs.map +1 -1
- package/build/esm/data/legality.mjs +11 -1
- package/build/esm/data/legality.mjs.map +1 -1
- package/build/esm/data/mods/gen4/abilities.mjs +1 -1
- package/build/esm/data/mods/gen4/abilities.mjs.map +1 -1
- package/build/esm/data/mods/gen4/moves.mjs +1 -1
- package/build/esm/data/mods/gen4/moves.mjs.map +1 -1
- package/build/esm/data/mods/gen7/abilities.mjs +0 -4
- package/build/esm/data/mods/gen7/abilities.mjs.map +1 -1
- package/build/esm/data/moves.mjs +1 -1
- package/build/esm/data/moves.mjs.map +1 -1
- package/build/esm/data/pokedex.mjs +18 -18
- package/build/esm/data/pokedex.mjs.map +1 -1
- package/build/esm/data/rulesets.mjs +0 -1
- package/build/esm/data/rulesets.mjs.map +1 -1
- package/build/esm/sim/battle-actions.d.mts +4 -0
- package/build/esm/sim/battle-actions.mjs.map +1 -1
- package/build/esm/sim/battle-queue.d.mts +1 -1
- package/build/esm/sim/battle-queue.mjs +14 -0
- package/build/esm/sim/battle-queue.mjs.map +1 -1
- package/build/esm/sim/battle-stream.d.mts +3 -2
- package/build/esm/sim/battle-stream.mjs +4 -2
- package/build/esm/sim/battle-stream.mjs.map +1 -1
- package/build/esm/sim/battle.d.mts +1 -1
- package/build/esm/sim/battle.mjs +11 -5
- package/build/esm/sim/battle.mjs.map +1 -1
- package/build/esm/sim/dex-formats.d.mts +2 -0
- package/build/esm/sim/dex-formats.mjs +12 -6
- package/build/esm/sim/dex-formats.mjs.map +1 -1
- package/build/esm/sim/dex-items.mjs +0 -4
- package/build/esm/sim/dex-items.mjs.map +1 -1
- package/build/esm/sim/dex.d.mts +4 -2
- package/build/esm/sim/dex.mjs +2 -0
- package/build/esm/sim/dex.mjs.map +1 -1
- package/build/esm/sim/exported-global-types.d.mts +5 -1
- package/build/esm/sim/field.mjs +2 -1
- package/build/esm/sim/field.mjs.map +1 -1
- package/build/esm/sim/global-types.d.mts +5 -1
- package/build/esm/sim/pokemon.d.mts +4 -0
- package/build/esm/sim/pokemon.mjs +6 -0
- package/build/esm/sim/pokemon.mjs.map +1 -1
- package/build/esm/sim/side.d.mts +3 -1
- package/build/esm/sim/side.mjs +24 -2
- package/build/esm/sim/side.mjs.map +1 -1
- package/build/esm/sim/team-validator.mjs +1 -1
- package/build/esm/sim/team-validator.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -8591,7 +8591,7 @@ exports.Pokedex = {
|
|
|
8591
8591
|
abilities: { 0: "Pressure", H: "Telepathy" },
|
|
8592
8592
|
heightm: 7,
|
|
8593
8593
|
weightkg: 850,
|
|
8594
|
-
color: "
|
|
8594
|
+
color: "Blue",
|
|
8595
8595
|
eggGroups: ["Undiscovered"],
|
|
8596
8596
|
requiredItem: "Adamant Crystal",
|
|
8597
8597
|
changesFrom: "Dialga",
|
|
@@ -15799,7 +15799,7 @@ exports.Pokedex = {
|
|
|
15799
15799
|
abilities: { 0: "Sweet Veil", H: "Aroma Veil" },
|
|
15800
15800
|
heightm: 30,
|
|
15801
15801
|
weightkg: 0,
|
|
15802
|
-
color: "
|
|
15802
|
+
color: "Yellow",
|
|
15803
15803
|
eggGroups: ["Fairy", "Amorphous"],
|
|
15804
15804
|
changesFrom: "Alcremie",
|
|
15805
15805
|
},
|
|
@@ -16418,7 +16418,7 @@ exports.Pokedex = {
|
|
|
16418
16418
|
abilities: { 0: "Intimidate", 1: "Frisk", H: "Sap Sipper" },
|
|
16419
16419
|
heightm: 1.8,
|
|
16420
16420
|
weightkg: 95.1,
|
|
16421
|
-
color: "
|
|
16421
|
+
color: "Gray",
|
|
16422
16422
|
prevo: "Stantler",
|
|
16423
16423
|
evoType: "other",
|
|
16424
16424
|
evoCondition: "Use Agile style Psyshield Bash 20 times",
|
|
@@ -16512,7 +16512,7 @@ exports.Pokedex = {
|
|
|
16512
16512
|
abilities: { 0: "Pressure", 1: "Unburden", H: "Poison Touch" },
|
|
16513
16513
|
heightm: 1.3,
|
|
16514
16514
|
weightkg: 43,
|
|
16515
|
-
color: "
|
|
16515
|
+
color: "Blue",
|
|
16516
16516
|
prevo: "Sneasel-Hisui",
|
|
16517
16517
|
evoType: "levelHold",
|
|
16518
16518
|
evoItem: "Razor Claw",
|
|
@@ -16527,7 +16527,7 @@ exports.Pokedex = {
|
|
|
16527
16527
|
abilities: { 0: "Poison Point", 1: "Swift Swim", H: "Intimidate" },
|
|
16528
16528
|
heightm: 2.5,
|
|
16529
16529
|
weightkg: 60.5,
|
|
16530
|
-
color: "
|
|
16530
|
+
color: "Black",
|
|
16531
16531
|
prevo: "Qwilfish-Hisui",
|
|
16532
16532
|
evoType: "other",
|
|
16533
16533
|
evoCondition: "Use Strong style Barb Barrage 20 times",
|
|
@@ -17061,7 +17061,7 @@ exports.Pokedex = {
|
|
|
17061
17061
|
abilities: { 0: "Flash Fire", H: "Weak Armor" },
|
|
17062
17062
|
heightm: 1.6,
|
|
17063
17063
|
weightkg: 62,
|
|
17064
|
-
color: "
|
|
17064
|
+
color: "Purple",
|
|
17065
17065
|
prevo: "Charcadet",
|
|
17066
17066
|
evoType: "useItem",
|
|
17067
17067
|
evoItem: "Malicious Armor",
|
|
@@ -17594,7 +17594,7 @@ exports.Pokedex = {
|
|
|
17594
17594
|
abilities: { 0: "Commander", H: "Storm Drain" },
|
|
17595
17595
|
heightm: 0.3,
|
|
17596
17596
|
weightkg: 8,
|
|
17597
|
-
color: "
|
|
17597
|
+
color: "Red",
|
|
17598
17598
|
cosmeticFormes: ["Tatsugiri-Droopy", "Tatsugiri-Stretchy"],
|
|
17599
17599
|
formeOrder: ["Tatsugiri", "Tatsugiri-Droopy", "Tatsugiri-Stretchy"],
|
|
17600
17600
|
eggGroups: ["Water 2"],
|
|
@@ -17722,7 +17722,7 @@ exports.Pokedex = {
|
|
|
17722
17722
|
abilities: { 0: "Protosynthesis" },
|
|
17723
17723
|
heightm: 1.2,
|
|
17724
17724
|
weightkg: 21,
|
|
17725
|
-
color: "
|
|
17725
|
+
color: "White",
|
|
17726
17726
|
tags: ["Paradox"],
|
|
17727
17727
|
eggGroups: ["Undiscovered"],
|
|
17728
17728
|
},
|
|
@@ -17748,7 +17748,7 @@ exports.Pokedex = {
|
|
|
17748
17748
|
abilities: { 0: "Protosynthesis" },
|
|
17749
17749
|
heightm: 3.2,
|
|
17750
17750
|
weightkg: 92,
|
|
17751
|
-
color: "
|
|
17751
|
+
color: "White",
|
|
17752
17752
|
tags: ["Paradox"],
|
|
17753
17753
|
eggGroups: ["Undiscovered"],
|
|
17754
17754
|
},
|
|
@@ -17826,7 +17826,7 @@ exports.Pokedex = {
|
|
|
17826
17826
|
abilities: { 0: "Quark Drive" },
|
|
17827
17827
|
heightm: 1.2,
|
|
17828
17828
|
weightkg: 36,
|
|
17829
|
-
color: "
|
|
17829
|
+
color: "White",
|
|
17830
17830
|
tags: ["Paradox"],
|
|
17831
17831
|
eggGroups: ["Undiscovered"],
|
|
17832
17832
|
},
|
|
@@ -17863,7 +17863,7 @@ exports.Pokedex = {
|
|
|
17863
17863
|
abilities: { 0: "Thermal Exchange", H: "Ice Body" },
|
|
17864
17864
|
heightm: 0.8,
|
|
17865
17865
|
weightkg: 30,
|
|
17866
|
-
color: "
|
|
17866
|
+
color: "Blue",
|
|
17867
17867
|
prevo: "Frigibax",
|
|
17868
17868
|
evoLevel: 35,
|
|
17869
17869
|
evos: ["Baxcalibur"],
|
|
@@ -17877,7 +17877,7 @@ exports.Pokedex = {
|
|
|
17877
17877
|
abilities: { 0: "Thermal Exchange", H: "Ice Body" },
|
|
17878
17878
|
heightm: 2.1,
|
|
17879
17879
|
weightkg: 210,
|
|
17880
|
-
color: "
|
|
17880
|
+
color: "Blue",
|
|
17881
17881
|
prevo: "Arctibax",
|
|
17882
17882
|
evoLevel: 54,
|
|
17883
17883
|
eggGroups: ["Dragon", "Mineral"],
|
|
@@ -17892,7 +17892,7 @@ exports.Pokedex = {
|
|
|
17892
17892
|
abilities: { 0: "Rattled" },
|
|
17893
17893
|
heightm: 0.3,
|
|
17894
17894
|
weightkg: 5,
|
|
17895
|
-
color: "
|
|
17895
|
+
color: "Red",
|
|
17896
17896
|
evos: ["Gholdengo"],
|
|
17897
17897
|
otherFormes: ["Gimmighoul-Roaming"],
|
|
17898
17898
|
formeOrder: ["Gimmighoul", "Gimmighoul-Roaming"],
|
|
@@ -17909,7 +17909,7 @@ exports.Pokedex = {
|
|
|
17909
17909
|
abilities: { 0: "Run Away" },
|
|
17910
17910
|
heightm: 0.1,
|
|
17911
17911
|
weightkg: 0.1,
|
|
17912
|
-
color: "
|
|
17912
|
+
color: "Gray",
|
|
17913
17913
|
evos: ["Gholdengo"],
|
|
17914
17914
|
eggGroups: ["Undiscovered"],
|
|
17915
17915
|
},
|
|
@@ -17989,7 +17989,7 @@ exports.Pokedex = {
|
|
|
17989
17989
|
abilities: { 0: "Protosynthesis" },
|
|
17990
17990
|
heightm: 2,
|
|
17991
17991
|
weightkg: 380,
|
|
17992
|
-
color: "
|
|
17992
|
+
color: "Blue",
|
|
17993
17993
|
tags: ["Paradox"],
|
|
17994
17994
|
eggGroups: ["Undiscovered"],
|
|
17995
17995
|
},
|
|
@@ -18028,7 +18028,7 @@ exports.Pokedex = {
|
|
|
18028
18028
|
abilities: { 0: "Hadron Engine" },
|
|
18029
18029
|
heightm: 3.5,
|
|
18030
18030
|
weightkg: 240,
|
|
18031
|
-
color: "
|
|
18031
|
+
color: "Purple",
|
|
18032
18032
|
tags: ["Restricted Legendary"],
|
|
18033
18033
|
eggGroups: ["Undiscovered"],
|
|
18034
18034
|
},
|
|
@@ -18202,7 +18202,7 @@ exports.Pokedex = {
|
|
|
18202
18202
|
abilities: { 0: "Water Absorb" },
|
|
18203
18203
|
heightm: 1.2,
|
|
18204
18204
|
weightkg: 39.8,
|
|
18205
|
-
color: "
|
|
18205
|
+
color: "Blue",
|
|
18206
18206
|
eggGroups: ["Undiscovered"],
|
|
18207
18207
|
requiredItem: "Wellspring Mask",
|
|
18208
18208
|
changesFrom: "Ogerpon",
|
|
@@ -18269,7 +18269,7 @@ exports.Pokedex = {
|
|
|
18269
18269
|
abilities: { 0: "Embody Aspect (Wellspring)" },
|
|
18270
18270
|
heightm: 1.2,
|
|
18271
18271
|
weightkg: 39.8,
|
|
18272
|
-
color: "
|
|
18272
|
+
color: "Blue",
|
|
18273
18273
|
eggGroups: ["Undiscovered"],
|
|
18274
18274
|
requiredItem: "Wellspring Mask",
|
|
18275
18275
|
battleOnly: "Ogerpon-Wellspring",
|