Skip to content

Doubled move entries #372

@lennartdeknikker

Description

@lennartdeknikker

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions