Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## 2019-06-07
### Changed
- Updated Tier indicator to the most recent tier list by Amaz

## 2019-06-02
### Added
- Added Winter Wyvern
Expand Down
66 changes: 34 additions & 32 deletions dota_hud_pregame.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,64 +298,66 @@ var eng_to_cn = {
}

var tier_dict = {
'Abaddon': 'C',
'Abaddon': 'D',
'Alchemist': 'B',
'Anti-mage': 'B',
'Axe': 'D',
'Anti-mage': 'C',
'Axe': 'C',
'Batrider': 'D',
'Beastmaster': 'B',
'Bounty Hunter': 'A',
'Chaos Knight': 'C',
'Chaos Knight': 'A',
'Clockwerk': 'A',
'Crystal Maiden': 'B',
'Dazzle': 'B',
'Death Prophet': 'C',
'Disruptor': 'C',
'Doom': 'A',
'Dragon Knight': 'B',
'Crystal Maiden': 'D',
'Dazzle': 'C',
'Death Prophet': 'A',
'Disruptor': 'S',
'Doom': 'S',
'Dragon Knight': 'A',
'Drow Ranger': 'B',
'Enchantress': 'D',
'Enigma': 'S',
'Furion': 'D',
'Gyrocopter': 'B',
'Furion': 'F',
'Gyrocopter': 'A',
'Io': 'S',
'Juggernaut': 'C',
'Juggernaut': 'B',
'Keeper of the Light': 'B',
'Kunkka': 'A',
'Lina': 'C',
'Lich' : 'D',
'Lina': 'D',
'Lone Druid': 'S',
'Luna': 'C',
'Lycan': 'B',
'Mars': 'C',
'Mars': 'B',
'Medusa': 'S',
'Mirana': 'C',
'Morphling': 'C',
'Necrophos': 'A',
'Ogre Magi': 'E',
'Omniknight': 'C',
'Phantom Assassin': 'B',
'Omniknight': 'B',
'Phantom Assassin': 'A',
'Puck': 'D',
'Queen of Pain': 'C',
'Razor': 'A',
'Shadow Fiend': 'A',
'Queen of Pain': 'B',
'Razor': 'S',
'Shadow Fiend': 'S',
'Shadow Shaman': 'D',
'Slardar': 'C',
'Sniper': 'C',
'Techies': 'B',
'Templar Assassin': 'B',
'Terrorblade': 'C',
'Slardar': 'D',
'Sniper': 'B',
'Techies': 'S',
'Templar Assassin': 'A',
'Terrorblade': 'B',
'Tidehunter': 'S',
'Timbersaw': 'A',
'Tinker': 'C',
'Tiny': 'S',
'Tiny': 'A',
'Treant Protector': 'B',
'Troll Warlord': 'B',
'Tusk': 'B',
'Venomancer': 'C',
'Viper': 'D',
'Windranger': 'B',
'Troll Warlord': 'A',
'Tusk': 'C',
'Venomancer': 'B',
'Viper': 'C',
'Windranger': 'A',
'Winter Wyvern': 'C',
'Witch Doctor': 'C',
'Zeus': 'A'
'Zeus': 'S'
};

// Death Prophet (5), Treant (3), Mirana (2), Crystal Maiden (2) might be wrong cost!
Expand Down