Skip to content

Commit

Permalink
feat: add Effort Value yields to all Pokémon (#444)
Browse files Browse the repository at this point in the history
Co-authored-by: Ed L <beartechtalks@gmail.com>
Co-authored-by: nandhagk <nandhagopi@gmail.com>
  • Loading branch information
3 people committed Sep 6, 2021
1 parent 7ce0c2e commit dd69b57
Show file tree
Hide file tree
Showing 17 changed files with 11,344 additions and 2,180 deletions.
3 changes: 1 addition & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,12 @@
"christian-kohler.npm-intellisense",
"christian-kohler.path-intellisense",
"esbenp.prettier-vscode",
"tabnine.tabnine-vscode",
"redhat.vscode-yaml",
"akamud.vscode-theme-onedark"
],

// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [8080, 8081, 5432, 2333, 8284, 8285, 8287],
"forwardPorts": [4000],

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "yarn install"
Expand Down
16 changes: 16 additions & 0 deletions __tests__/__snapshots__/dex.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,14 @@ Object {
"eggGroups": Array [
"Undiscovered",
],
"evYields": Object {
"atk": 0,
"def": 0,
"hp": 3,
"spa": 0,
"spd": 0,
"spe": 0,
},
"genderRatio": Object {
"female": 0,
"male": 0,
Expand Down Expand Up @@ -151,6 +159,14 @@ Object {
"Water 1",
"Dragon",
],
"evYields": Object {
"atk": 3,
"def": 0,
"hp": 0,
"spa": 0,
"spd": 0,
"spe": 0,
},
"evoLevel": 55,
"genderRatio": Object {
"female": 0.5,
Expand Down
Loading

0 comments on commit dd69b57

Please sign in to comment.