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:
Kelsi 2026-03-13 10:22:34 -07:00
parent cc24597983
commit bbbc4efced
3 changed files with 8 additions and 0 deletions

View file

@ -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";
}
}