forked from sadsfae/CEPGP-Retail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTokens.lua
121 lines (116 loc) · 2.75 KB
/
Tokens.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
--[[ Slot = { [itemID] = itemLevel } ]]--
CEPGP_tokens = {
Heads = {
["Trinket"] = {
[18423] = 74, -- of Onyxia (Alliance) -- Can also be a neck and ring
[18422] = 74, -- of Onyxia (Horde) -- Same deal
[19802] = 68, -- Heart of Hakkar
[22520] = 90 -- Phylactery of Kel'Thuzad
},
["Neck"] = {
[21220] = 70, -- of Ossirian the Unscarred
[21221] = 88 -- Eye of C'Thun -- Can also be a cloak or ring
},
["Holdable"] = {
[19003] = 83, -- of Nefarian (Alliance) -- Can also be neck and ring
[19002] = 83 -- of Nefarian (Horde) -- Same deal
}
},
ZG = {
["Wrist"] = {
[19717] = 61, -- Armsplint
[19716] = 61, -- Bindings
[19718] = 61, -- Stanchion
},
["Waist"] = {
[19719] = 61, -- Girdle
[19720] = 61 -- Sash
},
["Chest"] = {
[19724] = 65, -- Aegis
[19723] = 65, -- Kossack
[19722] = 65 -- Tabard
},
["Shoulder"] = {
[19721] = 68 -- Shawl
}
},
AQ = {
["Cloak"] = {
[20885] = 67, -- Martial Drake
[20889] = 67 -- Regal Drape
},
["Finger"] = {
[20888] = 65, -- Ceremonial Ring
[20884] = 65 -- Magisterial Ring
},
["Weaponoffhand"] = {
[20886] = 70, -- Spiked Hilt -- Exceptions apply - Paladin / Shaman weapon are main hand
[21232] = 79, -- Imperial Qiraji Armaments -- Can also be a ranged weapon or shield
},
["Weaponmainhand"] = {
[20890] = 70 -- Ornate Hilt
},
["2HWeapon"] = {
[21237] = 79 -- Imperial Qiraji Regalia -- Can also be a one-handed weapon
},
["Feet"] = {
[20928] = 78, -- Qiraji Bindings of Command -- Can also be shoulders
[20932] = 78 -- Qiraji Bindings of Dominance -- same deal
},
["Chest"] = {
[20933] = 88, -- Husk of the Old God
[20929] = 88 -- Carapace of the Old God
},
["Legs"] = {
[20927] = 81, -- Ouro's Intact Hide
[20931] = 81 -- Skin of the Great Sandworm
},
["Head"] = {
[20930] = 81, -- Vek'lord's Diadem
[20926] = 81 -- Vek'nilash's Circlet
}
},
T3 = {
["Shoulder"] = {
[22368] = 86, -- Shoulderpads
[22354] = 86, -- Pauldrons
[22361] = 86 -- Spaulders
},
["Feet"] = {
[22372] = 86, -- Sandals
[22365] = 86, -- Boots
[22358] = 86 -- Sabatons
},
["Wrist"] = {
[22369] = 88, -- Bindings
[22362] = 88, -- Wristguards
[22355] = 88 -- Bracers
},
["Hand"] = {
[22357] = 88, -- Gauntlets
[22364] = 88, -- Handguards
[22371] = 88, -- Gloves
},
["Waist"] = {
[22363] = 88, -- Girdle
[22370] = 88, -- Belt
[22356] = 88 -- Waistguard
},
["Legs"] = {
[22359] = 88, -- Legguards
[22352] = 88, -- Legplates
[22366] = 88 -- Leggings
},
["Head"] = {
[22367] = 88, -- Circlet
[22360] = 88, -- Headpiece
[22353] = 88 -- Helmet
},
["Chest"] = {
[22350] = 92, -- Tunic
[22351] = 92, -- Robe
[22349] = 92 -- Breastplate
}
}
}