-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathGemsWrath.lua
744 lines (573 loc) · 41.7 KB
/
GemsWrath.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
-- Pawn by Vger-Azjol-Nerub
-- www.vgermods.com
-- © 2006-2025 Travis Spomer. This mod is released under the Creative Commons Attribution-NonCommercial-NoDerivs 3.0 license.
-- See Readme.htm for more information.
--
-- Gem information (Wrath of the Lich King Classic)
------------------------------------------------------------
if VgerCore.IsWrath then
--========================================
-- Colored level 60 common-quality vendor gems
--========================================
local PawnGemData60Common =
{
------------------------------------------------------------
-- Red gems
------------------------------------------------------------
{ ID = 28458, R = true, Stats = { Strength = 4 } }, -- Bold Tourmaline
{ ID = 28459, R = true, Stats = { Agility = 4 } }, -- Delicate Tourmaline
{ ID = 28460, R = true, Stats = { SpellPower = 5 } }, -- Teardrop Tourmaline
{ ID = 28461, R = true, Stats = { SpellPower = 5 } }, -- Runed Tourmaline
{ ID = 28462, R = true, Stats = { Ap = 8 } }, -- Bright Tourmaline
------------------------------------------------------------
-- Yellow gems
------------------------------------------------------------
{ ID = 28466, Y = true, Stats = { Intellect = 4 } }, -- Brilliant Amber
{ ID = 28467, Y = true, Stats = { CritRating = 4 } }, -- Smooth Amber
{ ID = 28468, Y = true, Stats = { HitRating = 4 } }, -- Rigid Amber
{ ID = 28469, Y = true, Stats = { CritRating = 4 } }, -- Gleaming Amber
{ ID = 28470, Y = true, Stats = { DefenseRating = 4 } }, -- Thick Amber
------------------------------------------------------------
-- Blue gems
------------------------------------------------------------
{ ID = 28463, B = true, Stats = { Stamina = 6 } }, -- Solid Zircon
{ ID = 28464, B = true, Stats = { Spirit = 4 } }, -- Sparkling Zircon
{ ID = 28465, B = true, Stats = { Mp5 = 2 } }, -- Lustrous Zircon
}
--========================================
-- Colored level 70 uncommon-quality gems
--========================================
local PawnGemData70Uncommon =
{
------------------------------------------------------------
-- Red gems
------------------------------------------------------------
{ ID = 23094, R = true, Stats = { SpellPower = 7 } }, -- Teardrop Blood Garnet
{ ID = 23095, R = true, Stats = { Strength = 6 } }, -- Bold Blood Garnet
{ ID = 23096, R = true, Stats = { SpellPower = 7 } }, -- Runed Blood Garnet
{ ID = 23097, R = true, Stats = { Agility = 6 } }, -- Delicate Blood Garnet
{ ID = 28595, R = true, Stats = { Ap = 12 } }, -- Bright Blood Garnet
------------------------------------------------------------
-- Orange gems
------------------------------------------------------------
{ ID = 23098, R = true, Y = true, Stats = { CritRating = 3, Strength = 3 } }, -- Inscribed Flame Spessarite
{ ID = 23099, R = true, Y = true, Stats = { SpellPower = 4, Intellect = 3 } }, -- Luminous Flame Spessarite
{ ID = 23100, R = true, Y = true, Stats = { HitRating = 3, Agility = 3 } }, -- Glinting Flame Spessarite
{ ID = 23101, R = true, Y = true, Stats = { CritRating = 3, SpellPower = 4 } }, -- Potent Flame Spessarite
{ ID = 31866, R = true, Y = true, Stats = { HitRating = 3, SpellPower = 4 } }, -- Veiled Flame Spessarite
{ ID = 31869, R = true, Y = true, Stats = { CritRating = 3, Ap = 6 } }, -- Wicked Flame Spessarite
------------------------------------------------------------
-- Yellow gems
------------------------------------------------------------
{ ID = 23113, Y = true, Stats = { Intellect = 6 } }, -- Brilliant Golden Draenite
{ ID = 23114, Y = true, Stats = { CritRating = 6 } }, -- Gleaming Golden Draenite
{ ID = 23115, Y = true, Stats = { DefenseRating = 6 } }, -- Thick Golden Draenite
{ ID = 23116, Y = true, Stats = { HitRating = 6 } }, -- Rigid Golden Draenite
{ ID = 28290, Y = true, Stats = { CritRating = 6 } }, -- Smooth Golden Draenite
{ ID = 31860, Y = true, Stats = { HitRating = 6 } }, -- Great Golden Draenite
------------------------------------------------------------
-- Green gems
------------------------------------------------------------
{ ID = 23103, Y = true, B = true, Stats = { CritRating = 3, SpellPenetration = 4 } }, -- Radiant Deep Peridot
{ ID = 23104, Y = true, B = true, Stats = { CritRating = 3, Stamina = 4 } }, -- Jagged Deep Peridot
{ ID = 23105, Y = true, B = true, Stats = { DefenseRating = 3, Stamina = 4 } }, -- Enduring Deep Peridot
{ ID = 23106, Y = true, B = true, Stats = { Mp5 = 2, Intellect = 3 } }, -- Dazzling Deep Peridot
------------------------------------------------------------
-- Blue gems
------------------------------------------------------------
{ ID = 23118, B = true, Stats = { Stamina = 9 } }, -- Solid Azure Moonstone
{ ID = 23119, B = true, Stats = { Spirit = 6 } }, -- Sparkling Azure Moonstone
{ ID = 23120, B = true, Stats = { SpellPenetration = 6 } }, -- Stormy Azure Moonstone
{ ID = 23121, B = true, Stats = { Mp5 = 3 } }, -- Lustrous Azure Moonstone
------------------------------------------------------------
-- Purple gems
------------------------------------------------------------
{ ID = 23108, R = true, B = true, Stats = { SpellPower = 4, Stamina = 4 } }, -- Glowing Shadow Draenite
{ ID = 23109, R = true, B = true, Stats = { SpellPower = 4, Mp5 = 2 } }, -- Royal Shadow Draenite
{ ID = 23110, R = true, B = true, Stats = { Agility = 3, Stamina = 4 } }, -- Shifting Shadow Draenite
{ ID = 23111, R = true, B = true, Stats = { Strength = 3, Stamina = 4 } }, -- Sovereign Shadow Draenite
{ ID = 31862, R = true, B = true, Stats = { Ap = 6, Stamina = 4 } }, -- Balanced Shadow Draenite
{ ID = 31864, R = true, B = true, Stats = { Ap = 6, Mp5 = 1 } }, -- Infused Shadow Draenite
}
--========================================
-- Colored level 70 rare-quality gems
--========================================
local PawnGemData70Rare =
{
------------------------------------------------------------
-- Red gems
------------------------------------------------------------
{ ID = 24027, R = true, Stats = { Strength = 8 } }, -- Bold Living Ruby
{ ID = 24028, R = true, Stats = { Agility = 8 } }, -- Delicate Living Ruby
{ ID = 24029, R = true, Stats = { SpellPower = 9 } }, -- Teardrop Living Ruby
{ ID = 24030, R = true, Stats = { SpellDamage = 9 } }, -- Runed Living Ruby
{ ID = 24031, R = true, Stats = { Ap = 16 } }, -- Bright Living Ruby
{ ID = 24032, R = true, Stats = { DodgeRating = 8 } }, -- Subtle Living Ruby
{ ID = 24036, R = true, Stats = { ParryRating = 8 } }, -- Flashing Living Ruby
------------------------------------------------------------
-- Orange gems
------------------------------------------------------------
{ ID = 24058, R = true, Y = true, Stats = { CritRating = 4, Strength = 4 } }, -- Inscribed Noble Topaz
{ ID = 24059, R = true, Y = true, Stats = { CritRating = 4, SpellPower = 5 } }, -- Potent Noble Topaz
{ ID = 24060, R = true, Y = true, Stats = { SpellPower = 5, Intellect = 4 } }, -- Luminous Noble Topaz
{ ID = 24061, R = true, Y = true, Stats = { HitRating = 4, Agility = 4 } }, -- Glinting Noble Topaz
{ ID = 31867, R = true, Y = true, Stats = { HitRating = 4, SpellPower = 5 } }, -- Veiled Noble Topaz
{ ID = 31868, R = true, Y = true, Stats = { CritRating = 4, Ap = 8 } }, -- Wicked Noble Topaz
{ ID = 35316, R = true, Y = true, Stats = { HasteRating = 4, SpellPower = 5 } }, -- Reckless Noble Topaz
------------------------------------------------------------
-- Yellow gems
------------------------------------------------------------
{ ID = 24047, Y = true, Stats = { Intellect = 8 } }, -- Brilliant Dawnstone
{ ID = 24048, Y = true, Stats = { CritRating = 8 } }, -- Smooth Dawnstone
{ ID = 24050, Y = true, Stats = { CritRating = 8 } }, -- Gleaming Dawnstone
{ ID = 24051, Y = true, Stats = { HitRating = 8 } }, -- Rigid Dawnstone
{ ID = 24052, Y = true, Stats = { DefenseRating = 8 } }, -- Thick Dawnstone
{ ID = 24053, Y = true, Stats = { ResilienceRating = 8 } }, -- Mystic Dawnstone
{ ID = 31861, Y = true, Stats = { HitRating = 8 } }, -- Great Dawnstone
{ ID = 35315, Y = true, Stats = { HasteRating = 8 } }, -- Quick Dawnstone
------------------------------------------------------------
-- Green gems
------------------------------------------------------------
{ ID = 24062, Y = true, B = true, Stats = { DefenseRating = 4, Stamina = 6 } }, -- Enduring Talasite
{ ID = 24065, Y = true, B = true, Stats = { Intellect = 4, Mp5 = 2 } }, -- Dazzling Talasite
{ ID = 24066, Y = true, B = true, Stats = { CritRating = 4, SpellPenetration = 5 } }, -- Radiant Talasite
{ ID = 24067, Y = true, B = true, Stats = { CritRating = 4, Stamina = 6 } }, -- Jagged Talasite
{ ID = 33782, Y = true, B = true, Stats = { ResilienceRating = 4, Stamina = 6 } }, -- Steady Talasite
{ ID = 35318, Y = true, B = true, Stats = { HasteRating = 4, Stamina = 6 } }, -- Forceful Talasite
------------------------------------------------------------
-- Blue gems
------------------------------------------------------------
{ ID = 24033, B = true, Stats = { Stamina = 12 } }, -- Solid Star of Elune
{ ID = 24035, B = true, Stats = { Spirit = 8 } }, -- Sparkling Star of Elune
{ ID = 24037, B = true, Stats = { Mp5 = 4 } }, -- Lustrous Star of Elune
{ ID = 24039, B = true, Stats = { SpellPenetration = 10 } }, -- Stormy Star of Elune
------------------------------------------------------------
-- Purple gems
------------------------------------------------------------
{ ID = 24054, R = true, B = true, Stats = { Strength = 4, Stamina = 6 } }, -- Sovereign Nightseye
{ ID = 24055, R = true, B = true, Stats = { Agility = 4, Stamina = 6 } }, -- Shifting Nightseye
{ ID = 24056, R = true, B = true, Stats = { SpellPower = 5, Stamina = 6 } }, -- Glowing Nightseye
{ ID = 24057, R = true, B = true, Stats = { SpellPower = 5, Mp5 = 2 } }, -- Royal Nightseye
{ ID = 31863, R = true, B = true, Stats = { Ap = 8, Stamina = 6 } }, -- Balanced Nightseye
{ ID = 31865, R = true, B = true, Stats = { Ap = 8, Mp5 = 2 } }, -- Infused Nightseye
{ ID = 35707, R = true, B = true, Stats = { DodgeRating = 4, Stamina = 6 } }, -- Regal Nightseye
}
--========================================
-- Colored level 70 epic-quality gems
--========================================
local PawnGemData70Epic =
{
------------------------------------------------------------
-- Red gems
------------------------------------------------------------
{ ID = 32193, R = true, Stats = { Strength = 10 } }, -- Bold Crimson Spinel
{ ID = 32194, R = true, Stats = { Agility = 10 } }, -- Delicate Crimson Spinel
{ ID = 32195, R = true, Stats = { SpellPower = 12 } }, -- Teardrop Crimson Spinel
{ ID = 32196, R = true, Stats = { SpellDamage = 12 } }, -- Runed Crimson Spinel
{ ID = 32197, R = true, Stats = { Ap = 20 } }, -- Bright Crimson Spinel
{ ID = 32198, R = true, Stats = { DodgeRating = 10 } }, -- Subtle Crimson Spinel
{ ID = 32199, R = true, Stats = { ParryRating = 10 } }, -- Flashing Crimson Spinel
------------------------------------------------------------
-- Orange gems
------------------------------------------------------------
{ ID = 32217, R = true, Y = true, Stats = { CritRating = 5, Strength = 5 } }, -- Inscribed Pyrestone
{ ID = 32218, R = true, Y = true, Stats = { CritRating = 5, SpellPower = 6 } }, -- Potent Pyrestone
{ ID = 32219, R = true, Y = true, Stats = { SpellPower = 6, Intellect = 5 } }, -- Luminous Pyrestone
{ ID = 32220, R = true, Y = true, Stats = { HitRating = 5, Agility = 5 } }, -- Glinting Pyrestone
{ ID = 32221, R = true, Y = true, Stats = { HitRating = 5, SpellPower = 6 } }, -- Veiled Pyrestone
{ ID = 32222, R = true, Y = true, Stats = { CritRating = 5, Ap = 10 } }, -- Glinting Pyrestone
{ ID = 35760, R = true, Y = true, Stats = { HasteRating = 5, SpellPower = 6 } }, -- Reckless Pyrestone
------------------------------------------------------------
-- Yellow gems
------------------------------------------------------------
{ ID = 32204, Y = true, Stats = { Intellect = 10 } }, -- Brilliant Lionseye
{ ID = 32205, Y = true, Stats = { CritRating = 10 } }, -- Smooth Lionseye
{ ID = 32206, Y = true, Stats = { HitRating = 10 } }, -- Rigid Lionseye
{ ID = 32207, Y = true, Stats = { CritRating = 10 } }, -- Gleaming Lionseye
{ ID = 32208, Y = true, Stats = { DefenseRating = 10 } }, -- Thick Lionseye
{ ID = 32209, Y = true, Stats = { ResilienceRating = 10 } }, -- Mystic Lionseye
{ ID = 32210, Y = true, Stats = { HitRating = 10 } }, -- Great Lionseye
{ ID = 35761, Y = true, Stats = { HasteRating = 10 } }, -- Quick Lionseye
------------------------------------------------------------
-- Green gems
------------------------------------------------------------
{ ID = 32223, Y = true, B = true, Stats = { DefenseRating = 5, Stamina = 7 } }, -- Enduring Seaspray Emerald
{ ID = 32224, Y = true, B = true, Stats = { CritRating = 5, SpellPenetration = 6 } }, -- Radiant Seaspray Emerald
{ ID = 32225, Y = true, B = true, Stats = { Intellect = 5, Mp5 = 3 } }, -- Dazzling Seaspray Emerald
{ ID = 32226, Y = true, B = true, Stats = { CritRating = 5, Stamina = 7 } }, -- Jagged Seaspray Emerald
{ ID = 35759, Y = true, B = true, Stats = { HasteRating = 5, Stamina = 7 } }, -- Forceful Seaspray Emerald
{ ID = 35758, Y = true, B = true, Stats = { ResilienceRating = 5, Stamina = 7 } }, -- Steady Seaspray Emerald
------------------------------------------------------------
-- Blue gems
------------------------------------------------------------
{ ID = 32200, B = true, Stats = { Stamina = 15 } }, -- Solid Empyrean Sapphire
{ ID = 32201, B = true, Stats = { Spirit = 10 } }, -- Sparkling Empyrean Sapphire
{ ID = 32202, B = true, Stats = { Mp5 = 5 } }, -- Lustrous Empyrean Sapphire
{ ID = 32203, B = true, Stats = { SpellPenetration = 13 } }, -- Stormy Empyrean Sapphire
------------------------------------------------------------
-- Purple gems
------------------------------------------------------------
{ ID = 32211, R = true, B = true, Stats = { Strength = 5, Stamina = 7 } }, -- Sovereign Shadowsong Amethyst
{ ID = 32212, R = true, B = true, Stats = { Agility = 5, Stamina = 7 } }, -- Shifting Shadowsong Amethyst
{ ID = 32213, R = true, B = true, Stats = { Ap = 10, Stamina = 7 } }, -- Balanced Shadowsong Amethyst
{ ID = 32214, R = true, B = true, Stats = { Ap = 10, Mp5 = 3 } }, -- Infused Shadowsong Amethyst
{ ID = 32215, R = true, B = true, Stats = { SpellPower = 6, Stamina = 7 } }, -- Glowing Shadowsong Amethyst
{ ID = 32216, R = true, B = true, Stats = { SpellPower = 6, Mp5 = 3 } }, -- Royal Shadowsong Amethyst
{ ID = 37503, R = true, B = true, Stats = { SpellPower = 6, Spirit = 5 } }, -- Purified Shadowsong Amethyst
}
--========================================
-- Level 70 crafted meta gems
--========================================
local PawnMetaGemData70Rare =
{
{ ID = 25896, Stats = { Stamina = 18 } }, -- Powerful Earthstorm Diamond
{ ID = 25897, Stats = { SpellPower = 14 } }, -- Bracing Earthstorm Diamond
{ ID = 25898, Stats = { DefenseRating = 12 } }, -- Tenacious Earthstorm Diamond
{ ID = 25901, Stats = { Intellect = 12 } }, -- Insightful Earthstorm Diamond
{ ID = 32409, Stats = { Agility = 12 } }, -- Relentless Earthstorm Diamond
{ ID = 25890, Stats = { CritRating = 14 } }, -- Destructive Skyfire Diamond
{ ID = 25894, Stats = { Ap = 24 } }, -- Swift Skyfire Diamond
{ ID = 34220, Stats = { CritRating = 12 } }, -- Chaotic Skyfire Diamond
{ ID = 35501, Stats = { DefenseRating = 12 } }, -- Eternal Earthstorm Diamond
{ ID = 35503, Stats = { SpellPower = 14 } }, -- Ember Skyfire Diamond
}
--========================================
-- Colored level 80 uncommon-quality gems
--========================================
PawnGemData80Uncommon =
{
------------------------------------------------------------
-- Red gems
------------------------------------------------------------
{ ID = 39900, R = true, Stats = { Strength = 12 } }, -- Bold Bloodstone
{ ID = 39905, R = true, Stats = { Agility = 12 } }, -- Delicate Bloodstone
{ ID = 39906, R = true, Stats = { Ap = 24 } }, -- Bright Bloodstone
{ ID = 39907, R = true, Stats = { DodgeRating = 12 } }, -- Subtle Bloodstone
{ ID = 39908, R = true, Stats = { ParryRating = 12 } }, -- Flashing Bloodstone
{ ID = 39909, R = true, Stats = { ArmorPenetration = 12 } }, -- Fractured Bloodstone
{ ID = 39910, R = true, Stats = { ExpertiseRating = 12 } }, -- Precise Bloodstone
{ ID = 39911, R = true, Stats = { SpellPower = 14 } }, -- Runed Bloodstone
------------------------------------------------------------
-- Orange gems
------------------------------------------------------------
{ ID = 39946, R = true, Y = true, Stats = { SpellPower = 7, Intellect = 6 } }, -- Luminous Huge Citrine
{ ID = 39947, R = true, Y = true, Stats = { Strength = 6, CritRating = 6 } }, -- Inscribed Huge Citrine
{ ID = 39948, R = true, Y = true, Stats = { Strength = 6, HitRating = 6 } }, -- Etched Huge Citrine
{ ID = 39949, R = true, Y = true, Stats = { Strength = 6, DefenseRating = 6 } }, -- Champion's Huge Citrine
{ ID = 39950, R = true, Y = true, Stats = { Strength = 6, ResilienceRating = 6 } }, -- Resplendent Huge Citrine
{ ID = 39951, R = true, Y = true, Stats = { Strength = 6, HasteRating = 6 } }, -- Fierce Huge Citrine
{ ID = 39952, R = true, Y = true, Stats = { Agility = 6, CritRating = 6 } }, -- Deadly Huge Citrine
{ ID = 39953, R = true, Y = true, Stats = { Agility = 6, HitRating = 6 } }, -- Glinting Huge Citrine
{ ID = 39954, R = true, Y = true, Stats = { Agility = 6, ResilienceRating = 6 } }, -- Lucent Huge Citrine
{ ID = 39955, R = true, Y = true, Stats = { Agility = 6, HasteRating = 6 } }, -- Deft Huge Citrine
{ ID = 39956, R = true, Y = true, Stats = { SpellPower = 7, CritRating = 6 } }, -- Potent Huge Citrine
{ ID = 39957, R = true, Y = true, Stats = { SpellPower = 7, HitRating = 6 } }, -- Veiled Huge Citrine
{ ID = 39958, R = true, Y = true, Stats = { SpellPower = 7, ResilienceRating = 6 } }, -- Durable Huge Citrine
{ ID = 39959, R = true, Y = true, Stats = { SpellPower = 7, HasteRating = 6 } }, -- Reckless Huge Citrine
{ ID = 39960, R = true, Y = true, Stats = { Ap = 12, CritRating = 6 } }, -- Wicked Huge Citrine
{ ID = 39961, R = true, Y = true, Stats = { Ap = 12, HitRating = 6 } }, -- Pristine Huge Citrine
{ ID = 39962, R = true, Y = true, Stats = { Ap = 12, ResilienceRating = 6 } }, -- Empowered Huge Citrine
{ ID = 39963, R = true, Y = true, Stats = { Ap = 12, HasteRating = 6 } }, -- Stark Huge Citrine
{ ID = 39964, R = true, Y = true, Stats = { DodgeRating = 6, DefenseRating = 6 } }, -- Stalwart Huge Citrine
{ ID = 39965, R = true, Y = true, Stats = { ParryRating = 6, DefenseRating = 6 } }, -- Glimmering Huge Citrine
{ ID = 39966, R = true, Y = true, Stats = { ExpertiseRating = 6, HitRating = 6 } }, -- Accurate Huge Citrine
{ ID = 39967, R = true, Y = true, Stats = { ExpertiseRating = 6, DefenseRating = 6 } }, -- Resolute Huge Citrine
------------------------------------------------------------
-- Yellow gems
------------------------------------------------------------
{ ID = 39912, Y = true, Stats = { Intellect = 12 } }, -- Brilliant Sun Crystal
{ ID = 39914, Y = true, Stats = { CritRating = 12 } }, -- Smooth Sun Crystal
{ ID = 39915, Y = true, Stats = { HitRating = 12 } }, -- Rigid Sun Crystal
{ ID = 39916, Y = true, Stats = { DefenseRating = 12 } }, -- Thick Sun Crystal
{ ID = 39917, Y = true, Stats = { ResilienceRating = 12 } }, -- Mystic Sun Crystal
{ ID = 39918, Y = true, Stats = { HasteRating = 12 } }, -- Quick Sun Crystal
------------------------------------------------------------
-- Green gems
------------------------------------------------------------
{ ID = 39968, Y = true, B = true, Stats = { Intellect = 6, Stamina = 9 } }, -- Timeless Dark Jade
{ ID = 39974, Y = true, B = true, Stats = { CritRating = 6, Stamina = 9 } }, -- Jagged Dark Jade
{ ID = 39975, Y = true, B = true, Stats = { HitRating = 6, Stamina = 9 } }, -- Vivid Dark Jade
{ ID = 39976, Y = true, B = true, Stats = { DefenseRating = 6, Stamina = 9 } }, -- Enduring Dark Jade
{ ID = 39977, Y = true, B = true, Stats = { ResilienceRating = 6, Stamina = 9 } }, -- Steady Dark Jade
{ ID = 39978, Y = true, B = true, Stats = { HasteRating = 6, Stamina = 9 } }, -- Forceful Dark Jade
{ ID = 39979, Y = true, B = true, Stats = { Intellect = 6, Spirit = 6 } }, -- Seer's Dark Jade
{ ID = 39980, Y = true, B = true, Stats = { CritRating = 6, Spirit = 6 } }, -- Misty Dark Jade
{ ID = 39981, Y = true, B = true, Stats = { HitRating = 6, Spirit = 6 } }, -- Shining Dark Jade
{ ID = 39982, Y = true, B = true, Stats = { ResilienceRating = 6, Spirit = 6 } }, -- Turbid Dark Jade
{ ID = 39983, Y = true, B = true, Stats = { HasteRating = 6, Spirit = 6 } }, -- Intricate Dark Jade
{ ID = 39984, Y = true, B = true, Stats = { Intellect = 6, Mp5 = 3 } }, -- Dazzling Dark Jade
{ ID = 39985, Y = true, B = true, Stats = { CritRating = 6, Mp5 = 3 } }, -- Sundered Dark Jade
{ ID = 39986, Y = true, B = true, Stats = { HitRating = 6, Mp5 = 3 } }, -- Lambent Dark Jade
{ ID = 39988, Y = true, B = true, Stats = { ResilienceRating = 6, Mp5 = 3 } }, -- Opaque Dark Jade
{ ID = 39989, Y = true, B = true, Stats = { HasteRating = 6, Mp5 = 3 } }, -- Energized Dark Jade
{ ID = 39990, Y = true, B = true, Stats = { CritRating = 6, SpellPenetration = 8 } }, -- Radiant Dark Jade
{ ID = 39991, Y = true, B = true, Stats = { HitRating = 6, SpellPenetration = 8 } }, -- Tense Dark Jade
{ ID = 39992, Y = true, B = true, Stats = { HasteRating = 6, SpellPenetration = 8 } }, -- Shattered Dark Jade
------------------------------------------------------------
-- Blue gems
------------------------------------------------------------
{ ID = 39919, B = true, Stats = { Stamina = 18 } }, -- Solid Chalcedony
{ ID = 39920, B = true, Stats = { Spirit = 12 } }, -- Sparkling Chalcedony
{ ID = 39927, B = true, Stats = { Mp5 = 6 } }, -- Lustrous Chalcedony
{ ID = 39932, B = true, Stats = { SpellPenetration = 15 } }, -- Stormy Chalcedony
------------------------------------------------------------
-- Purple gems
------------------------------------------------------------
{ ID = 39933, R = true, B = true, Stats = { ArmorPenetration = 6, Stamina = 9 } }, -- Puissant Shadow Crystal
{ ID = 39934, R = true, B = true, Stats = { Strength = 6, Stamina = 9 } }, -- Sovereign Shadow Crystal
{ ID = 39935, R = true, B = true, Stats = { Agility = 6, Stamina = 9 } }, -- Shifting Shadow Crystal
{ ID = 39936, R = true, B = true, Stats = { SpellPower = 7, Stamina = 9 } }, -- Glowing Shadow Crystal
{ ID = 39937, R = true, B = true, Stats = { Ap = 12, Stamina = 9 } }, -- Balanced Shadow Crystal
{ ID = 39938, R = true, B = true, Stats = { DodgeRating = 6, Stamina = 9 } }, -- Regal Shadow Crystal
{ ID = 39939, R = true, B = true, Stats = { ParryRating = 6, Stamina = 9 } }, -- Defender's Shadow Crystal
{ ID = 39940, R = true, B = true, Stats = { ExpertiseRating = 6, Stamina = 9 } }, -- Guardian's Shadow Crystal
{ ID = 39941, R = true, B = true, Stats = { SpellPower = 7, Spirit = 6 } }, -- Purified Shadow Crystal
{ ID = 39942, R = true, B = true, Stats = { Agility = 6, Mp5 = 3 } }, -- Tenuous Shadow Crystal
{ ID = 39943, R = true, B = true, Stats = { SpellPower = 7, Mp5 = 3 } }, -- Royal Shadow Crystal
{ ID = 39944, R = true, B = true, Stats = { Ap = 12, Mp5 = 3 } }, -- Infused Shadow Crystal
{ ID = 39945, R = true, B = true, Stats = { SpellPower = 7, SpellPenetration = 8 } }, -- Mysterious Shadow Crystal
}
--========================================
-- Colored level 80 rare-quality gems
--========================================
PawnGemData80Rare =
{
------------------------------------------------------------
-- Red gems
------------------------------------------------------------
{ ID = 39996, R = true, Stats = { Strength = 16 } }, -- Bold Scarlet Ruby
{ ID = 39997, R = true, Stats = { Agility = 16 } }, -- Delicate Scarlet Ruby
{ ID = 39998, R = true, Stats = { SpellPower = 19 } }, -- Runed Scarlet Ruby
{ ID = 39999, R = true, Stats = { Ap = 32 } }, -- Bright Scarlet Ruby
{ ID = 40000, R = true, Stats = { DodgeRating = 16 } }, -- Subtle Scarlet Ruby
{ ID = 40001, R = true, Stats = { ParryRating = 16 } }, -- Flashing Scarlet Ruby
{ ID = 40002, R = true, Stats = { ArmorPenetration = 16 } }, -- Fractured Scarlet Ruby
{ ID = 40003, R = true, Stats = { ExpertiseRating = 16 } }, -- Precise Scarlet Ruby
------------------------------------------------------------
-- Orange gems
------------------------------------------------------------
{ ID = 40037, R = true, Y = true, Stats = { Strength = 8, CritRating = 8 } }, -- Inscribed Monarch Topaz
{ ID = 40038, R = true, Y = true, Stats = { Strength = 8, HitRating = 8 } }, -- Etched Monarch Topaz
{ ID = 40039, R = true, Y = true, Stats = { Strength = 8, DefenseRating = 8 } }, -- Champion's Monarch Topaz
{ ID = 40040, R = true, Y = true, Stats = { Strength = 8, ResilienceRating = 8 } }, -- Resplendent Monarch Topaz
{ ID = 40041, R = true, Y = true, Stats = { Strength = 8, HasteRating = 8 } }, -- Fierce Monarch Topaz
{ ID = 40043, R = true, Y = true, Stats = { Agility = 8, CritRating = 8 } }, -- Deadly Monarch Topaz
{ ID = 40044, R = true, Y = true, Stats = { Agility = 8, HitRating = 8 } }, -- Glinting Monarch Topaz
{ ID = 40045, R = true, Y = true, Stats = { Agility = 8, ResilienceRating = 8 } }, -- Lucent Monarch Topaz
{ ID = 40046, R = true, Y = true, Stats = { Agility = 8, HasteRating = 8 } }, -- Deft Monarch Topaz
{ ID = 40047, R = true, Y = true, Stats = { SpellPower = 9, Intellect = 8 } }, -- Luminous Monarch Topaz
{ ID = 40048, R = true, Y = true, Stats = { SpellPower = 9, CritRating = 8 } }, -- Potent Monarch Topaz
{ ID = 40049, R = true, Y = true, Stats = { SpellPower = 9, HitRating = 8 } }, -- Veiled Monarch Topaz
{ ID = 40050, R = true, Y = true, Stats = { SpellPower = 9, ResilienceRating = 8 } }, -- Durable Monarch Topaz
{ ID = 40051, R = true, Y = true, Stats = { SpellPower = 9, HasteRating = 8 } }, -- Reckless Monarch Topaz
{ ID = 40052, R = true, Y = true, Stats = { Ap = 16, CritRating = 8 } }, -- Wicked Monarch Topaz
{ ID = 40053, R = true, Y = true, Stats = { Ap = 16, HitRating = 8 } }, -- Pristine Monarch Topaz
{ ID = 40054, R = true, Y = true, Stats = { Ap = 16, ResilienceRating = 8 } }, -- Empowered Monarch Topaz
{ ID = 40055, R = true, Y = true, Stats = { Ap = 16, HasteRating = 8 } }, -- Stark Monarch Topaz
{ ID = 40056, R = true, Y = true, Stats = { DodgeRating = 8, DefenseRating = 8 } }, -- Stalwart Monarch Topaz
{ ID = 40057, R = true, Y = true, Stats = { ParryRating = 8, DefenseRating = 8 } }, -- Glimmering Monarch Topaz
{ ID = 40058, R = true, Y = true, Stats = { ExpertiseRating = 8, HitRating = 8 } }, -- Accurate Monarch Topaz
{ ID = 40059, R = true, Y = true, Stats = { ExpertiseRating = 8, DefenseRating = 8 } }, -- Resolute Monarch Topaz
------------------------------------------------------------
-- Yellow gems
------------------------------------------------------------
{ ID = 40012, Y = true, Stats = { Intellect = 16 } }, -- Brilliant Autumn's Glow
{ ID = 40013, Y = true, Stats = { CritRating = 16 } }, -- Smooth Autumn's Glow
{ ID = 40014, Y = true, Stats = { HitRating = 16 } }, -- Rigid Autumn's Glow
{ ID = 40015, Y = true, Stats = { DefenseRating = 16 } }, -- Thick Autumn's Glow
{ ID = 40016, Y = true, Stats = { ResilienceRating = 16 } }, -- Mystic Autumn's Glow
{ ID = 40017, Y = true, Stats = { HasteRating = 16 } }, -- Quick Autumn's Glow
------------------------------------------------------------
-- Green gems
------------------------------------------------------------
{ ID = 40085, Y = true, B = true, Stats = { Intellect = 8, Stamina = 12 } }, -- Timeless Forest Emerald
{ ID = 40086, Y = true, B = true, Stats = { CritRating = 8, Stamina = 12 } }, -- Jagged Forest Emerald
{ ID = 40088, Y = true, B = true, Stats = { HitRating = 8, Stamina = 12 } }, -- Vivid Forest Emerald
{ ID = 40089, Y = true, B = true, Stats = { DefenseRating = 8, Stamina = 12 } }, -- Enduring Forest Emerald
{ ID = 40090, Y = true, B = true, Stats = { ResilienceRating = 8, Stamina = 12 } }, -- Steady Forest Emerald
{ ID = 40091, Y = true, B = true, Stats = { HasteRating = 8, Stamina = 12 } }, -- Forceful Forest Emerald
{ ID = 40092, Y = true, B = true, Stats = { Intellect = 8, Spirit = 8 } }, -- Seer's Forest Emerald
{ ID = 40094, Y = true, B = true, Stats = { Intellect = 8, Mp5 = 4 } }, -- Dazzling Forest Emerald
{ ID = 40095, Y = true, B = true, Stats = { CritRating = 8, Spirit = 8 } }, -- Misty Forest Emerald
{ ID = 40096, Y = true, B = true, Stats = { CritRating = 8, Mp5 = 4 } }, -- Sundered Forest Emerald
{ ID = 40098, Y = true, B = true, Stats = { CritRating = 8, SpellPenetration = 10 } }, -- Radiant Forest Emerald
{ ID = 40099, Y = true, B = true, Stats = { HitRating = 8, Spirit = 8 } }, -- Shining Forest Emerald
{ ID = 40100, Y = true, B = true, Stats = { HitRating = 8, Mp5 = 4 } }, -- Lambent Forest Emerald
{ ID = 40101, Y = true, B = true, Stats = { HitRating = 8, SpellPenetration = 10 } }, -- Tense Forest Emerald
{ ID = 40102, Y = true, B = true, Stats = { ResilienceRating = 8, Spirit = 8 } }, -- Turbid Forest Emerald
{ ID = 40103, Y = true, B = true, Stats = { ResilienceRating = 8, Mp5 = 4 } }, -- Opaque Forest Emerald
{ ID = 40104, Y = true, B = true, Stats = { HasteRating = 8, Spirit = 8 } }, -- Intricate Forest Emerald
{ ID = 40105, Y = true, B = true, Stats = { HasteRating = 8, Mp5 = 4 } }, -- Energized Forest Emerald
{ ID = 40106, Y = true, B = true, Stats = { HasteRating = 8, SpellPenetration = 10 } }, -- Shattered Forest Emerald
------------------------------------------------------------
-- Blue gems
------------------------------------------------------------
{ ID = 40008, B = true, Stats = { Stamina = 24 } }, -- Solid Sky Sapphire
{ ID = 40009, B = true, Stats = { Spirit = 16 } }, -- Sparkling Sky Sapphire
{ ID = 40010, B = true, Stats = { Mp5 = 8 } }, -- Lustrous Sky Sapphire
{ ID = 40011, B = true, Stats = { SpellPenetration = 20 } }, -- Stormy Sky Sapphire
------------------------------------------------------------
-- Purple gems
------------------------------------------------------------
{ ID = 40022, R = true, B = true, Stats = { Strength = 8, Stamina = 12 } }, -- Sovereign Twilight Opal
{ ID = 40023, R = true, B = true, Stats = { Agility = 8, Stamina = 12 } }, -- Shifting Twilight Opal
{ ID = 40024, R = true, B = true, Stats = { Agility = 8, Mp5 = 4 } }, -- Tenuous Twilight Opal
{ ID = 40025, R = true, B = true, Stats = { SpellPower = 9, Stamina = 12 } }, -- Glowing Twilight Opal
{ ID = 40026, R = true, B = true, Stats = { SpellPower = 9, Spirit = 8 } }, -- Purified Twilight Opal
{ ID = 40027, R = true, B = true, Stats = { SpellPower = 9, Mp5 = 4 } }, -- Royal Twilight Opal
{ ID = 40028, R = true, B = true, Stats = { SpellPower = 9, SpellPenetration = 10 } }, -- Mysterious Twilight Opal
{ ID = 40029, R = true, B = true, Stats = { Ap = 16, Stamina = 12 } }, -- Balanced Twilight Opal
{ ID = 40030, R = true, B = true, Stats = { Ap = 16, Mp5 = 4 } }, -- Infused Twilight Opal
{ ID = 40031, R = true, B = true, Stats = { DodgeRating = 8, Stamina = 12 } }, -- Regal Twilight Opal
{ ID = 40032, R = true, B = true, Stats = { ParryRating = 8, Stamina = 12 } }, -- Defender's Twilight Opal
{ ID = 40033, R = true, B = true, Stats = { ArmorPenetration = 8, Stamina = 12 } }, -- Puissant Twilight Opal
{ ID = 40034, R = true, B = true, Stats = { ExpertiseRating = 8, Stamina = 12 } }, -- Guardian's Twilight Opal
}
--========================================
-- Colored level 80 epic-quality gems (PHASE 3)
--========================================
PawnGemData80Epic =
{
------------------------------------------------------------
-- Red gems
------------------------------------------------------------
{ ID = 40111, R = true, Stats = { Strength = 20 } }, -- Bold Cardinal Ruby
{ ID = 40112, R = true, Stats = { Agility = 20 } }, -- Delicate Cardinal Ruby
{ ID = 40113, R = true, Stats = { SpellPower = 23 } }, -- Runed Cardinal Ruby
{ ID = 40114, R = true, Stats = { Ap = 40 } }, -- Bright Cardinal Ruby
{ ID = 40115, R = true, Stats = { DodgeRating = 20 } }, -- Subtle Cardinal Ruby
{ ID = 40116, R = true, Stats = { ParryRating = 20 } }, -- Flashing Cardinal Ruby
{ ID = 40117, R = true, Stats = { ArmorPenetration = 20 } }, -- Fractured Cardinal Ruby
{ ID = 40118, R = true, Stats = { ExpertiseRating = 20 } }, -- Precise Cardinal Ruby
------------------------------------------------------------
-- Orange gems
------------------------------------------------------------
{ ID = 40142, R = true, Y = true, Stats = { Strength = 10, CritRating = 10 } }, -- Inscribed Ametrine
{ ID = 40143, R = true, Y = true, Stats = { Strength = 10, HitRating = 10 } }, -- Etched Ametrine
{ ID = 40144, R = true, Y = true, Stats = { Strength = 10, DefenseRating = 10 } }, -- Champion's Ametrine
{ ID = 40145, R = true, Y = true, Stats = { Strength = 10, ResilienceRating = 10 } }, -- Resplendent Ametrine
{ ID = 40146, R = true, Y = true, Stats = { Strength = 10, HasteRating = 10 } }, -- Fierce Ametrine
{ ID = 40147, R = true, Y = true, Stats = { Agility = 10, CritRating = 10 } }, -- Deadly Ametrine
{ ID = 40148, R = true, Y = true, Stats = { Agility = 10, HitRating = 10 } }, -- Glinting Ametrine
{ ID = 40149, R = true, Y = true, Stats = { Agility = 10, ResilienceRating = 10 } }, -- Lucent Ametrine
{ ID = 40150, R = true, Y = true, Stats = { Agility = 10, HasteRating = 10 } }, -- Deft Ametrine
{ ID = 40151, R = true, Y = true, Stats = { SpellPower = 12, Intellect = 10 } }, -- Luminous Ametrine
{ ID = 40152, R = true, Y = true, Stats = { SpellPower = 12, CritRating = 10 } }, -- Potent Ametrine
{ ID = 40153, R = true, Y = true, Stats = { SpellPower = 12, HitRating = 10 } }, -- Veiled Ametrine
{ ID = 40154, R = true, Y = true, Stats = { SpellPower = 12, ResilienceRating = 10 } }, -- Durable Ametrine
{ ID = 40155, R = true, Y = true, Stats = { SpellPower = 12, HasteRating = 10 } }, -- Reckless Ametrine
{ ID = 40156, R = true, Y = true, Stats = { Ap = 20, CritRating = 10 } }, -- Wicked Ametrine
{ ID = 40157, R = true, Y = true, Stats = { Ap = 20, HitRating = 10 } }, -- Pristine Ametrine
{ ID = 40158, R = true, Y = true, Stats = { Ap = 20, ResilienceRating = 10 } }, -- Empowered Ametrine
{ ID = 40159, R = true, Y = true, Stats = { Ap = 20, HasteRating = 10 } }, -- Stark Ametrine
{ ID = 40160, R = true, Y = true, Stats = { DodgeRating = 10, DefenseRating = 10 } }, -- Stalwart Ametrine
{ ID = 40161, R = true, Y = true, Stats = { ParryRating = 10, DefenseRating = 10 } }, -- Glimmering Ametrine
{ ID = 40162, R = true, Y = true, Stats = { ExpertiseRating = 10, HitRating = 10 } }, -- Accurate Ametrine
{ ID = 40163, R = true, Y = true, Stats = { ExpertiseRating = 10, DefenseRating = 10 } }, -- Resolute Ametrine
------------------------------------------------------------
-- Yellow gems
------------------------------------------------------------
{ ID = 40123, Y = true, Stats = { Intellect = 20 } }, -- Brilliant King's Amber
{ ID = 40124, Y = true, Stats = { CritRating = 20 } }, -- Smooth King's Amber
{ ID = 40125, Y = true, Stats = { HitRating = 20 } }, -- Rigid King's Amber
{ ID = 40126, Y = true, Stats = { DefenseRating = 20 } }, -- Thick King's Amber
{ ID = 40127, Y = true, Stats = { ResilienceRating = 20 } }, -- Mystic King's Amber
{ ID = 40128, Y = true, Stats = { HasteRating = 20 } }, -- Quick King's Amber
------------------------------------------------------------
-- Green gems
------------------------------------------------------------
{ ID = 40164, Y = true, B = true, Stats = { Intellect = 10, Stamina = 15 } }, -- Timeless Eye of Zul
{ ID = 40165, Y = true, B = true, Stats = { CritRating = 10, Stamina = 15 } }, -- Jagged Eye of Zul
{ ID = 40166, Y = true, B = true, Stats = { HitRating = 10, Stamina = 15 } }, -- Vivid Eye of Zul
{ ID = 40167, Y = true, B = true, Stats = { DefenseRating = 10, Stamina = 15 } }, -- Enduring Eye of Zul
{ ID = 40168, Y = true, B = true, Stats = { ResilienceRating = 10, Stamina = 15 } }, -- Steady Eye of Zul
{ ID = 40169, Y = true, B = true, Stats = { HasteRating = 10, Stamina = 15 } }, -- Forceful Eye of Zul
{ ID = 40170, Y = true, B = true, Stats = { Intellect = 10, Spirit = 10 } }, -- Seer's Eye of Zul
{ ID = 40171, Y = true, B = true, Stats = { CritRating = 10, Spirit = 10 } }, -- Misty Eye of Zul
{ ID = 40172, Y = true, B = true, Stats = { HitRating = 10, Spirit = 10 } }, -- Shining Eye of Zul
{ ID = 40173, Y = true, B = true, Stats = { ResilienceRating = 10, Spirit = 10 } }, -- Turbid Eye of Zul
{ ID = 40174, Y = true, B = true, Stats = { HasteRating = 10, Spirit = 10 } }, -- Intricate Eye of Zul
{ ID = 40175, Y = true, B = true, Stats = { Intellect = 10, Mp5 = 5 } }, -- Dazzling Eye of Zul
{ ID = 40176, Y = true, B = true, Stats = { CritRating = 10, Mp5 = 5 } }, -- Sundered Eye of Zul
{ ID = 40177, Y = true, B = true, Stats = { HitRating = 10, Mp5 = 5 } }, -- Lambent Eye of Zul
{ ID = 40178, Y = true, B = true, Stats = { ResilienceRating = 10, Mp5 = 5 } }, -- Opaque Eye of Zul
{ ID = 40179, Y = true, B = true, Stats = { HasteRating = 10, Mp5 = 5 } }, -- Energized Eye of Zul
{ ID = 40180, Y = true, B = true, Stats = { CritRating = 10, SpellPenetration = 13 } }, -- Radiant Eye of Zul
{ ID = 40181, Y = true, B = true, Stats = { HitRating = 10, SpellPenetration = 13 } }, -- Tense Eye of Zul
{ ID = 40182, Y = true, B = true, Stats = { HasteRating = 10, SpellPenetration = 13 } }, -- Shattered Eye of Zul
------------------------------------------------------------
-- Blue gems
------------------------------------------------------------
{ ID = 40119, B = true, Stats = { Stamina = 30 } }, -- Solid Majestic Zircon
{ ID = 40120, B = true, Stats = { Spirit = 20 } }, -- Sparkling Majestic Zircon
{ ID = 40121, B = true, Stats = { Mp5 = 10 } }, -- Lustrous Majestic Zircon
{ ID = 40122, B = true, Stats = { SpellPenetration = 25 } }, -- Stormy Majestic Zircon
------------------------------------------------------------
-- Purple gems
------------------------------------------------------------
{ ID = 40129, R = true, B = true, Stats = { Strength = 10, Stamina = 15 } }, -- Sovereign Dreadstone
{ ID = 40130, R = true, B = true, Stats = { Agility = 10, Stamina = 15 } }, -- Shifting Dreadstone
{ ID = 40131, R = true, B = true, Stats = { Agility = 10, Mp5 = 5 } }, -- Tenuous Dreadstone
{ ID = 40132, R = true, B = true, Stats = { SpellPower = 12, Stamina = 15 } }, -- Glowing Dreadstone
{ ID = 40133, R = true, B = true, Stats = { SpellPower = 12, Spirit = 10 } }, -- Purified Dreadstone
{ ID = 40134, R = true, B = true, Stats = { SpellPower = 12, Mp5 = 5 } }, -- Royal Dreadstone
{ ID = 40135, R = true, B = true, Stats = { SpellPower = 12, SpellPenetration = 13 } }, -- Mysterious Dreadstone
{ ID = 40136, R = true, B = true, Stats = { Ap = 20, Stamina = 15 } }, -- Balanced Dreadstone
{ ID = 40137, R = true, B = true, Stats = { Ap = 20, Mp5 = 5 } }, -- Infused Dreadstone
{ ID = 40138, R = true, B = true, Stats = { DodgeRating = 10, Stamina = 15 } }, -- Regal Dreadstone
{ ID = 40139, R = true, B = true, Stats = { ParryRating = 10, Stamina = 15 } }, -- Defender's Dreadstone
{ ID = 40140, R = true, B = true, Stats = { ArmorPenetration = 10, Stamina = 15 } }, -- Puissant Dreadstone
{ ID = 40141, R = true, B = true, Stats = { ExpertiseRating = 10, Stamina = 15 } }, -- Guardian's Dreadstone
}
--========================================
-- Level 80 crafted meta gems
--========================================
PawnMetaGemData80Rare =
{
------------------------------------------------------------
-- Meta gems: Earthsiege
------------------------------------------------------------
{ ID = 41380, Stats = { Stamina = 32 } }, -- Austere Earthsiege Diamond (2% Increased Armor Value from Items)
{ ID = 41381, Stats = { Ap = 42 } }, -- Persistent Earthsiege Diamond (Stun Duration Reduced by 10%)
{ ID = 41382, Stats = { SpellPower = 25 } }, -- Trenchant Earthsiege Diamond (Stun Duration Reduced by 10%)
{ ID = 41385, Stats = { Ap = 42 } }, -- Invigorating Earthsiege Diamond (Sometimes Heal on Your Crits)
{ ID = 41389, Stats = { CritRating = 21 } }, -- Beaming Earthsiege Diamond (+2% Mana)
{ ID = 41395, Stats = { SpellPower = 25 } }, -- Bracing Earthsiege Diamond (2% Reduced Threat)
{ ID = 41396, Stats = { DefenseRating = 21 } }, -- Eternal Earthsiege Diamond (+5% Shield Block Value)
{ ID = 41397, Stats = { Stamina = 32 } }, -- Powerful Earthsiege Diamond (Stun Duration Reduced by 10%)
{ ID = 41398, Stats = { Agility = 21 } }, -- Relentless Earthsiege Diamond (3% Increased Critical Damage)
{ ID = 41401, Stats = { Intellect = 21 } }, -- Insightful Earthsiege Diamond (Chance to restore mana on spellcast)
------------------------------------------------------------
-- Meta gems: Skyflare
------------------------------------------------------------
{ ID = 41285, Stats = { CritRating = 21 } }, -- Chaotic Skyflare Diamond (3% Increased Critical Damage)
{ ID = 41307, Stats = { CritRating = 25 } }, -- Destructive Skyflare Diamond (1% Spell Reflect)
{ ID = 41333, Stats = { SpellPower = 25 } }, -- Ember Skyflare Diamond (+2% Intellect)
{ ID = 41335, Stats = { CritRating = 21 } }, -- Enigmatic Skyflare Diamond (Reduces Snare/Root Duration by 10%)
{ ID = 41339, Stats = { Ap = 42 } }, -- Swift Skyflare Diamond (Minor Run Speed Increase)
{ ID = 41375, Stats = { SpellPower = 25 } }, -- Tireless Skyflare Diamond (Minor Run Speed Increase)
{ ID = 41376, Stats = { Mp5 = 11 } }, -- Revitalizing Skyflare Diamond (3% Increased Critical Healing Effect)
{ ID = 41377, Stats = { Stamina = 32 } }, -- Effulgent Skyflare Diamond (Reduce Spell Damage Taken by 2%)
{ ID = 41378, Stats = { SpellPower = 25 } }, -- Forlorn Skyflare Diamond (Silence Duration Reduced by 10%)
{ ID = 41379, Stats = { CritRating = 21 } }, -- Impassive Skyflare Diamond (Fear Duration Reduced by 10%)
{ ID = 41400, Stats = {} }, -- Thundering Skyflare Diamond (Chance to Increase Melee/Ranged Attack Speed)
}
--========================================
PawnGemQualityLevels =
{
{ 245, PawnGemData80Epic }, -- Trial of the Crusader 25 normal (PHASE 3)
{ 200, PawnGemData80Rare }, -- Heroic dungeons and Naxx 10
{ 165, PawnGemData80Uncommon }, -- Higher than any TBC gear
{ 151, PawnGemData70Epic }, -- Tier 6 (T4 / Karazhan is 115; T5 is 133; T6 is 151; Sunwell is 154)
{ 100, PawnGemData70Rare }, -- Lowest-level level 70 item; heroic dungeons
{ 90, PawnGemData70Uncommon }, -- Zangarmarsh gear gets green gems
{ 0, PawnGemData60Common }, -- Hellfire Peninsula gear gets white gems
}
PawnMetaGemQualityLevels =
{
{ 200, PawnMetaGemData80Rare },
{ 0, PawnMetaGemData70Rare },
}
PawnCogwheelQualityLevels = nil
PawnMinimumItemLevelToConsiderGems = 187
end -- if VgerCore.IsWrath