Skip to content

Commit

Permalink
Add new CAP Pokemon Cresceidon
Browse files Browse the repository at this point in the history
& fix data errors that turned up by updating `@pkmn/dex`
  • Loading branch information
thejetou committed Nov 27, 2023
1 parent e0d7e1c commit 1bf806a
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 18 deletions.
30 changes: 15 additions & 15 deletions calc/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion calc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@types/node": "^18.14.2"
},
"devDependencies": {
"@pkmn/dex": "^0.7.53",
"@pkmn/dex": "^0.7.58",
"@pkmn/eslint-config": "^2.15.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
Expand Down
1 change: 1 addition & 0 deletions calc/src/data/moves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4172,6 +4172,7 @@ const SV_PATCH: {[name: string]: DeepPartial<MoveData>} = {
'Razor Leaf': {isSlicing: true},
'Razor Shell': {isSlicing: true},
'Sacred Sword': {isSlicing: true},
'Secret Sword': {isSlicing: true},
Sandstorm: {isWind: true},
Slash: {isSlicing: true},
'Solar Blade': {isSlicing: true},
Expand Down
10 changes: 8 additions & 2 deletions calc/src/data/species.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3510,7 +3510,7 @@ const DPP_PATCH: {[name: string]: DeepPartial<SpeciesData>} = {
types: ['Ghost', 'Fighting'],
bs: {hp: 90, at: 105, df: 90, sa: 65, sd: 110, sp: 65},
weightkg: 44,
abilities: {0: 'Shed Skin'},
abilities: {0: 'Air Lock'},
},
Rhyperior: {
types: ['Ground', 'Rock'],
Expand Down Expand Up @@ -8622,7 +8622,7 @@ const SS_PATCH: {[name: string]: DeepPartial<SpeciesData>} = {
'Urshifu-Rapid-Strike-Gmax': {
types: ['Fighting', 'Water'],
bs: {hp: 100, at: 130, df: 100, sa: 63, sd: 60, sp: 97},
weightkg: 105,
weightkg: 0,
abilities: {0: 'Unseen Fist'},
baseSpecies: 'Urshifu',
},
Expand Down Expand Up @@ -9117,6 +9117,12 @@ const SV_PATCH: {[name: string]: DeepPartial<SpeciesData>} = {
weightkg: 223,
abilities: {0: 'Poison Point'},
},
Cresceidon: {
types: ['Water', 'Fairy'],
bs: {hp: 80, at: 32, df: 111, sa: 88, sd: 99, sp: 125},
weightkg: 999.9,
abilities: {0: 'Multiscale'},
},
Crocalor: {
types: ['Fire'],
bs: {hp: 81, at: 55, df: 78, sa: 90, sd: 58, sp: 49},
Expand Down

0 comments on commit 1bf806a

Please sign in to comment.