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

@ -15,6 +15,8 @@ enum class ItemQuality : uint8_t {
RARE = 3, // Blue
EPIC = 4, // Purple
LEGENDARY = 5, // Orange
ARTIFACT = 6, // Yellow (unused in 3.3.5a but valid quality value)
HEIRLOOM = 7, // Yellow/gold (WotLK bind-on-account heirlooms)
};
enum class EquipSlot : uint8_t {