veekun / pokedex

more than you ever wanted to know about Pokémon
MIT License
1.44k stars 637 forks source link

Doubled move entries #372

Open lennartdeknikker opened 1 year ago

lennartdeknikker commented 1 year ago

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 commented 1 year ago

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.