comparison Data/PremadeGroups.lua @ 161:fcc95c62d232

Premade groups can now be combined into a single group to allow easier adding of a combination (e.g. all glyphs at once).
author Zerotorescue
date Sun, 23 Jan 2011 18:24:00 +0100
parents 9027cf1810f4
children 51c424ded3bc
comparison
equal deleted inserted replaced
160:08b887885bd5 161:fcc95c62d232
13 -- Do not forget to increment the version number of the group when updating a group 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 - 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) 15 -- without this, manually removed items would be re-imported again, which we do not want)
16 16
17 addon.defaultGroups = { 17 addon.defaultGroups = {
18 ["Inscription - Glyphs (All)"] = {
19 ["version"] = 1,
20 ["isParent"] = true,
21 ["childs"] = {
22 "Inscription - Glyphs by class - Death Knight",
23 "Inscription - Glyphs by class - Druid",
24 "Inscription - Glyphs by class - Hunter",
25 "Inscription - Glyphs by class - Mage",
26 "Inscription - Glyphs by class - Paladin",
27 "Inscription - Glyphs by class - Priest",
28 "Inscription - Glyphs by class - Rogue",
29 "Inscription - Glyphs by class - Shaman",
30 "Inscription - Glyphs by class - Warlock",
31 "Inscription - Glyphs by class - Warrior",
32 },
33 },
18 -- Glyphs by class 34 -- Glyphs by class
19 -- Source: http://www.wowhead.com/items=16.6?filter=cr=87;crs=12;crv=0 35 -- Source: http://www.wowhead.com/items=16.6?filter=cr=87;crs=12;crv=0
20 ["Inscription - Glyphs by class - Death Knight"] = { 36 ["Inscription - Glyphs by class - Death Knight"] = {
21 version = 1, 37 ["version"] = 1,
22 items = { 38 ["items"] = {
23 [43533] = 1, -- Glyph of Anti-Magic Shell 39 [43533] = 1, -- Glyph of Anti-Magic Shell
24 [43534] = 1, -- Glyph of Heart Strike 40 [43534] = 1, -- Glyph of Heart Strike
25 [43535] = 1, -- Glyph of Blood Tap 41 [43535] = 1, -- Glyph of Blood Tap
26 [43536] = 1, -- Glyph of Bone Shield 42 [43536] = 1, -- Glyph of Bone Shield
27 [43537] = 1, -- Glyph of Chains of Ice 43 [43537] = 1, -- Glyph of Chains of Ice
50 [45804] = 1, -- Glyph of Death Coil 66 [45804] = 1, -- Glyph of Death Coil
51 [45806] = 1, -- Glyph of Howling Blast 67 [45806] = 1, -- Glyph of Howling Blast
52 }, 68 },
53 }, 69 },
54 ["Inscription - Glyphs by class - Druid"] = { 70 ["Inscription - Glyphs by class - Druid"] = {
55 version = 2, 71 ["version"] = 2,
56 items = { 72 ["items"] = {
57 [45604] = 1, -- Glyph of Savage Roar 73 [45604] = 1, -- Glyph of Savage Roar
58 [40921] = 1, -- Glyph of Starfall 74 [40921] = 1, -- Glyph of Starfall
59 [44928] = 1, -- Glyph of Focus 75 [44928] = 1, -- Glyph of Focus
60 [45601] = 1, -- Glyph of Berserk 76 [45601] = 1, -- Glyph of Berserk
61 [67484] = 1, -- Glyph of Lacerate 77 [67484] = 1, -- Glyph of Lacerate
96 [67487] = 1, -- Glyph of Tiger's Fury 112 [67487] = 1, -- Glyph of Tiger's Fury
97 [68039] = 2, -- Glyph of the Treant 113 [68039] = 2, -- Glyph of the Treant
98 }, 114 },
99 }, 115 },
100 ["Inscription - Glyphs by class - Hunter"] = { 116 ["Inscription - Glyphs by class - Hunter"] = {
101 version = 1, 117 ["version"] = 1,
102 items = { 118 ["items"] = {
103 [42904] = 1, -- Glyph of Disengage 119 [42904] = 1, -- Glyph of Disengage
104 [42907] = 1, -- Glyph of Misdirection 120 [42907] = 1, -- Glyph of Misdirection
105 [45733] = 1, -- Glyph of Master's Call 121 [45733] = 1, -- Glyph of Master's Call
106 [45625] = 1, -- Glyph of Chimera Shot 122 [45625] = 1, -- Glyph of Chimera Shot
107 [42913] = 1, -- Glyph of Snake Trap 123 [42913] = 1, -- Glyph of Snake Trap
132 [45731] = 1, -- Glyph of Explosive Shot 148 [45731] = 1, -- Glyph of Explosive Shot
133 [45735] = 1, -- Glyph of Raptor Strike 149 [45735] = 1, -- Glyph of Raptor Strike
134 }, 150 },
135 }, 151 },
136 ["Inscription - Glyphs by class - Mage"] = { 152 ["Inscription - Glyphs by class - Mage"] = {
137 version = 1, 153 ["version"] = 1,
138 items = { 154 ["items"] = {
139 [45739] = 1, -- Glyph of Mirror Image 155 [45739] = 1, -- Glyph of Mirror Image
140 [42748] = 1, -- Glyph of Invisibility 156 [42748] = 1, -- Glyph of Invisibility
141 [42736] = 1, -- Glyph of Arcane Power 157 [42736] = 1, -- Glyph of Arcane Power
142 [45736] = 1, -- Glyph of Deep Freeze 158 [45736] = 1, -- Glyph of Deep Freeze
143 [63539] = 1, -- Glyph of Living Bomb 159 [63539] = 1, -- Glyph of Living Bomb
170 [45738] = 1, -- Glyph of Arcane Barrage 186 [45738] = 1, -- Glyph of Arcane Barrage
171 [44955] = 1, -- Glyph of Arcane Blast 187 [44955] = 1, -- Glyph of Arcane Blast
172 }, 188 },
173 }, 189 },
174 ["Inscription - Glyphs by class - Paladin"] = { 190 ["Inscription - Glyphs by class - Paladin"] = {
175 version = 1, 191 ["version"] = 1,
176 items = { 192 ["items"] = {
177 [41102] = 1, -- Glyph of Turn Evil 193 [41102] = 1, -- Glyph of Turn Evil
178 [41107] = 1, -- Glyph of the Ascetic Crusader 194 [41107] = 1, -- Glyph of the Ascetic Crusader
179 [41109] = 1, -- Glyph of Light of Dawn 195 [41109] = 1, -- Glyph of Light of Dawn
180 [45747] = 1, -- Glyph of Salvation 196 [45747] = 1, -- Glyph of Salvation
181 [43369] = 1, -- Glyph of Justice 197 [43369] = 1, -- Glyph of Justice
210 [45746] = 1, -- Glyph of Holy Shock 226 [45746] = 1, -- Glyph of Holy Shock
211 [66918] = 1, -- Glyph of the Long Word 227 [66918] = 1, -- Glyph of the Long Word
212 }, 228 },
213 }, 229 },
214 ["Inscription - Glyphs by class - Priest"] = { 230 ["Inscription - Glyphs by class - Priest"] = {
215 version = 1, 231 ["version"] = 1,
216 items = { 232 ["items"] = {
217 [42404] = 1, -- Glyph of Mass Dispel 233 [42404] = 1, -- Glyph of Mass Dispel
218 [42407] = 1, -- Glyph of Power Word: Barrier 234 [42407] = 1, -- Glyph of Power Word: Barrier
219 [45753] = 1, -- Glyph of Dispersion 235 [45753] = 1, -- Glyph of Dispersion
220 [45755] = 1, -- Glyph of Guardian Spirit 236 [45755] = 1, -- Glyph of Guardian Spirit
221 [43374] = 1, -- Glyph of Shadowfiend 237 [43374] = 1, -- Glyph of Shadowfiend
248 [45756] = 1, -- Glyph of Penance 264 [45756] = 1, -- Glyph of Penance
249 [45758] = 1, -- Glyph of Divine Accuracy 265 [45758] = 1, -- Glyph of Divine Accuracy
250 }, 266 },
251 }, 267 },
252 ["Inscription - Glyphs by class - Rogue"] = { 268 ["Inscription - Glyphs by class - Rogue"] = {
253 version = 1, 269 ["version"] = 1,
254 items = { 270 ["items"] = {
255 [45766] = 1, -- Glyph of Fan of Knives 271 [45766] = 1, -- Glyph of Fan of Knives
256 [45767] = 1, -- Glyph of Tricks of the Trade 272 [45767] = 1, -- Glyph of Tricks of the Trade
257 [45761] = 1, -- Glyph of Vendetta 273 [45761] = 1, -- Glyph of Vendetta
258 [45762] = 1, -- Glyph of Killing Spree 274 [45762] = 1, -- Glyph of Killing Spree
259 [45764] = 1, -- Glyph of Shadow Dance 275 [45764] = 1, -- Glyph of Shadow Dance
289 [45768] = 1, -- Glyph of Mutilate 305 [45768] = 1, -- Glyph of Mutilate
290 [63420] = 1, -- Glyph of Vanish 306 [63420] = 1, -- Glyph of Vanish
291 }, 307 },
292 }, 308 },
293 ["Inscription - Glyphs by class - Shaman"] = { 309 ["Inscription - Glyphs by class - Shaman"] = {
294 version = 1, 310 ["version"] = 1,
295 items = { 311 ["items"] = {
296 [45777] = 1, -- Glyph of Hex 312 [45777] = 1, -- Glyph of Hex
297 [45771] = 1, -- Glyph of Feral Spirit 313 [45771] = 1, -- Glyph of Feral Spirit
298 [45772] = 1, -- Glyph of Riptide 314 [45772] = 1, -- Glyph of Riptide
299 [41529] = 1, -- Glyph of Fire Elemental Totem 315 [41529] = 1, -- Glyph of Fire Elemental Totem
300 [44923] = 1, -- Glyph of Thunderstorm 316 [44923] = 1, -- Glyph of Thunderstorm
329 [45770] = 1, -- Glyph of Thunder 345 [45770] = 1, -- Glyph of Thunder
330 [45775] = 1, -- Glyph of Earth Shield 346 [45775] = 1, -- Glyph of Earth Shield
331 }, 347 },
332 }, 348 },
333 ["Inscription - Glyphs by class - Warlock"] = { 349 ["Inscription - Glyphs by class - Warlock"] = {
334 version = 1, 350 ["version"] = 1,
335 items = { 351 ["items"] = {
336 [45782] = 1, -- Glyph of Demonic Circle 352 [45782] = 1, -- Glyph of Demonic Circle
337 [45783] = 1, -- Glyph of Shadowflame 353 [45783] = 1, -- Glyph of Shadowflame
338 [45779] = 1, -- Glyph of Haunt 354 [45779] = 1, -- Glyph of Haunt
339 [45780] = 1, -- Glyph of Metamorphosis 355 [45780] = 1, -- Glyph of Metamorphosis
340 [45781] = 1, -- Glyph of Chaos Bolt 356 [45781] = 1, -- Glyph of Chaos Bolt
368 [45789] = 1, -- Glyph of Soul Link 384 [45789] = 1, -- Glyph of Soul Link
369 [50077] = 1, -- Glyph of Lash of Pain 385 [50077] = 1, -- Glyph of Lash of Pain
370 }, 386 },
371 }, 387 },
372 ["Inscription - Glyphs by class - Warrior"] = { 388 ["Inscription - Glyphs by class - Warrior"] = {
373 version = 1, 389 ["version"] = 1,
374 items = { 390 ["items"] = {
375 [63481] = 1, -- Glyph of Colossus Smash 391 [63481] = 1, -- Glyph of Colossus Smash
376 [43418] = 1, -- Glyph of Heroic Throw 392 [43418] = 1, -- Glyph of Heroic Throw
377 [43419] = 1, -- Glyph of Intervene 393 [43419] = 1, -- Glyph of Intervene
378 [45790] = 1, -- Glyph of Bladestorm 394 [45790] = 1, -- Glyph of Bladestorm
379 [45792] = 1, -- Glyph of Shockwave 395 [45792] = 1, -- Glyph of Shockwave
412 428
413 429
414 -- Glyphs by inks 430 -- Glyphs by inks
415 -- Exported with a PHP script 431 -- Exported with a PHP script
416 ["Inscription - Glyphs by ink - Blackfallow Ink"] = { 432 ["Inscription - Glyphs by ink - Blackfallow Ink"] = {
417 version = 1, 433 ["version"] = 1,
418 items = { 434 ["items"] = {
419 [63481] = 1, -- Glyph of Colossus Smash 435 [63481] = 1, -- Glyph of Colossus Smash
420 }, 436 },
421 }, 437 },
422 ["Inscription - Glyphs by ink - Midnight Ink"] = { 438 ["Inscription - Glyphs by ink - Midnight Ink"] = {
423 version = 1, 439 ["version"] = 1,
424 items = { 440 ["items"] = {
425 [43418] = 1, -- Glyph of Heroic Throw 441 [43418] = 1, -- Glyph of Heroic Throw
426 [43396] = 1, -- Glyph of Berserker Rage 442 [43396] = 1, -- Glyph of Berserker Rage
427 [43395] = 1, -- Glyph of Battle 443 [43395] = 1, -- Glyph of Battle
428 [43397] = 1, -- Glyph of Long Charge 444 [43397] = 1, -- Glyph of Long Charge
429 [43399] = 1, -- Glyph of Thunder Clap 445 [43399] = 1, -- Glyph of Thunder Clap
467 [42743] = 1, -- Glyph of Pyroblast 483 [42743] = 1, -- Glyph of Pyroblast
468 [43361] = 1, -- Glyph of the Penguin 484 [43361] = 1, -- Glyph of the Penguin
469 }, 485 },
470 }, 486 },
471 ["Inscription - Glyphs by ink - Ink of the Sea"] = { 487 ["Inscription - Glyphs by ink - Ink of the Sea"] = {
472 version = 1, 488 ["version"] = 1,
473 items = { 489 ["items"] = {
474 [43419] = 1, -- Glyph of Intervene 490 [43419] = 1, -- Glyph of Intervene
475 [49084] = 1, -- Glyph of Command 491 [49084] = 1, -- Glyph of Command
476 [45794] = 1, -- Glyph of Intimidating Shout 492 [45794] = 1, -- Glyph of Intimidating Shout
477 [43415] = 1, -- Glyph of Devastate 493 [43415] = 1, -- Glyph of Devastate
478 [43412] = 1, -- Glyph of Bloody Healing 494 [43412] = 1, -- Glyph of Bloody Healing
578 [42752] = 1, -- Glyph of Polymorph 594 [42752] = 1, -- Glyph of Polymorph
579 [42753] = 1, -- Glyph of Cone of Cold 595 [42753] = 1, -- Glyph of Cone of Cold
580 }, 596 },
581 }, 597 },
582 ["Inscription - Glyphs by ink - Ethereal Ink"] = { 598 ["Inscription - Glyphs by ink - Ethereal Ink"] = {
583 version = 1, 599 ["version"] = 1,
584 items = { 600 ["items"] = {
585 [45790] = 1, -- Glyph of Bladestorm 601 [45790] = 1, -- Glyph of Bladestorm
586 [45792] = 1, -- Glyph of Shockwave 602 [45792] = 1, -- Glyph of Shockwave
587 [45795] = 1, -- Glyph of Spell Reflection 603 [45795] = 1, -- Glyph of Spell Reflection
588 [43432] = 1, -- Glyph of Raging Blow 604 [43432] = 1, -- Glyph of Raging Blow
589 [43428] = 1, -- Glyph of Sweeping Strikes 605 [43428] = 1, -- Glyph of Sweeping Strikes
650 [45738] = 1, -- Glyph of Arcane Barrage 666 [45738] = 1, -- Glyph of Arcane Barrage
651 [44955] = 1, -- Glyph of Arcane Blast 667 [44955] = 1, -- Glyph of Arcane Blast
652 }, 668 },
653 }, 669 },
654 ["Inscription - Glyphs by ink - Lion's Ink"] = { 670 ["Inscription - Glyphs by ink - Lion's Ink"] = {
655 version = 1, 671 ["version"] = 1,
656 items = { 672 ["items"] = {
657 [43398] = 1, -- Glyph of Demoralizing Shout 673 [43398] = 1, -- Glyph of Demoralizing Shout
658 [45797] = 1, -- Glyph of Shield Wall 674 [45797] = 1, -- Glyph of Shield Wall
659 [43423] = 1, -- Glyph of Slam 675 [43423] = 1, -- Glyph of Slam
660 [43417] = 1, -- Glyph of Piercing Howl 676 [43417] = 1, -- Glyph of Piercing Howl
661 [43427] = 1, -- Glyph of Sunder Armor 677 [43427] = 1, -- Glyph of Sunder Armor
702 [42737] = 1, -- Glyph of Blink 718 [42737] = 1, -- Glyph of Blink
703 [43360] = 1, -- Glyph of the Monkey 719 [43360] = 1, -- Glyph of the Monkey
704 }, 720 },
705 }, 721 },
706 ["Inscription - Glyphs by ink - Shimmering Ink"] = { 722 ["Inscription - Glyphs by ink - Shimmering Ink"] = {
707 version = 1, 723 ["version"] = 1,
708 items = { 724 ["items"] = {
709 [67482] = 1, -- Glyph of Intercept 725 [67482] = 1, -- Glyph of Intercept
710 [43416] = 1, -- Glyph of Bloodthirst 726 [43416] = 1, -- Glyph of Bloodthirst
711 [42468] = 1, -- Glyph of Shadowburn 727 [42468] = 1, -- Glyph of Shadowburn
712 [45776] = 1, -- Glyph of Shamanistic Rage 728 [45776] = 1, -- Glyph of Shamanistic Rage
713 [41541] = 1, -- Glyph of Water Shield 729 [41541] = 1, -- Glyph of Water Shield
726 [43546] = 1, -- Glyph of Icy Touch 742 [43546] = 1, -- Glyph of Icy Touch
727 [45804] = 1, -- Glyph of Death Coil 743 [45804] = 1, -- Glyph of Death Coil
728 }, 744 },
729 }, 745 },
730 ["Inscription - Glyphs by ink - Jadefire Ink"] = { 746 ["Inscription - Glyphs by ink - Jadefire Ink"] = {
731 version = 2, 747 ["version"] = 2,
732 items = { 748 ["items"] = {
733 [43424] = 1, -- Glyph of Revenge 749 [43424] = 1, -- Glyph of Revenge
734 [67483] = 1, -- Glyph of Death Wish 750 [67483] = 1, -- Glyph of Death Wish
735 [43422] = 1, -- Glyph of Overpower 751 [43422] = 1, -- Glyph of Overpower
736 [43393] = 1, -- Glyph of Enslave Demon 752 [43393] = 1, -- Glyph of Enslave Demon
737 [43392] = 1, -- Glyph of Curse of Exhaustion 753 [43392] = 1, -- Glyph of Curse of Exhaustion
766 [68039] = 2, -- Glyph of the Treant 782 [68039] = 2, -- Glyph of the Treant
767 [42897] = 2, -- Glyph of Aimed Shot 783 [42897] = 2, -- Glyph of Aimed Shot
768 }, 784 },
769 }, 785 },
770 ["Inscription - Glyphs by ink - Celestial Ink"] = { 786 ["Inscription - Glyphs by ink - Celestial Ink"] = {
771 version = 1, 787 ["version"] = 1,
772 items = { 788 ["items"] = {
773 [43414] = 1, -- Glyph of Cleaving 789 [43414] = 1, -- Glyph of Cleaving
774 [45793] = 1, -- Glyph of Furious Sundering 790 [45793] = 1, -- Glyph of Furious Sundering
775 [42466] = 1, -- Glyph of Soul Swap 791 [42466] = 1, -- Glyph of Soul Swap
776 [42470] = 1, -- Glyph of Soulstone 792 [42470] = 1, -- Glyph of Soulstone
777 [41535] = 1, -- Glyph of Totemic Recall 793 [41535] = 1, -- Glyph of Totemic Recall
798 814
799 815
800 -- Rare gems (Cataclysm) 816 -- Rare gems (Cataclysm)
801 -- Source: http://www.wowhead.com/items=3.0?filter=qu=3;minle=81;maxle=90;cr=87;crs=12;crv=0 817 -- Source: http://www.wowhead.com/items=3.0?filter=qu=3;minle=81;maxle=90;cr=87;crs=12;crv=0
802 ["Jewelcrafting - Cata Rare Gems (Inferno Ruby)"] = { 818 ["Jewelcrafting - Cata Rare Gems (Inferno Ruby)"] = {
803 version = 1, 819 ["version"] = 1,
804 items = { 820 ["items"] = {
805 [52206] = 1, -- Bold Inferno Ruby 821 [52206] = 1, -- Bold Inferno Ruby
806 [52207] = 1, -- Brilliant Inferno Ruby 822 [52207] = 1, -- Brilliant Inferno Ruby
807 [52212] = 1, -- Delicate Inferno Ruby 823 [52212] = 1, -- Delicate Inferno Ruby
808 [52216] = 1, -- Flashing Inferno Ruby 824 [52216] = 1, -- Flashing Inferno Ruby
809 [52230] = 1, -- Precise Inferno Ruby 825 [52230] = 1, -- Precise Inferno Ruby
810 }, 826 },
811 }, 827 },
812 ["Jewelcrafting - Cata Rare Gems (Ocean Sapphire)"] = { 828 ["Jewelcrafting - Cata Rare Gems (Ocean Sapphire)"] = {
813 version = 1, 829 ["version"] = 1,
814 items = { 830 ["items"] = {
815 [52235] = 1, -- Rigid Ocean Sapphire 831 [52235] = 1, -- Rigid Ocean Sapphire
816 [52242] = 1, -- Solid Ocean Sapphire 832 [52242] = 1, -- Solid Ocean Sapphire
817 [52244] = 1, -- Sparkling Ocean Sapphire 833 [52244] = 1, -- Sparkling Ocean Sapphire
818 [52246] = 1, -- Stormy Ocean Sapphire 834 [52246] = 1, -- Stormy Ocean Sapphire
819 }, 835 },
820 }, 836 },
821 ["Jewelcrafting - Cata Rare Gems (Amberjewel)"] = { 837 ["Jewelcrafting - Cata Rare Gems (Amberjewel)"] = {
822 version = 1, 838 ["version"] = 1,
823 items = { 839 ["items"] = {
824 [52219] = 1, -- Fractured Amberjewel 840 [52219] = 1, -- Fractured Amberjewel
825 [52226] = 1, -- Mystic Amberjewel 841 [52226] = 1, -- Mystic Amberjewel
826 [52232] = 1, -- Quick Amberjewel 842 [52232] = 1, -- Quick Amberjewel
827 [52241] = 1, -- Smooth Amberjewel 843 [52241] = 1, -- Smooth Amberjewel
828 [52247] = 1, -- Subtle Amberjewel 844 [52247] = 1, -- Subtle Amberjewel
829 }, 845 },
830 }, 846 },
831 ["Jewelcrafting - Cata Rare Gems (Demonseye)"] = { 847 ["Jewelcrafting - Cata Rare Gems (Demonseye)"] = {
832 version = 1, 848 ["version"] = 1,
833 items = { 849 ["items"] = {
834 [52203] = 1, -- Accurate Demonseye 850 [52203] = 1, -- Accurate Demonseye
835 [52210] = 1, -- Defender's Demonseye 851 [52210] = 1, -- Defender's Demonseye
836 [52213] = 1, -- Etched Demonseye 852 [52213] = 1, -- Etched Demonseye
837 [52217] = 1, -- Veiled Demonseye 853 [52217] = 1, -- Veiled Demonseye
838 [52220] = 1, -- Glinting Demonseye 854 [52220] = 1, -- Glinting Demonseye
843 [52243] = 1, -- Sovereign Demonseye 859 [52243] = 1, -- Sovereign Demonseye
844 [52248] = 1, -- Timeless Demonseye 860 [52248] = 1, -- Timeless Demonseye
845 }, 861 },
846 }, 862 },
847 ["Jewelcrafting - Cata Rare Gems (Dream Emerald)"] = { 863 ["Jewelcrafting - Cata Rare Gems (Dream Emerald)"] = {
848 version = 1, 864 ["version"] = 1,
849 items = { 865 ["items"] = {
850 [52218] = 1, -- Forceful Dream Emerald 866 [52218] = 1, -- Forceful Dream Emerald
851 [52223] = 1, -- Jagged Dream Emerald 867 [52223] = 1, -- Jagged Dream Emerald
852 [52225] = 1, -- Lightning Dream Emerald 868 [52225] = 1, -- Lightning Dream Emerald
853 [52227] = 1, -- Nimble Dream Emerald 869 [52227] = 1, -- Nimble Dream Emerald
854 [52228] = 1, -- Piercing Dream Emerald 870 [52228] = 1, -- Piercing Dream Emerald
858 [52245] = 1, -- Steady Dream Emerald 874 [52245] = 1, -- Steady Dream Emerald
859 [52250] = 1, -- Zen Dream Emerald 875 [52250] = 1, -- Zen Dream Emerald
860 }, 876 },
861 }, 877 },
862 ["Jewelcrafting - Cata Rare Gems (Ember Topaz)"] = { 878 ["Jewelcrafting - Cata Rare Gems (Ember Topaz)"] = {
863 version = 1, 879 ["version"] = 1,
864 items = { 880 ["items"] = {
865 [52204] = 1, -- Adept Ember Topaz 881 [52204] = 1, -- Adept Ember Topaz
866 [52205] = 1, -- Artful Ember Topaz 882 [52205] = 1, -- Artful Ember Topaz
867 [52208] = 1, -- Reckless Ember Topaz 883 [52208] = 1, -- Reckless Ember Topaz
868 [52209] = 1, -- Deadly Ember Topaz 884 [52209] = 1, -- Deadly Ember Topaz
869 [52211] = 1, -- Deft Ember Topaz 885 [52211] = 1, -- Deft Ember Topaz
879 [68357] = 1, -- Lucent Ember Topaz 895 [68357] = 1, -- Lucent Ember Topaz
880 [68358] = 1, -- Resplendent Ember Topaz 896 [68358] = 1, -- Resplendent Ember Topaz
881 }, 897 },
882 }, 898 },
883 ["Jewelcrafting - Cata Meta Gems (Shadowspirit Diamond)"] = { 899 ["Jewelcrafting - Cata Meta Gems (Shadowspirit Diamond)"] = {
884 version = 1, 900 ["version"] = 1,
885 items = { 901 ["items"] = {
886 [52289] = 1, -- Fleet Shadowspirit Diamond 902 [52289] = 1, -- Fleet Shadowspirit Diamond
887 [52291] = 1, -- Chaotic Shadowspirit Diamond 903 [52291] = 1, -- Chaotic Shadowspirit Diamond
888 [52292] = 1, -- Bracing Shadowspirit Diamond 904 [52292] = 1, -- Bracing Shadowspirit Diamond
889 [52293] = 1, -- Eternal Shadowspirit Diamond 905 [52293] = 1, -- Eternal Shadowspirit Diamond
890 [52294] = 1, -- Austere Shadowspirit Diamond 906 [52294] = 1, -- Austere Shadowspirit Diamond
902 918
903 919
904 -- Common gems (Cataclysm) 920 -- Common gems (Cataclysm)
905 -- Source: http://www.wowhead.com/items=3?filter=na=Nightstone;cr=87;crs=12;crv=0 921 -- Source: http://www.wowhead.com/items=3?filter=na=Nightstone;cr=87;crs=12;crv=0
906 ["Jewelcrafting - Cata Common Gems (Nightstone)"] = { 922 ["Jewelcrafting - Cata Common Gems (Nightstone)"] = {
907 version = 1, 923 ["version"] = 1,
908 items = { 924 ["items"] = {
909 [52152] = 1, -- Perfect Accurate Nightstone 925 [52152] = 1, -- Perfect Accurate Nightstone
910 [52153] = 1, -- Perfect Veiled Nightstone 926 [52153] = 1, -- Perfect Veiled Nightstone
911 [52154] = 1, -- Perfect Retaliating Nightstone 927 [52154] = 1, -- Perfect Retaliating Nightstone
912 [52155] = 1, -- Perfect Glinting Nightstone 928 [52155] = 1, -- Perfect Glinting Nightstone
913 [52156] = 1, -- Perfect Etched Nightstone 929 [52156] = 1, -- Perfect Etched Nightstone
929 [52104] = 1, -- Veiled Nightstone 945 [52104] = 1, -- Veiled Nightstone
930 [52105] = 1, -- Accurate Nightstone 946 [52105] = 1, -- Accurate Nightstone
931 }, 947 },
932 }, 948 },
933 ["Jewelcrafting - Cata Common Gems (Hessonite)"] = { 949 ["Jewelcrafting - Cata Common Gems (Hessonite)"] = {
934 version = 1, 950 ["version"] = 1,
935 items = { 951 ["items"] = {
936 [52139] = 1, -- Perfect Keen Hessonite 952 [52139] = 1, -- Perfect Keen Hessonite
937 [52140] = 1, -- Perfect Artful Hessonite 953 [52140] = 1, -- Perfect Artful Hessonite
938 [52141] = 1, -- Perfect Fine Hessonite 954 [52141] = 1, -- Perfect Fine Hessonite
939 [52142] = 1, -- Perfect Adept Hessonite 955 [52142] = 1, -- Perfect Adept Hessonite
940 [52143] = 1, -- Perfect Skillful Hessonite 956 [52143] = 1, -- Perfect Skillful Hessonite
960 [52117] = 1, -- Artful Hessonite 976 [52117] = 1, -- Artful Hessonite
961 [52118] = 1, -- Keen Hessonite 977 [52118] = 1, -- Keen Hessonite
962 }, 978 },
963 }, 979 },
964 ["Jewelcrafting - Cata Common Gems (Jasper)"] = { 980 ["Jewelcrafting - Cata Common Gems (Jasper)"] = {
965 version = 1, 981 ["version"] = 1,
966 items = { 982 ["items"] = {
967 [52129] = 1, -- Perfect Sensei's Jasper 983 [52129] = 1, -- Perfect Sensei's Jasper
968 [52130] = 1, -- Perfect Zen Jasper 984 [52130] = 1, -- Perfect Zen Jasper
969 [52131] = 1, -- Perfect Puissant Jasper 985 [52131] = 1, -- Perfect Puissant Jasper
970 [52132] = 1, -- Perfect Lightning Jasper 986 [52132] = 1, -- Perfect Lightning Jasper
971 [52133] = 1, -- Perfect Forceful Jasper 987 [52133] = 1, -- Perfect Forceful Jasper
985 [52127] = 1, -- Zen Jasper 1001 [52127] = 1, -- Zen Jasper
986 [52128] = 1, -- Sensei's Jasper 1002 [52128] = 1, -- Sensei's Jasper
987 }, 1003 },
988 }, 1004 },
989 ["Jewelcrafting - Cata Common Gems (Alicite)"] = { 1005 ["Jewelcrafting - Cata Common Gems (Alicite)"] = {
990 version = 1, 1006 ["version"] = 1,
991 items = { 1007 ["items"] = {
992 [52163] = 1, -- Perfect Fractured Alicite 1008 [52163] = 1, -- Perfect Fractured Alicite
993 [52164] = 1, -- Perfect Quick Alicite 1009 [52164] = 1, -- Perfect Quick Alicite
994 [52165] = 1, -- Perfect Mystic Alicite 1010 [52165] = 1, -- Perfect Mystic Alicite
995 [52166] = 1, -- Perfect Smooth Alicite 1011 [52166] = 1, -- Perfect Smooth Alicite
996 [52167] = 1, -- Perfect Subtle Alicite 1012 [52167] = 1, -- Perfect Subtle Alicite
1000 [52093] = 1, -- Quick Alicite 1016 [52093] = 1, -- Quick Alicite
1001 [52094] = 1, -- Fractured Alicite 1017 [52094] = 1, -- Fractured Alicite
1002 }, 1018 },
1003 }, 1019 },
1004 ["Jewelcrafting - Cata Common Gems (Carnelian)"] = { 1020 ["Jewelcrafting - Cata Common Gems (Carnelian)"] = {
1005 version = 1, 1021 ["version"] = 1,
1006 items = { 1022 ["items"] = {
1007 [52172] = 1, -- Perfect Precise Carnelian 1023 [52172] = 1, -- Perfect Precise Carnelian
1008 [52173] = 1, -- Perfect Brilliant Carnelian 1024 [52173] = 1, -- Perfect Brilliant Carnelian
1009 [52174] = 1, -- Perfect Flashing Carnelian 1025 [52174] = 1, -- Perfect Flashing Carnelian
1010 [52175] = 1, -- Perfect Delicate Carnelian 1026 [52175] = 1, -- Perfect Delicate Carnelian
1011 [52176] = 1, -- Perfect Bold Carnelian 1027 [52176] = 1, -- Perfect Bold Carnelian
1015 [52084] = 1, -- Brilliant Carnelian 1031 [52084] = 1, -- Brilliant Carnelian
1016 [52085] = 1, -- Precise Carnelian 1032 [52085] = 1, -- Precise Carnelian
1017 }, 1033 },
1018 }, 1034 },
1019 ["Jewelcrafting - Cata Common Gems (Zephyrite)"] = { 1035 ["Jewelcrafting - Cata Common Gems (Zephyrite)"] = {
1020 version = 1, 1036 ["version"] = 1,
1021 items = { 1037 ["items"] = {
1022 [52168] = 1, -- Perfect Rigid Zephyrite 1038 [52168] = 1, -- Perfect Rigid Zephyrite
1023 [52169] = 1, -- Perfect Stormy Zephyrite 1039 [52169] = 1, -- Perfect Stormy Zephyrite
1024 [52170] = 1, -- Perfect Sparkling Zephyrite 1040 [52170] = 1, -- Perfect Sparkling Zephyrite
1025 [52171] = 1, -- Perfect Solid Zephyrite 1041 [52171] = 1, -- Perfect Solid Zephyrite
1026 [52086] = 1, -- Solid Zephyrite 1042 [52086] = 1, -- Solid Zephyrite
1033 1049
1034 1050
1035 -- Epic gems (WotLK) 1051 -- Epic gems (WotLK)
1036 -- Source: http://www.wowhead.com/items=3?filter=na=Ametrine;cr=87;crs=12;crv=0 1052 -- Source: http://www.wowhead.com/items=3?filter=na=Ametrine;cr=87;crs=12;crv=0
1037 ["Jewelcrafting - Epic Gems (Ametrine)"] = { 1053 ["Jewelcrafting - Epic Gems (Ametrine)"] = {
1038 version = 2, 1054 ["version"] = 2,
1039 items = { 1055 ["items"] = {
1040 [40142] = 1, -- Inscribed Ametrine 1056 [40142] = 1, -- Inscribed Ametrine
1041 [40144] = 1, -- Champion's Ametrine 1057 [40144] = 1, -- Champion's Ametrine
1042 [40145] = 1, -- Resplendent Ametrine 1058 [40145] = 1, -- Resplendent Ametrine
1043 [40146] = 1, -- Fierce Ametrine 1059 [40146] = 1, -- Fierce Ametrine
1044 [40147] = 1, -- Deadly Ametrine 1060 [40147] = 1, -- Deadly Ametrine
1054 [40161] = -2, -- Stalwart Ametrine 1070 [40161] = -2, -- Stalwart Ametrine
1055 [40163] = 1, -- Resolute Ametrine 1071 [40163] = 1, -- Resolute Ametrine
1056 }, 1072 },
1057 }, 1073 },
1058 ["Jewelcrafting - Epic Gems (Cardinal Ruby)"] = { 1074 ["Jewelcrafting - Epic Gems (Cardinal Ruby)"] = {
1059 version = 2, 1075 ["version"] = 2,
1060 items = { 1076 ["items"] = {
1061 [40111] = 1, -- Bold Cardinal Ruby 1077 [40111] = 1, -- Bold Cardinal Ruby
1062 [40112] = 1, -- Delicate Cardinal Ruby 1078 [40112] = 1, -- Delicate Cardinal Ruby
1063 [40113] = 1, -- Brilliant Cardinal Ruby 1079 [40113] = 1, -- Brilliant Cardinal Ruby
1064 [40114] = -2, -- Delicate Cardinal Ruby 1080 [40114] = -2, -- Delicate Cardinal Ruby
1065 [40116] = 1, -- Flashing Cardinal Ruby 1081 [40116] = 1, -- Flashing Cardinal Ruby
1066 [40118] = 1, -- Precise Cardinal Ruby 1082 [40118] = 1, -- Precise Cardinal Ruby
1067 [40123] = -2, -- Brilliant Cardinal Ruby 1083 [40123] = -2, -- Brilliant Cardinal Ruby
1068 }, 1084 },
1069 }, 1085 },
1070 ["Jewelcrafting - Epic Gems (Dreadstone)"] = { 1086 ["Jewelcrafting - Epic Gems (Dreadstone)"] = {
1071 version = 2, 1087 ["version"] = 2,
1072 items = { 1088 ["items"] = {
1073 [40129] = 1, -- Sovereign Dreadstone 1089 [40129] = 1, -- Sovereign Dreadstone
1074 [40130] = 1, -- Shifting Dreadstone 1090 [40130] = 1, -- Shifting Dreadstone
1075 [40131] = -2, -- Glinting Dreadstone 1091 [40131] = -2, -- Glinting Dreadstone
1076 [40132] = -2, -- Timeless Dreadstone 1092 [40132] = -2, -- Timeless Dreadstone
1077 [40133] = 1, -- Purified Dreadstone 1093 [40133] = 1, -- Purified Dreadstone
1091 [40170] = -2, -- Purified Dreadstone 1107 [40170] = -2, -- Purified Dreadstone
1092 [40175] = -2, -- Purified Dreadstone 1108 [40175] = -2, -- Purified Dreadstone
1093 }, 1109 },
1094 }, 1110 },
1095 ["Jewelcrafting - Epic Gems (Eye of Zul)"] = { 1111 ["Jewelcrafting - Epic Gems (Eye of Zul)"] = {
1096 version = 2, 1112 ["version"] = 2,
1097 items = { 1113 ["items"] = {
1098 [40138] = -2, -- Regal Eye of Zul 1114 [40138] = -2, -- Regal Eye of Zul
1099 [40140] = -2, -- Jagged Eye of Zul 1115 [40140] = -2, -- Jagged Eye of Zul
1100 [40165] = 1, -- Jagged Eye of Zul 1116 [40165] = 1, -- Jagged Eye of Zul
1101 [40166] = 1, -- Nimble Eye of Zul 1117 [40166] = 1, -- Nimble Eye of Zul
1102 [40167] = 1, -- Regal Eye of Zul 1118 [40167] = 1, -- Regal Eye of Zul
1114 [40181] = -2, -- Radiant Eye of Zul 1130 [40181] = -2, -- Radiant Eye of Zul
1115 [40182] = 1, -- Shattered Eye of Zul 1131 [40182] = 1, -- Shattered Eye of Zul
1116 }, 1132 },
1117 }, 1133 },
1118 ["Jewelcrafting - Epic Gems (King's Amber)"] = { 1134 ["Jewelcrafting - Epic Gems (King's Amber)"] = {
1119 version = 2, 1135 ["version"] = 2,
1120 items = { 1136 ["items"] = {
1121 [40115] = 1, -- Subtle King's Amber 1137 [40115] = 1, -- Subtle King's Amber
1122 [40117] = -2, -- Smooth King's Amber 1138 [40117] = -2, -- Smooth King's Amber
1123 [40124] = 1, -- Smooth King's Amber 1139 [40124] = 1, -- Smooth King's Amber
1124 [40126] = -2, -- Subtle King's Amber 1140 [40126] = -2, -- Subtle King's Amber
1125 [40127] = 1, -- Mystic King's Amber 1141 [40127] = 1, -- Mystic King's Amber
1126 [40128] = 1, -- Quick King's Amber 1142 [40128] = 1, -- Quick King's Amber
1127 }, 1143 },
1128 }, 1144 },
1129 ["Jewelcrafting - Epic Gems (Majestic Zircon)"] = { 1145 ["Jewelcrafting - Epic Gems (Majestic Zircon)"] = {
1130 version = 2, 1146 ["version"] = 2,
1131 items = { 1147 ["items"] = {
1132 [40119] = 1, -- Solid Majestic Zircon 1148 [40119] = 1, -- Solid Majestic Zircon
1133 [40120] = 1, -- Sparkling Majestic Zircon 1149 [40120] = 1, -- Sparkling Majestic Zircon
1134 [40121] = -2, -- Sparkling Majestic Zircon 1150 [40121] = -2, -- Sparkling Majestic Zircon
1135 [40122] = 1, -- Stormy Majestic Zircon 1151 [40122] = 1, -- Stormy Majestic Zircon
1136 [40125] = 1, -- Rigid Majestic Zircon 1152 [40125] = 1, -- Rigid Majestic Zircon
1142 -- Rare gems (WotLK) 1158 -- Rare gems (WotLK)
1143 -- Enchants (WotLK) 1159 -- Enchants (WotLK)
1144 -- Enchants (Heirlooms) 1160 -- Enchants (Heirlooms)
1145 -- Source: manual retrieved from Wowhead 1161 -- Source: manual retrieved from Wowhead
1146 ["Enchanting - Enchants - Heirlooms"] = { 1162 ["Enchanting - Enchants - Heirlooms"] = {
1147 version = 1, 1163 ["version"] = 1,
1148 items = { 1164 ["items"] = {
1149 [38873] = 1, -- Enchant Weapon - Crusader 1165 [38873] = 1, -- Enchant Weapon - Crusader
1150 [38838] = 1, -- Enchant Weapon - Fiery Weapon 1166 [38838] = 1, -- Enchant Weapon - Fiery Weapon
1151 [38896] = 1, -- Enchant Weapon - 2H Weapon - Agility 1167 [38896] = 1, -- Enchant Weapon - 2H Weapon - Agility
1152 [38880] = 1, -- Enchant Weapon - Agility 1168 [38880] = 1, -- Enchant Weapon - Agility
1153 [38877] = 1, -- Enchant Weapon - Spellpower 1169 [38877] = 1, -- Enchant Weapon - Spellpower
1164 [38867] = 1, -- Enchant Chest - Major Mana 1180 [38867] = 1, -- Enchant Chest - Major Mana
1165 }, 1181 },
1166 }, 1182 },
1167 -- Source: http://www.wowhead.com/items=0.6?filter=na=enchant;cr=82;crs=1;crv=30300 1183 -- Source: http://www.wowhead.com/items=0.6?filter=na=enchant;cr=82;crs=1;crv=30300
1168 ["Enchanting - Enchants - Cataclysm"] = { 1184 ["Enchanting - Enchants - Cataclysm"] = {
1169 version = 2, 1185 ["version"] = 2,
1170 items = { 1186 ["items"] = {
1171 [52747] = 1, -- Enchant Weapon - Mending 1187 [52747] = 1, -- Enchant Weapon - Mending
1172 [54447] = -2, -- Enchanted Spellthread Removed in version 2 as this isn't a real enchant 1188 [54447] = -2, -- Enchanted Spellthread Removed in version 2 as this isn't a real enchant
1173 [38916] = 1, -- Scroll of Enchant Weapon - Major Spirit 1189 [38916] = 1, -- Scroll of Enchant Weapon - Major Spirit
1174 [52687] = 1, -- Enchant Gloves - Mastery 1190 [52687] = 1, -- Enchant Gloves - Mastery
1175 [52743] = 1, -- Enchant Boots - Earthen Vitality 1191 [52743] = 1, -- Enchant Boots - Earthen Vitality