Skip to content

Commit 5f409e7

Browse files
committed
Add CAP Shox
1 parent b80eaa6 commit 5f409e7

File tree

3 files changed

+45
-16
lines changed

3 files changed

+45
-16
lines changed

calc/package-lock.json

+15-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

calc/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@types/node": "^18.14.2"
1515
},
1616
"devDependencies": {
17-
"@pkmn/dex": "^0.9.19",
17+
"@pkmn/dex": "^0.9.31",
1818
"@pkmn/eslint-config": "^2.15.0",
1919
"@types/jest": "^29.4.0",
2020
"@typescript-eslint/eslint-plugin": "^5.54.0",

calc/src/data/species.ts

+29
Original file line numberDiff line numberDiff line change
@@ -7038,8 +7038,17 @@ const SM_PATCH: {[name: string]: DeepPartial<SpeciesData>} = {
70387038
bs: {hp: 45, at: 65, df: 40, sa: 30, sd: 40, sp: 60},
70397039
weightkg: 9.2,
70407040
nfe: true,
7041+
otherFormes: ['Rockruff-Dusk'],
70417042
abilities: {0: 'Keen Eye'},
70427043
},
7044+
'Rockruff-Dusk': {
7045+
types: ['Rock'],
7046+
bs: {hp: 45, at: 65, df: 40, sa: 30, sd: 40, sp: 60},
7047+
weightkg: 9.2,
7048+
nfe: true,
7049+
abilities: {0: 'Own Tempo'},
7050+
baseSpecies: 'Rockruff',
7051+
},
70437052
Rowlet: {
70447053
types: ['Grass', 'Flying'],
70457054
bs: {hp: 68, at: 55, df: 55, sa: 50, sd: 50, sp: 42},
@@ -9119,6 +9128,13 @@ const SV_PATCH: {[name: string]: DeepPartial<SpeciesData>} = {
91199128
gender: 'N',
91209129
abilities: {0: 'Sword of Ruin'},
91219130
},
9131+
Chuggon: {
9132+
types: ['Dragon', 'Poison'],
9133+
bs: {hp: 30, at: 23, df: 77, sa: 55, sd: 65, sp: 30},
9134+
weightkg: 50,
9135+
abilities: {0: 'Shell Armor'},
9136+
nfe: true,
9137+
},
91229138
Chuggalong: {
91239139
types: ['Dragon', 'Poison'],
91249140
bs: {hp: 45, at: 43, df: 117, sa: 120, sd: 110, sp: 108},
@@ -9176,6 +9192,13 @@ const SV_PATCH: {[name: string]: DeepPartial<SpeciesData>} = {
91769192
weightkg: 220,
91779193
abilities: {0: 'Unaware'},
91789194
},
9195+
Draggalong: {
9196+
types: ['Dragon', 'Poison'],
9197+
bs: {hp: 40, at: 33, df: 92, sa: 95, sd: 80, sp: 85},
9198+
weightkg: 110,
9199+
abilities: {0: 'Armor Tail'},
9200+
nfe: true,
9201+
},
91799202
Dudunsparce: {
91809203
types: ['Normal'],
91819204
bs: {hp: 125, at: 100, df: 80, sa: 85, sd: 75, sp: 55},
@@ -9756,6 +9779,12 @@ const SV_PATCH: {[name: string]: DeepPartial<SpeciesData>} = {
97569779
gender: 'N',
97579780
abilities: {0: 'Protosynthesis'},
97589781
},
9782+
Shox: {
9783+
types: ['Electric', 'Normal'],
9784+
bs: {hp: 136, at: 55, df: 87, sa: 108, sd: 108, sp: 56},
9785+
weightkg: 99.9,
9786+
abilities: {0: 'Electromorphosis'},
9787+
},
97599788
Shroodle: {
97609789
types: ['Poison', 'Normal'],
97619790
bs: {hp: 40, at: 65, df: 35, sa: 40, sd: 35, sp: 75},

0 commit comments

Comments
 (0)