mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-24 16:10:14 +00:00
feat: add Heirloom and Artifact item quality tiers with light gold color
Extends ItemQuality enum with ARTIFACT (6) and HEIRLOOM (7) to match WotLK 3.3.5a quality values, with light gold color (e6cc80) and display name support in inventory UI and tooltips.
This commit is contained in:
parent
cc24597983
commit
bbbc4efced
3 changed files with 8 additions and 0 deletions
|
|
@ -313,6 +313,8 @@ const char* getQualityName(ItemQuality quality) {
|
|||
case ItemQuality::RARE: return "Rare";
|
||||
case ItemQuality::EPIC: return "Epic";
|
||||
case ItemQuality::LEGENDARY: return "Legendary";
|
||||
case ItemQuality::ARTIFACT: return "Artifact";
|
||||
case ItemQuality::HEIRLOOM: return "Heirloom";
|
||||
default: return "Unknown";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue