comparison Data/PremadeGroups.lua @ 17:8f5c02113c5c

Reduced the softmax of most ranges from 1.000 to 100. This should make them actually useful. You can still manually enter an amount below the sliders of up to 100.000. The help text for the ?Replenishing stock? category now includes bonus queue information. Added an option to the ?add items? tab called ?Import premade data? which allows a user to import item data from a premade group shipped with the addon. If this premade data ever changes, the user will be notified and queried for an update. Added a ?mass remove? option to the ?current items? tab. Item data should be imported again when importing a complete group. Added ?DataStore (current account only)?, ?DataStore (with guilds)? and ?DataStore (without guilds)? item count options. One might prefer these over Altoholic for a few reasons. Scroll IDs are now stored in a seperate file in a new ?data? folder. Premade groups data can be found there too. Bonus queue and min crafting queue options should now be fully functional. Enchanting scrolls should now work properly. Text in the summary of the value of items below the price threshold window will now be colored completely grey.
author Zerotorescue
date Wed, 20 Oct 2010 01:30:51 +0200
parents
children 7451a8b85e1d
comparison
equal deleted inserted replaced
16:68958c55c43d 17:8f5c02113c5c
1 local addon = select(2, ...);
2
3 -- The source for the data of most of the items in the groups below is from Wowhead.com
4 --[[ The following parser was used within Firebug:
5 var items = "";
6 for(var itemId in _)
7 {
8 if(!isNaN(itemId))
9 items += '[' + itemId + '] = 1, -- ' + _[itemId].name_enus + '\n';
10 }
11 alert(items);
12 ]]
13 -- Do not forget to increment the version number of the group when updating a group
14 -- and ensure the value of each items matches that version number (this is used to update groups when they are changed -
15 -- without this, manually removed items would be re-imported again, which we do not want)
16
17 addon.defaultGroups = {
18 -- Glyphs
19 -- Source: http://www.wowhead.com/items=16.6?filter=cr=87;crs=12;crv=0
20 ["Glyphs (Death Knight)"] = {
21 version = 1,
22 items = {
23 [43533] = 1, -- Glyph of Anti-Magic Shell
24 [43534] = 1, -- Glyph of Heart Strike
25 [43535] = 1, -- Glyph of Blood Tap
26 [43536] = 1, -- Glyph of Bone Shield
27 [43537] = 1, -- Glyph of Chains of Ice
28 [43539] = 1, -- Glyph of Death's Embrace
29 [43541] = 1, -- Glyph of Death Grip
30 [43542] = 1, -- Glyph of Death and Decay
31 [43543] = 1, -- Glyph of Frost Strike
32 [43544] = 1, -- Glyph of Horn of Winter
33 [43546] = 1, -- Glyph of Icy Touch
34 [43547] = 1, -- Glyph of Obliterate
35 [43548] = 1, -- Glyph of Pestilence
36 [43549] = 1, -- Glyph of Raise Dead
37 [43550] = 1, -- Glyph of Rune Strike
38 [43551] = 1, -- Glyph of Scourge Strike
39 [43552] = 1, -- Glyph of Strangulate
40 [43553] = 1, -- Glyph of Pillar of Frost
41 [43554] = 1, -- Glyph of Vampiric Blood
42 [43671] = 1, -- Glyph of Path of Frost
43 [43672] = 1, -- Glyph of Resilient Grip
44 [43673] = 1, -- Glyph of Raise Ally
45 [43825] = 1, -- Glyph of Rune Tap
46 [43826] = 1, -- Glyph of Blood Boil
47 [43827] = 1, -- Glyph of Death Strike
48 [45799] = 1, -- Glyph of Dancing Rune Weapon
49 [45800] = 1, -- Glyph of Hungering Cold
50 [45804] = 1, -- Glyph of Death Coil
51 [45806] = 1, -- Glyph of Howling Blast
52 },
53 },
54 ["Glyphs (Druid)"] = {
55 version = 1,
56 items = {
57 [45604] = 1, -- Glyph of Savage Roar
58 [40921] = 1, -- Glyph of Starfall
59 [44928] = 1, -- Glyph of Focus
60 [45601] = 1, -- Glyph of Berserk
61 [67484] = 1, -- Glyph of Lacerate
62 [40915] = 1, -- Glyph of Lifebloom
63 [45623] = 1, -- Glyph of Barkskin
64 [40902] = 1, -- Glyph of Rip
65 [40896] = 1, -- Glyph of Frenzied Regeneration
66 [45602] = 1, -- Glyph of Wild Growth
67 [40901] = 1, -- Glyph of Shred
68 [40920] = 1, -- Glyph of Hurricane
69 [40899] = 1, -- Glyph of Solar Beam
70 [44922] = 1, -- Glyph of Typhoon
71 [43335] = 1, -- Glyph of the Wild
72 [45622] = 1, -- Glyph of Monsoon
73 [67486] = 1, -- Glyph of Feral Charge
74 [40908] = 1, -- Glyph of Innervate
75 [43334] = 1, -- Glyph of Challenging Roar
76 [43674] = 1, -- Glyph of Dash
77 [40897] = 1, -- Glyph of Maul
78 [40900] = 1, -- Glyph of Mangle
79 [40903] = 1, -- Glyph of Rake
80 [40906] = 1, -- Glyph of Swiftmend
81 [40909] = 1, -- Glyph of Rebirth
82 [40912] = 1, -- Glyph of Regrowth
83 [40913] = 1, -- Glyph of Rejuvenation
84 [40914] = 1, -- Glyph of Healing Touch
85 [40916] = 1, -- Glyph of Starfire
86 [40919] = 1, -- Glyph of Insect Swarm
87 [40922] = 1, -- Glyph of Wrath
88 [40923] = 1, -- Glyph of Moonfire
89 [40924] = 1, -- Glyph of Entangling Roots
90 [43316] = 1, -- Glyph of Aquatic Form
91 [43331] = 1, -- Glyph of Unburdened Rebirth
92 [43332] = 1, -- Glyph of Thorns
93 [45603] = 1, -- Glyph of Starsurge
94 [48720] = 1, -- Glyph of Ferocious Bite
95 [67485] = 1, -- Glyph of Faerie Fire
96 [67487] = 1, -- Glyph of Tiger's Fury
97 },
98 },
99 ["Glyphs (Hunter)"] = {
100 version = 1,
101 items = {
102 [42904] = 1, -- Glyph of Disengage
103 [42907] = 1, -- Glyph of Misdirection
104 [45733] = 1, -- Glyph of Master's Call
105 [45625] = 1, -- Glyph of Chimera Shot
106 [42913] = 1, -- Glyph of Snake Trap
107 [43355] = 1, -- Glyph of Aspect of the Pack
108 [42911] = 1, -- Glyph of Rapid Fire
109 [42902] = 1, -- Glyph of Bestial Wrath
110 [42917] = 1, -- Glyph of Wyvern Sting
111 [42899] = 1, -- Glyph of Trap Launcher
112 [42906] = 1, -- Glyph of Ice Trap
113 [42903] = 1, -- Glyph of Deterrence
114 [45732] = 1, -- Glyph of Kill Shot
115 [43351] = 1, -- Glyph of Feign Death
116 [42910] = 1, -- Glyph of Silencing Shot
117 [45734] = 1, -- Glyph of Scatter Shot
118 [42905] = 1, -- Glyph of Freezing Trap
119 [42897] = 1, -- Glyph of Aimed Shot
120 [42898] = 1, -- Glyph of Arcane Shot
121 [42900] = 1, -- Glyph of Mending
122 [42901] = 1, -- Glyph of Concussive Shot
123 [42908] = 1, -- Glyph of Immolation Trap
124 [42909] = 1, -- Glyph of the Dazzled Prey
125 [42912] = 1, -- Glyph of Serpent Sting
126 [42914] = 1, -- Glyph of Steady Shot
127 [42915] = 1, -- Glyph of Kill Command
128 [43338] = 1, -- Glyph of Revive Pet
129 [43350] = 1, -- Glyph of Mend Pet
130 [43356] = 1, -- Glyph of Scare Beast
131 [45731] = 1, -- Glyph of Explosive Shot
132 [45735] = 1, -- Glyph of Raptor Strike
133 },
134 },
135 ["Glyphs (Mage)"] = {
136 version = 1,
137 items = {
138 [45739] = 1, -- Glyph of Mirror Image
139 [42748] = 1, -- Glyph of Invisibility
140 [42736] = 1, -- Glyph of Arcane Power
141 [45736] = 1, -- Glyph of Deep Freeze
142 [63539] = 1, -- Glyph of Living Bomb
143 [42749] = 1, -- Glyph of Mage Armor
144 [43339] = 1, -- Glyph of Arcane Brilliance
145 [44684] = 1, -- Glyph of Frostfire
146 [42754] = 1, -- Glyph of Dragon's Breath
147 [45737] = 1, -- Glyph of Slow
148 [45740] = 1, -- Glyph of Ice Barrier
149 [50045] = 1, -- Glyph of Mana Shield
150 [43359] = 1, -- Glyph of Conjuring
151 [42751] = 1, -- Glyph of Molten Armor
152 [63416] = 1, -- Glyph of Armors
153 [43364] = 1, -- Glyph of Slow Fall
154 [42744] = 1, -- Glyph of Ice Block
155 [44920] = 1, -- Glyph of Blast Wave
156 [42745] = 1, -- Glyph of Ice Lance
157 [42735] = 1, -- Glyph of Arcane Missiles
158 [42737] = 1, -- Glyph of Blink
159 [42738] = 1, -- Glyph of Evocation
160 [42739] = 1, -- Glyph of Fireball
161 [42741] = 1, -- Glyph of Frost Nova
162 [42742] = 1, -- Glyph of Frostbolt
163 [42743] = 1, -- Glyph of Pyroblast
164 [42746] = 1, -- Glyph of Icy Veins
165 [42752] = 1, -- Glyph of Polymorph
166 [42753] = 1, -- Glyph of Cone of Cold
167 [43360] = 1, -- Glyph of the Monkey
168 [43361] = 1, -- Glyph of the Penguin
169 [45738] = 1, -- Glyph of Arcane Barrage
170 [44955] = 1, -- Glyph of Arcane Blast
171 },
172 },
173 ["Glyphs (Paladin)"] = {
174 version = 1,
175 items = {
176 [41102] = 1, -- Glyph of Turn Evil
177 [41107] = 1, -- Glyph of the Ascetic Crusader
178 [41109] = 1, -- Glyph of Light of Dawn
179 [45747] = 1, -- Glyph of Salvation
180 [43369] = 1, -- Glyph of Justice
181 [43340] = 1, -- Glyph of Blessing of Might
182 [41097] = 1, -- Glyph of Hammer of Wrath
183 [43368] = 1, -- Glyph of Truth
184 [43869] = 1, -- Glyph of Seal of Truth
185 [45745] = 1, -- Glyph of Divine Plea
186 [41094] = 1, -- Glyph of Rebuke
187 [45741] = 1, -- Glyph of Beacon of Light
188 [45744] = 1, -- Glyph of Shield of the Righteous
189 [41104] = 1, -- Glyph of Cleansing
190 [41096] = 1, -- Glyph of Divine Protection
191 [41110] = 1, -- Glyph of Seal of Insight
192 [43366] = 1, -- Glyph of Insight
193 [41106] = 1, -- Glyph of Divine Favor
194 [45742] = 1, -- Glyph of Hammer of the Righteous
195 [43867] = 1, -- Glyph of Holy Wrath
196 [41092] = 1, -- Glyph of Judgement
197 [41095] = 1, -- Glyph of Hammer of Justice
198 [41098] = 1, -- Glyph of Crusader Strike
199 [41099] = 1, -- Glyph of Consecration
200 [41100] = 1, -- Glyph of Righteousness
201 [41101] = 1, -- Glyph of Focused Shield
202 [41103] = 1, -- Glyph of Exorcism
203 [41105] = 1, -- Glyph of Word of Glory
204 [41108] = 1, -- Glyph of Divinity
205 [43365] = 1, -- Glyph of Blessing of Kings
206 [43367] = 1, -- Glyph of Lay on Hands
207 [43868] = 1, -- Glyph of Dazing Shield
208 [45743] = 1, -- Glyph of Templar's Verdict
209 [45746] = 1, -- Glyph of Holy Shock
210 [66918] = 1, -- Glyph of the Long Word
211 },
212 },
213 ["Glyphs (Priest)"] = {
214 version = 1,
215 items = {
216 [42404] = 1, -- Glyph of Mass Dispel
217 [42407] = 1, -- Glyph of Power Word: Barrier
218 [45753] = 1, -- Glyph of Dispersion
219 [45755] = 1, -- Glyph of Guardian Spirit
220 [43374] = 1, -- Glyph of Shadowfiend
221 [42401] = 1, -- Glyph of Holy Nova
222 [42396] = 1, -- Glyph of Circle of Healing
223 [42405] = 1, -- Glyph of Psychic Horror
224 [43372] = 1, -- Glyph of Shadow Protection
225 [42399] = 1, -- Glyph of Fear Ward
226 [45760] = 1, -- Glyph of Pain Suppression
227 [42409] = 1, -- Glyph of Prayer of Healing
228 [42417] = 1, -- Glyph of Spirit of Redemption
229 [43370] = 1, -- Glyph of Levitate
230 [42412] = 1, -- Glyph of Scourge Imprisonment
231 [42414] = 1, -- Glyph of Shadow Word: Death
232 [43373] = 1, -- Glyph of Shackle Undead
233 [45757] = 1, -- Glyph of Spirit Tap
234 [42403] = 1, -- Glyph of Lightwell
235 [42397] = 1, -- Glyph of Dispel Magic
236 [42398] = 1, -- Glyph of Fade
237 [42400] = 1, -- Glyph of Flash Heal
238 [42402] = 1, -- Glyph of Inner Fire
239 [42406] = 1, -- Glyph of Shadow Word: Pain
240 [42408] = 1, -- Glyph of Power Word: Shield
241 [42410] = 1, -- Glyph of Psychic Scream
242 [42411] = 1, -- Glyph of Renew
243 [42415] = 1, -- Glyph of Mind Flay
244 [42416] = 1, -- Glyph of Smite
245 [43342] = 1, -- Glyph of Fading
246 [43371] = 1, -- Glyph of Fortitude
247 [45756] = 1, -- Glyph of Penance
248 [45758] = 1, -- Glyph of Divine Accuracy
249 },
250 },
251 ["Glyphs (Rogue)"] = {
252 version = 1,
253 items = {
254 [45766] = 1, -- Glyph of Fan of Knives
255 [45767] = 1, -- Glyph of Tricks of the Trade
256 [45761] = 1, -- Glyph of Vendetta
257 [45762] = 1, -- Glyph of Killing Spree
258 [45764] = 1, -- Glyph of Shadow Dance
259 [45769] = 1, -- Glyph of Cloak of Shadows
260 [42971] = 1, -- Glyph of Kick
261 [42959] = 1, -- Glyph of Deadly Throw
262 [42954] = 1, -- Glyph of Adrenaline Rush
263 [42968] = 1, -- Glyph of Preparation
264 [43378] = 1, -- Glyph of Safe Fall
265 [42969] = 1, -- Glyph of Rupture
266 [42963] = 1, -- Glyph of Feint
267 [42964] = 1, -- Glyph of Garrote
268 [42962] = 1, -- Glyph of Expose Armor
269 [64493] = 1, -- Glyph of Blind
270 [42965] = 1, -- Glyph of Revealing Strike
271 [42967] = 1, -- Glyph of Hemorrhage
272 [43376] = 1, -- Glyph of Distract
273 [42955] = 1, -- Glyph of Ambush
274 [42956] = 1, -- Glyph of Backstab
275 [42957] = 1, -- Glyph of Blade Flurry
276 [42958] = 1, -- Glyph of Crippling Poison
277 [42960] = 1, -- Glyph of Evasion
278 [42961] = 1, -- Glyph of Eviscerate
279 [42966] = 1, -- Glyph of Gouge
280 [42970] = 1, -- Glyph of Sap
281 [42972] = 1, -- Glyph of Sinister Strike
282 [42973] = 1, -- Glyph of Slice and Dice
283 [42974] = 1, -- Glyph of Sprint
284 [43343] = 1, -- Glyph of Pick Pocket
285 [43377] = 1, -- Glyph of Pick Lock
286 [43379] = 1, -- Glyph of Blurred Speed
287 [43380] = 1, -- Glyph of Poisons
288 [45768] = 1, -- Glyph of Mutilate
289 [63420] = 1, -- Glyph of Vanish
290 },
291 },
292 ["Glyphs (Shaman)"] = {
293 version = 1,
294 items = {
295 [45777] = 1, -- Glyph of Hex
296 [45771] = 1, -- Glyph of Feral Spirit
297 [45772] = 1, -- Glyph of Riptide
298 [41529] = 1, -- Glyph of Fire Elemental Totem
299 [44923] = 1, -- Glyph of Thunderstorm
300 [45778] = 1, -- Glyph of Stoneclaw Totem
301 [41527] = 1, -- Glyph of Earthliving Weapon
302 [41552] = 1, -- Glyph of Elemental Mastery
303 [45776] = 1, -- Glyph of Shamanistic Rage
304 [43344] = 1, -- Glyph of Water Breathing
305 [41517] = 1, -- Glyph of Chain Heal
306 [41538] = 1, -- Glyph of Grounding Totem
307 [41524] = 1, -- Glyph of Lava Burst
308 [41542] = 1, -- Glyph of Windfury Weapon
309 [41535] = 1, -- Glyph of Totemic Recall
310 [43381] = 1, -- Glyph of Astral Recall
311 [43385] = 1, -- Glyph of Renewed Life
312 [41539] = 1, -- Glyph of Stormstrike
313 [41518] = 1, -- Glyph of Chain Lightning
314 [41530] = 1, -- Glyph of Fire Nova
315 [43388] = 1, -- Glyph of Water Walking
316 [41526] = 1, -- Glyph of Shocking
317 [41531] = 1, -- Glyph of Flame Shock
318 [41532] = 1, -- Glyph of Flametongue Weapon
319 [41533] = 1, -- Glyph of Healing Stream Totem
320 [41534] = 1, -- Glyph of Healing Wave
321 [41536] = 1, -- Glyph of Lightning Bolt
322 [41537] = 1, -- Glyph of Lightning Shield
323 [41540] = 1, -- Glyph of Lava Lash
324 [41541] = 1, -- Glyph of Water Shield
325 [41547] = 1, -- Glyph of Frost Shock
326 [43386] = 1, -- Glyph of the Arctic Wolf
327 [43725] = 1, -- Glyph of Ghost Wolf
328 [45770] = 1, -- Glyph of Thunder
329 [45775] = 1, -- Glyph of Earth Shield
330 },
331 },
332 ["Glyphs (Warlock)"] = {
333 version = 1,
334 items = {
335 [45782] = 1, -- Glyph of Demonic Circle
336 [45783] = 1, -- Glyph of Shadowflame
337 [45779] = 1, -- Glyph of Haunt
338 [45780] = 1, -- Glyph of Metamorphosis
339 [45781] = 1, -- Glyph of Chaos Bolt
340 [43394] = 1, -- Glyph of Souls
341 [42453] = 1, -- Glyph of Incinerate
342 [42457] = 1, -- Glyph of Death Coil
343 [42463] = 1, -- Glyph of Howl of Terror
344 [42466] = 1, -- Glyph of Soul Swap
345 [42460] = 1, -- Glyph of Felhunter
346 [43393] = 1, -- Glyph of Enslave Demon
347 [42468] = 1, -- Glyph of Shadowburn
348 [43392] = 1, -- Glyph of Curse of Exhaustion
349 [42454] = 1, -- Glyph of Conflagrate
350 [42455] = 1, -- Glyph of Corruption
351 [42456] = 1, -- Glyph of Bane of Agony
352 [42458] = 1, -- Glyph of Fear
353 [42459] = 1, -- Glyph of Felguard
354 [42461] = 1, -- Glyph of Health Funnel
355 [42462] = 1, -- Glyph of Healthstone
356 [42464] = 1, -- Glyph of Immolate
357 [42465] = 1, -- Glyph of Imp
358 [42467] = 1, -- Glyph of Shadow Bolt
359 [42470] = 1, -- Glyph of Soulstone
360 [42471] = 1, -- Glyph of Seduction
361 [42472] = 1, -- Glyph of Unstable Affliction
362 [42473] = 1, -- Glyph of Voidwalker
363 [43389] = 1, -- Glyph of Unending Breath
364 [43390] = 1, -- Glyph of Drain Soul
365 [43391] = 1, -- Glyph of Kilrogg
366 [45785] = 1, -- Glyph of Life Tap
367 [45789] = 1, -- Glyph of Soul Link
368 [50077] = 1, -- Glyph of Lash of Pain
369 },
370 },
371 ["Glyphs (Warrior)"] = {
372 version = 1,
373 items = {
374 [63481] = 1, -- Glyph of Colossus Smash
375 [43418] = 1, -- Glyph of Heroic Throw
376 [43419] = 1, -- Glyph of Intervene
377 [45790] = 1, -- Glyph of Bladestorm
378 [45792] = 1, -- Glyph of Shockwave
379 [49084] = 1, -- Glyph of Command
380 [45795] = 1, -- Glyph of Spell Reflection
381 [43396] = 1, -- Glyph of Berserker Rage
382 [43398] = 1, -- Glyph of Demoralizing Shout
383 [67482] = 1, -- Glyph of Intercept
384 [45797] = 1, -- Glyph of Shield Wall
385 [43423] = 1, -- Glyph of Slam
386 [45794] = 1, -- Glyph of Intimidating Shout
387 [43424] = 1, -- Glyph of Revenge
388 [43415] = 1, -- Glyph of Devastate
389 [43432] = 1, -- Glyph of Raging Blow
390 [67483] = 1, -- Glyph of Death Wish
391 [43428] = 1, -- Glyph of Sweeping Strikes
392 [43395] = 1, -- Glyph of Battle
393 [43397] = 1, -- Glyph of Long Charge
394 [43399] = 1, -- Glyph of Thunder Clap
395 [43400] = 1, -- Glyph of Enduring Victory
396 [43412] = 1, -- Glyph of Bloody Healing
397 [43413] = 1, -- Glyph of Rapid Charge
398 [43414] = 1, -- Glyph of Cleaving
399 [43416] = 1, -- Glyph of Bloodthirst
400 [43417] = 1, -- Glyph of Piercing Howl
401 [43421] = 1, -- Glyph of Mortal Strike
402 [43422] = 1, -- Glyph of Overpower
403 [43425] = 1, -- Glyph of Shield Slam
404 [43427] = 1, -- Glyph of Sunder Armor
405 [43430] = 1, -- Glyph of Resonating Power
406 [43431] = 1, -- Glyph of Victory Rush
407 [45793] = 1, -- Glyph of Furious Sundering
408 },
409 },
410 -- Epic gems (WotLK)
411 -- Source: http://www.wowhead.com/items=3?filter=na=Ametrine;cr=87;crs=12;crv=0
412 ["Epic Gems (Ametrine)"] = {
413 version = 1,
414 items = {
415 [40142] = 1, -- Inscribed Ametrine
416 [40144] = 1, -- Champion's Ametrine
417 [40145] = 1, -- Resplendent Ametrine
418 [40146] = 1, -- Fierce Ametrine
419 [40147] = 1, -- Deadly Ametrine
420 [40149] = 1, -- Lucent Ametrine
421 [40150] = 1, -- Deft Ametrine
422 [40152] = 1, -- Potent Ametrine
423 [40154] = 1, -- Willful Ametrine
424 [40155] = 1, -- Reckless Ametrine
425 [40156] = 1, -- Deadly Ametrine
426 [40158] = 1, -- Lucent Ametrine
427 [40159] = 1, -- Deft Ametrine
428 [40160] = 1, -- Stalwart Ametrine
429 [40161] = 1, -- Stalwart Ametrine
430 [40163] = 1, -- Resolute Ametrine
431 },
432 },
433 ["Epic Gems (Cardinal Ruby)"] = {
434 version = 1,
435 items = {
436 [40111] = 1, -- Bold Cardinal Ruby
437 [40112] = 1, -- Delicate Cardinal Ruby
438 [40113] = 1, -- Brilliant Cardinal Ruby
439 [40114] = 1, -- Delicate Cardinal Ruby
440 [40116] = 1, -- Flashing Cardinal Ruby
441 [40118] = 1, -- Precise Cardinal Ruby
442 [40123] = 1, -- Brilliant Cardinal Ruby
443 },
444 },
445 ["Epic Gems (Dreadstone)"] = {
446 version = 1,
447 items = {
448 [40129] = 1, -- Sovereign Dreadstone
449 [40130] = 1, -- Shifting Dreadstone
450 [40131] = 1, -- Glinting Dreadstone
451 [40132] = 1, -- Timeless Dreadstone
452 [40133] = 1, -- Purified Dreadstone
453 [40134] = 1, -- Purified Dreadstone
454 [40135] = 1, -- Mysterious Dreadstone
455 [40136] = 1, -- Shifting Dreadstone
456 [40137] = 1, -- Glinting Dreadstone
457 [40139] = 1, -- Defender's Dreadstone
458 [40141] = 1, -- Guardian's Dreadstone
459 [40143] = 1, -- Etched Dreadstone
460 [40148] = 1, -- Glinting Dreadstone
461 [40151] = 1, -- Purified Dreadstone
462 [40153] = 1, -- Veiled Dreadstone
463 [40157] = 1, -- Glinting Dreadstone
464 [40162] = 1, -- Accurate Dreadstone
465 [40164] = 1, -- Timeless Dreadstone
466 [40170] = 1, -- Purified Dreadstone
467 [40175] = 1, -- Purified Dreadstone
468 },
469 },
470 ["Epic Gems (Eye of Zul)"] = {
471 version = 1,
472 items = {
473 [40138] = 1, -- Regal Eye of Zul
474 [40140] = 1, -- Jagged Eye of Zul
475 [40165] = 1, -- Jagged Eye of Zul
476 [40166] = 1, -- Nimble Eye of Zul
477 [40167] = 1, -- Regal Eye of Zul
478 [40168] = 1, -- Steady Eye of Zul
479 [40169] = 1, -- Forceful Eye of Zul
480 [40171] = 1, -- Misty Eye of Zul
481 [40172] = 1, -- Lightning Eye of Zul
482 [40173] = 1, -- Turbid Eye of Zul
483 [40174] = 1, -- Energized Eye of Zul
484 [40176] = 1, -- Misty Eye of Zul
485 [40177] = 1, -- Lightning Eye of Zul
486 [40178] = 1, -- Turbid Eye of Zul
487 [40179] = 1, -- Energized Eye of Zul
488 [40180] = 1, -- Radiant Eye of Zul
489 [40181] = 1, -- Radiant Eye of Zul
490 [40182] = 1, -- Shattered Eye of Zul
491 },
492 },
493 ["Epic Gems (King's Amber)"] = {
494 version = 1,
495 items = {
496 [40115] = 1, -- Subtle King's Amber
497 [40117] = 1, -- Smooth King's Amber
498 [40124] = 1, -- Smooth King's Amber
499 [40126] = 1, -- Subtle King's Amber
500 [40127] = 1, -- Mystic King's Amber
501 [40128] = 1, -- Quick King's Amber
502 },
503 },
504 ["Epic Gems (Majestic Zircon)"] = {
505 version = 1,
506 items = {
507 [40119] = 1, -- Solid Majestic Zircon
508 [40120] = 1, -- Sparkling Majestic Zircon
509 [40121] = 1, -- Sparkling Majestic Zircon
510 [40122] = 1, -- Stormy Majestic Zircon
511 [40125] = 1, -- Rigid Majestic Zircon
512 },
513 },
514 -- Rare gems (WotLK)
515 -- Enchants (WotLK)
516 -- Enchants (Heirlooms)
517 -- Source: manual retrieved from Wowhead
518 ["Enchants (Heirlooms)"] = {
519 version = 1,
520 items = {
521 [38873] = 1, -- Enchant Weapon - Crusader
522 [38838] = 1, -- Enchant Weapon - Fiery Weapon
523 [38896] = 1, -- Enchant Weapon - 2H Weapon - Agility
524 [38880] = 1, -- Enchant Weapon - Agility
525 [38877] = 1, -- Enchant Weapon - Spellpower
526 [38878] = 1, -- Enchant Weapon - Healing Power
527 [38884] = 1, -- Enchant Weapon - Mighty Intellect
528 [38879] = 1, -- Enchant Weapon - Strength
529 [38868] = 1, -- Enchant Weapon - Icy Chill
530 [38871] = 1, -- Enchant Weapon - Lifestealing
531 [38883] = 1, -- Enchant Weapon - Mighty Spirit
532 [38879] = 1, -- Enchant Weapon - Strength
533 [38865] = 1, -- Enchant Chest - Greater Stats
534 [38866] = 1, -- Enchant Chest - Major Health
535 [38847] = 1, -- Enchant Chest - Stats
536 [38867] = 1, -- Enchant Chest - Major Mana
537 },
538 },
539 --Enchant Chest – Major Resilience
540 --Enchant Weapon – Mongoose
541 --Enchant Weapon – Blade Ward
542 --Enchant Weapon – Blood Draining
543 };