rembound / Arena-Helper

A plugin for Hearthstone Deck Tracker that helps drafting Hearthstone arena decks.
http://rembound.com
222 stars 71 forks source link

Ratings of MSG multiclass cards #119

Closed supertriodo closed 7 years ago

supertriodo commented 7 years ago

Hey,

You are doing an amazing job with this addon.

I'm the developer behind Arena Tracker and would like to use your json to organize light forge ratings if you are ok with it.

I have find a little problem with MSG multiclass card that shows ratings for all 9 classes instead of only the 3 classes related.

An example:

{ "id": "CFM_853", "name": "Grimestreet Smuggler", "value": [ "96", "96", "96", "96", "96", "96", "96", "96", "96" ] }

Keep up the good work!

rembound commented 7 years ago

I get the scores from the lightforge api at: http://thelightforge.com/api/TierList/Latest?locale=enUS

The Grimestreet Smuggler card actually has default score data as you can see below ("Hero": null). Other single-class cards don't have the default score, so it's an error within the lightforge tier list.

        "CardId": "CFM_853",
        "Cost": 3,
        "Hero": "Hunter",
        "Name": "Grimestreet Smuggler",
        "Names": null,
        "NewCard": false,
        "Rarity": "Common",
        "Scores": [{
            "Hero": null,
            "Score": 96.0,
            "StopAfterFirst": false,
            "StopAfterSecond": false
        },
        {
            "Hero": "Hunter",
            "Score": 96.0,
            "StopAfterFirst": false,
            "StopAfterSecond": false
        },
        {
            "Hero": "Paladin",
            "Score": 96.0,
            "StopAfterFirst": false,
            "StopAfterSecond": false
        },
        {
            "Hero": "Warrior",
            "Score": 96.0,
            "StopAfterFirst": false,
            "StopAfterSecond": false
        }]

Thanks!

supertriodo commented 7 years ago

Yep seems a bug on their end. Thanks for the info :)