@pkmn/sim 0.4.24 → 0.5.2
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 +238 -170
- package/build/config/formats.js.map +1 -1
- package/build/data/abilities.js +5 -1
- 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 +1 -0
- package/build/data/conditions.js.map +1 -1
- package/build/data/formats-data.js +16 -8
- package/build/data/formats-data.js.map +1 -1
- package/build/data/items.js +26 -2
- package/build/data/items.js.map +1 -1
- package/build/data/learnsets.js +34 -0
- package/build/data/learnsets.js.map +1 -1
- package/build/data/mods/gen2/formats-data.js +2 -2
- package/build/data/mods/gen2/formats-data.js.map +1 -1
- package/build/data/mods/gen3/formats-data.js +1 -1
- package/build/data/mods/gen3/formats-data.js.map +1 -1
- package/build/data/mods/gen6/pokedex.js +17 -17
- package/build/data/mods/gen6/pokedex.js.map +1 -1
- package/build/data/moves.js +4 -1
- package/build/data/moves.js.map +1 -1
- package/build/data/pokedex.js +33 -0
- package/build/data/pokedex.js.map +1 -1
- package/build/data/rulesets.js +39 -5
- package/build/data/rulesets.js.map +1 -1
- package/build/data/text/items.js +4 -0
- package/build/data/text/items.js.map +1 -1
- package/build/data/text/moves.js +1 -1
- package/build/data/text/moves.js.map +1 -1
- package/build/sim/battle-actions.js +1 -1
- package/build/sim/battle-actions.js.map +1 -1
- package/build/sim/dex-formats.js +1 -1
- package/build/sim/dex-formats.js.map +1 -1
- package/build/sim/dex-species.js +4 -3
- package/build/sim/dex-species.js.map +1 -1
- package/build/sim/pokemon.js +1 -1
- package/build/sim/pokemon.js.map +1 -1
- package/build/sim/team-validator.js +3 -0
- package/build/sim/team-validator.js.map +1 -1
- package/config/formats.ts +242 -171
- package/data/abilities.ts +3 -1
- package/data/aliases.ts +2 -2
- package/data/conditions.ts +1 -0
- package/data/formats-data.ts +16 -8
- package/data/items.ts +26 -2
- package/data/learnsets.ts +34 -0
- package/data/mods/gen2/formats-data.ts +2 -2
- package/data/mods/gen3/formats-data.ts +1 -1
- package/data/mods/gen6/pokedex.ts +17 -17
- package/data/moves.ts +4 -1
- package/data/pokedex.ts +33 -0
- package/data/rulesets.ts +35 -6
- package/data/text/items.ts +4 -0
- package/data/text/moves.ts +1 -1
- package/package.json +1 -1
- package/sim/battle-actions.ts +1 -1
- package/sim/dex-formats.ts +1 -1
- package/sim/dex-species.ts +4 -3
- package/sim/pokemon.ts +1 -1
- package/sim/team-validator.ts +3 -0
package/build/data/pokedex.js
CHANGED
|
@@ -16913,6 +16913,39 @@ exports.Pokedex = {
|
|
|
16913
16913
|
eggGroups: ["Water 1", "Fairy"],
|
|
16914
16914
|
gen: 4,
|
|
16915
16915
|
},
|
|
16916
|
+
venomicon: {
|
|
16917
|
+
num: -66,
|
|
16918
|
+
name: "Venomicon",
|
|
16919
|
+
baseForme: "Prologue",
|
|
16920
|
+
types: ["Poison", "Flying"],
|
|
16921
|
+
gender: "N",
|
|
16922
|
+
baseStats: { hp: 85, atk: 70, def: 113, spa: 118, spd: 90, spe: 64 },
|
|
16923
|
+
abilities: { 0: "Stamina" },
|
|
16924
|
+
heightm: 0.8,
|
|
16925
|
+
weightkg: 11.5,
|
|
16926
|
+
color: "Purple",
|
|
16927
|
+
eggGroups: ["Undiscovered"],
|
|
16928
|
+
otherFormes: ["Venomicon-Epilogue"],
|
|
16929
|
+
formeOrder: ["Venomicon", "Venomicon-Epilogue"],
|
|
16930
|
+
gen: 8,
|
|
16931
|
+
},
|
|
16932
|
+
venomiconepilogue: {
|
|
16933
|
+
num: -66,
|
|
16934
|
+
name: "Venomicon-Epilogue",
|
|
16935
|
+
baseSpecies: "Venomicon",
|
|
16936
|
+
forme: "Epilogue",
|
|
16937
|
+
types: ["Poison", "Flying"],
|
|
16938
|
+
gender: "N",
|
|
16939
|
+
baseStats: { hp: 85, atk: 110, def: 85, spa: 55, spd: 85, spe: 120 },
|
|
16940
|
+
abilities: { 0: "Tinted Lens" },
|
|
16941
|
+
heightm: 0.8,
|
|
16942
|
+
weightkg: 12.4,
|
|
16943
|
+
color: "Purple",
|
|
16944
|
+
eggGroups: ["Undiscovered"],
|
|
16945
|
+
requiredItem: "Vile Vial",
|
|
16946
|
+
changesFrom: "Venomicon",
|
|
16947
|
+
gen: 8,
|
|
16948
|
+
},
|
|
16916
16949
|
// NOTE: PokeStar "formes" are not actually formes and thus do not have a formeOrder
|
|
16917
16950
|
pokestarsmeargle: {
|
|
16918
16951
|
num: -5000,
|