Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doubled move entries #372

Open
lennartdeknikker opened this issue Jan 17, 2023 · 1 comment
Open

Doubled move entries #372

lennartdeknikker opened this issue Jan 17, 2023 · 1 comment

Comments

@lennartdeknikker
Copy link

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"
    },
    ```
@kwsch
Copy link

kwsch commented Apr 5, 2023

These two moves were indeed the same as Pound.

Starting in Scarlet & Violet 1.2.0 (March), Psyblade and Hydro Steam were added, finally receiving their valid move data.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants