Skip to content

Commit b72b7da

Browse files
committed
formatting
1 parent ea56326 commit b72b7da

File tree

1 file changed

+11
-36
lines changed

1 file changed

+11
-36
lines changed

ElvUI/Mainline/Modules/DataTexts/Crests.lua

+11-36
Original file line numberDiff line numberDiff line change
@@ -10,44 +10,19 @@ local C_CurrencyInfo_GetCurrencyInfo = C_CurrencyInfo.GetCurrencyInfo
1010
local CRESTS_EARNED = strsplit('%', _G.CURRENCY_SEASON_TOTAL_MAXIMUM)
1111

1212
local crests = {
13-
{ -- Valorstones
14-
id = 3008,
15-
color = _G.HEIRLOOM_BLUE_COLOR:GenerateHexColor()
16-
},
13+
{ id = 3008, color = _G.HEIRLOOM_BLUE_COLOR:GenerateHexColor() }, -- Valorstones
14+
1715
-- TWW Season 1
18-
{ -- Weathered Harbinger Crest
19-
id = 2914,
20-
color = _G.UNCOMMON_GREEN_COLOR:GenerateHexColor()
21-
},
22-
{ -- Carved Harbinger Crest
23-
id = 2915,
24-
color = _G.RARE_BLUE_COLOR:GenerateHexColor()
25-
},
26-
{ -- Runed Harbinger Crest
27-
id = 2916,
28-
color = _G.EPIC_PURPLE_COLOR:GenerateHexColor()
29-
},
30-
{ -- Gilded Harbinger Crest
31-
id = 2917,
32-
color = _G.LEGENDARY_ORANGE_COLOR:GenerateHexColor()
33-
},
16+
{ id = 2914, color = _G.UNCOMMON_GREEN_COLOR:GenerateHexColor() }, -- Weathered Harbinger Crest
17+
{ id = 2915, color = _G.RARE_BLUE_COLOR:GenerateHexColor() }, -- Carved Harbinger Crest
18+
{ id = 2916, color = _G.EPIC_PURPLE_COLOR:GenerateHexColor() }, -- Runed Harbinger Crest
19+
{ id = 2917, color = _G.LEGENDARY_ORANGE_COLOR:GenerateHexColor() }, -- Gilded Harbinger Crest
20+
3421
-- TWW Season 2
35-
{ -- Weathered Undermine Crest
36-
id = 3107,
37-
color = _G.UNCOMMON_GREEN_COLOR:GenerateHexColor()
38-
},
39-
{ -- Carved Undermine Crest
40-
id = 3108,
41-
color = _G.RARE_BLUE_COLOR:GenerateHexColor()
42-
},
43-
{ -- Runed Undermine Crest
44-
id = 3109,
45-
color = _G.EPIC_PURPLE_COLOR:GenerateHexColor()
46-
},
47-
{ -- Gilded Undermine Crest
48-
id = 3110,
49-
color = _G.LEGENDARY_ORANGE_COLOR:GenerateHexColor()
50-
}
22+
{ id = 3107, color = _G.UNCOMMON_GREEN_COLOR:GenerateHexColor() }, -- Weathered Undermine Crest
23+
{ id = 3108, color = _G.RARE_BLUE_COLOR:GenerateHexColor() }, -- Carved Undermine Crest
24+
{ id = 3109, color = _G.EPIC_PURPLE_COLOR:GenerateHexColor() }, -- Runed Undermine Crest
25+
{ id = 3110, color = _G.LEGENDARY_ORANGE_COLOR:GenerateHexColor() } -- Gilded Undermine Crest
5126
}
5227

5328
local crestIcon = '|T%s:16:16:0:0:64:64:4:60:4:60|t'

0 commit comments

Comments
 (0)