LartTyler / MHWDB-Docs

API documentation for the Monster Hunter World API (https://mhw-db.com)
Other
62 stars 6 forks source link

Dragon Resistance Skill modifiers for resistDragon missing #36

Closed Balothar12 closed 5 years ago

Balothar12 commented 6 years ago

The SkillRanks for the Dragon Resistance skill don't contain the modifiers for "resistDragon" for all three ranks, only the "defense" modifier that is applied on the third rank.

https://mhw-db.com/skills?p={"id":true,"slug":true, "ranks":true}&q={"id":"24"}

returns

[
    {
        "id": 24,
        "slug": "dragon-resistance",
        "ranks": [
            {
                "id": 74,
                "slug": "dragon-resistance-rank-1",
                "skill": 24,
                "skillName": "Dragon Resistance",
                "level": 1,
                "description": "Dragon resistance +6",
                "modifiers": {}
            },
            {
                "id": 75,
                "slug": "dragon-resistance-rank-2",
                "skill": 24,
                "skillName": "Dragon Resistance",
                "level": 2,
                "description": "Dragon resistance +12",
                "modifiers": {}
            },
            {
                "id": 76,
                "slug": "dragon-resistance-rank-3",
                "skill": 24,
                "skillName": "Dragon Resistance",
                "level": 3,
                "description": "Dragon resistance +20 Defense +10",
                "modifiers": {
                    "defense": 10
                }
            }
        ]
    }
]
LartTyler commented 5 years ago

This is now correct, sorry for the delayed response. Thank you for bringing this to my attention!