Skip to content

Commit

Permalink
Fix evolution error in pokemon.json (#3344)
Browse files Browse the repository at this point in the history
Fix evolution error in pokemon.json
  • Loading branch information
jebabin authored and elicwhite committed Aug 10, 2016
1 parent b3f9e0f commit 67fe00b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions data/pokemon.json
Original file line number Diff line number Diff line change
Expand Up @@ -1600,8 +1600,8 @@
},
"Next evolution(s)": [
{
"Number": "039",
"Name": "Jigglypuff"
"Number": "040",
"Name": "Wigglytuff"
}
],
"Special Attack(s)": [
Expand Down Expand Up @@ -1633,8 +1633,8 @@
"Height": "1.0 m",
"Previous evolution(s)": [
{
"Number": "040",
"Name": "Wigglytuff"
"Number": "039",
"Name": "Jigglypuff"
}
],
"Special Attack(s)": [
Expand Down Expand Up @@ -4820,8 +4820,8 @@
},
"Next evolution(s)": [
{
"Number": "120",
"Name": "Staryu"
"Number": "121",
"Name": "Starmie"
}
],
"Special Attack(s)": [
Expand Down Expand Up @@ -4860,8 +4860,8 @@
"Height": "1.1 m",
"Previous evolution(s)": [
{
"Number": "121",
"Name": "Starmie"
"Number": "120",
"Name": "Staryu"
}
],
"Special Attack(s)": [
Expand Down

2 comments on commit 67fe00b

@julienlavergne
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Next evolutions of dratini are missing as well

@jebabin
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix submitted in pull request #3535.
Also fix an error for Hitmonlee & Hitmonchan

Please sign in to comment.