-
Notifications
You must be signed in to change notification settings - Fork 637
Open
Description
While working with the PokeAPI, I noticed that on requesting moves, there are three entries for the move "pound", all containing the same properties. The moves with ID's: 1, 875 and 876 all return the same data.
{
"id": 876,
"name": "pound",
"accuracy": 100,
"effectChance": null,
"power": 40,
"pp": 35,
"priority": 0,
"type": "normal"
},
{
"id": 2,
"name": "karate-chop",
"accuracy": 100,
"effectChance": null,
"power": 50,
"pp": 25,
"priority": 0,
"type": "fighting"
},
...
{
"id": 874,
"name": "make-it-rain",
"accuracy": 100,
"effectChance": null,
"power": 120,
"pp": 5,
"priority": 0,
"type": "steel"
},
{
"id": 876,
"name": "pound",
"accuracy": 100,
"effectChance": null,
"power": 40,
"pp": 35,
"priority": 0,
"type": "normal"
},
{
"id": 876,
"name": "pound",
"accuracy": 100,
"effectChance": null,
"power": 40,
"pp": 35,
"priority": 0,
"type": "normal"
},
{
"id": 877,
"name": "ruination",
"accuracy": 90,
"effectChance": null,
"power": 1,
"pp": 10,
"priority": 0,
"type": "dark"
},
```Metadata
Metadata
Assignees
Labels
No labels