-
Notifications
You must be signed in to change notification settings - Fork 2
/
glyphs.txt
1425 lines (1424 loc) · 92.6 KB
/
glyphs.txt
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
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
43383 : { # Deprecated Glyph of the Arctic Wolf
spells = [58334],
classes = [7]
}
43336 : { # Deprecated Glyph of the Black Bear
spells = [58290],
classes = [11]
}
43384 : { # Deprecated Glyph of the Black Wolf
spells = [58335],
classes = [7]
}
43337 : { # Deprecated Glyph of the Forest Lynx
spells = [58293],
classes = [11]
}
40948 : { # Deprecated Glyph of the Red Lynx
spells = [56964, 58294],
classes = [11]
}
40484 : { # Deprecated Glyph of the White Bear
spells = [56967, 58295],
classes = [11]
}
42954 : { # Glyph of Adrenaline Rush
spells = [57112],
classes = [4]
}
42897 : { # Glyph of Aimed Shot
spells = [57231, 56994, 57173, 57174, 57175, 57180, 57176],
classes = [3]
}
42955 : { # Glyph of Ambush
spells = [57113],
classes = [4]
}
43533 : { # Glyph of Anti-Magic Shell
spells = [57207],
classes = [6]
}
43316 : { # Glyph of Aquatic Form
spells = [58286],
classes = [11]
}
45738 : { # Glyph of Arcane Barrage
spells = [64276],
classes = [8]
}
44955 : { # Glyph of Arcane Blast
spells = [56991],
classes = [8]
}
42734 : { # Glyph of Arcane Explosion
spells = [56968],
classes = [8]
}
43339 : { # Glyph of Arcane Intellect
spells = [58303],
classes = [8]
}
42735 : { # Glyph of Arcane Missiles
spells = [56971],
classes = [8]
}
42736 : { # Glyph of Arcane Power
spells = [56972],
classes = [8]
}
42898 : { # Glyph of Arcane Shot
spells = [56995],
classes = [3]
}
42901 : { # Glyph of Aspect of the Viper
spells = [56998],
classes = [3]
}
43381 : { # Glyph of Astral Recall
spells = [58329],
classes = [7]
}
41101 : { # Glyph of Avenger's Shield
spells = [57019],
classes = [2]
}
41107 : { # Glyph of Avenging Wrath
spells = [57021],
classes = [2]
}
42956 : { # Glyph of Backstab
spells = [57114],
classes = [4]
}
43420 : { # Glyph of Barbaric Insults
spells = [57151],
classes = [1]
}
45623 : { # Glyph of Barkskin
spells = [64256],
classes = [11]
}
43395 : { # Glyph of Battle
spells = [58342],
classes = [1]
}
45741 : { # Glyph of Beacon of Light
spells = [64277],
classes = [2]
}
45601 : { # Glyph of Berserk
spells = [64268],
classes = [11]
}
42902 : { # Glyph of Bestial Wrath
spells = [56999],
classes = [3]
}
42957 : { # Glyph of Blade Flurry
spells = [57115],
classes = [4]
}
45790 : { # Glyph of Bladestorm
spells = [64295],
classes = [1]
}
44920 : { # Glyph of Blast Wave
spells = [56990],
classes = [8]
}
43365 : { # Glyph of Blessing of Kings
spells = [58311],
classes = [2]
}
43340 : { # Glyph of Blessing of Might
spells = [58314],
classes = [2]
}
43366 : { # Glyph of Blessing of Wisdom
spells = [58312],
classes = [2]
}
42737 : { # Glyph of Blink
spells = [56973],
classes = [8]
}
43425 : { # Glyph of Blocking
spells = [57152],
classes = [1]
}
43826 : { # Glyph of Blood Strike
spells = [59339],
classes = [6]
}
43535 : { # Glyph of Blood Tap
spells = [57209],
classes = [6]
}
43396 : { # Glyph of Bloodrage
spells = [58343],
classes = [1]
}
43412 : { # Glyph of Bloodthirst
spells = [57153],
classes = [1]
}
43379 : { # Glyph of Blurred Speed
spells = [58323],
classes = [4]
}
43536 : { # Glyph of Bone Shield
spells = [57210],
classes = [6]
}
41517 : { # Glyph of Chain Heal
spells = [57232],
classes = [7]
}
41518 : { # Glyph of Chain Lightning
spells = [57233],
classes = [7]
}
43537 : { # Glyph of Chains of Ice
spells = [57211],
classes = [6]
}
43334 : { # Glyph of Challenging Roar
spells = [58287],
classes = [11]
}
45781 : { # Glyph of Chaos Bolt
spells = [64294],
classes = [9]
}
43397 : { # Glyph of Charge
spells = [58344],
classes = [1]
}
45625 : { # Glyph of Chimera Shot
spells = [64271],
classes = [3]
}
42396 : { # Glyph of Circle of Healing
spells = [57181],
classes = [5]
}
48720 : { # Glyph of Claw
spells = [67600],
classes = [11]
}
41104 : { # Glyph of Cleansing
spells = [57020],
classes = [2]
}
43414 : { # Glyph of Cleaving
spells = [57154],
classes = [1]
}
45769 : { # Glyph of Cloak of Shadows
spells = [64303],
classes = [4]
}
49084 : { # Glyph of Command
spells = [68166],
classes = [1]
}
42454 : { # Glyph of Conflagrate
spells = [57258],
classes = [9]
}
41099 : { # Glyph of Consecration
spells = [57023],
classes = [2]
}
43671 : { # Glyph of Corpse Explosion
spells = [57229],
classes = [6]
}
42455 : { # Glyph of Corruption
spells = [57259],
classes = [9]
}
42958 : { # Glyph of Crippling Poison
spells = [57116],
classes = [4]
}
41098 : { # Glyph of Crusader Strike
spells = [57024],
classes = [2]
}
42456 : { # Glyph of Curse of Agony
spells = [57260],
classes = [9]
}
43392 : { # Glyph of Curse of Exhaustion
spells = [58338],
classes = [9]
}
45799 : { # Glyph of Dancing Rune Weapon
spells = [64297],
classes = [6]
}
43538 : { # Glyph of Dark Command
spells = [57212],
classes = [6]
}
45804 : { # Glyph of Dark Death
spells = [64266],
classes = [6]
}
43674 : { # Glyph of Dash
spells = [59315],
classes = [11]
}
42959 : { # Glyph of Deadly Throw
spells = [57117],
classes = [4]
}
42457 : { # Glyph of Death Coil
spells = [57261],
classes = [9]
}
43541 : { # Glyph of Death Grip
spells = [57213],
classes = [6]
}
43827 : { # Glyph of Death Strike
spells = [59340],
classes = [6]
}
43542 : { # Glyph of Death and Decay
spells = [57214],
classes = [6]
}
43539 : { # Glyph of Death's Embrace
spells = [57215],
classes = [6]
}
45736 : { # Glyph of Deep Freeze
spells = [64274],
classes = [8]
}
45782 : { # Glyph of Demonic Circle
spells = [64317],
classes = [9]
}
42903 : { # Glyph of Deterrence
spells = [57000],
classes = [3]
}
43415 : { # Glyph of Devastate
spells = [57155],
classes = [1]
}
45805 : { # Glyph of Disease
spells = [64267],
classes = [6]
}
42904 : { # Glyph of Disengage
spells = [57001],
classes = [3]
}
42397 : { # Glyph of Dispel Magic
spells = [57183],
classes = [5]
}
45753 : { # Glyph of Dispersion
spells = [64280],
classes = [5]
}
43376 : { # Glyph of Distract
spells = [58324],
classes = [4]
}
45745 : { # Glyph of Divine Plea
spells = [64305],
classes = [2]
}
45743 : { # Glyph of Divine Storm
spells = [64279],
classes = [2]
}
41108 : { # Glyph of Divinity
spells = [57031],
classes = [2]
}
43390 : { # Glyph of Drain Soul
spells = [58337],
classes = [9]
}
45775 : { # Glyph of Earth Shield
spells = [64261],
classes = [7]
}
41527 : { # Glyph of Earthliving Weapon
spells = [57236],
classes = [7]
}
41552 : { # Glyph of Elemental Mastery
spells = [57250],
classes = [7]
}
43400 : { # Glyph of Enduring Victory
spells = [58347],
classes = [1]
}
45794 : { # Glyph of Enraged Regeneration
spells = [64312],
classes = [1]
}
43393 : { # Glyph of Enslave Demon
spells = [58339],
classes = [9]
}
40924 : { # Glyph of Entangling Roots
spells = [48121],
classes = [11]
}
45908 : { # Glyph of Envenom
spells = [64301],
classes = [4]
}
50045 : { # Glyph of Eternal Water
spells = [71101],
classes = [8]
}
42960 : { # Glyph of Evasion
spells = [57119],
classes = [4]
}
42961 : { # Glyph of Eviscerate
spells = [57120],
classes = [4]
}
42738 : { # Glyph of Evocation
spells = [56974],
classes = [8]
}
43416 : { # Glyph of Execution
spells = [57156],
classes = [1]
}
41103 : { # Glyph of Exorcism
spells = [57025],
classes = [2]
}
45731 : { # Glyph of Explosive Shot
spells = [64273],
classes = [3]
}
45733 : { # Glyph of Explosive Trap
spells = [64253],
classes = [3]
}
42962 : { # Glyph of Expose Armor
spells = [57121],
classes = [4]
}
42398 : { # Glyph of Fade
spells = [57184],
classes = [5]
}
43342 : { # Glyph of Fading
spells = [58317],
classes = [5]
}
45766 : { # Glyph of Fan of Knives
spells = [64315],
classes = [4]
}
42458 : { # Glyph of Fear
spells = [57262],
classes = [9]
}
42399 : { # Glyph of Fear Ward
spells = [57185],
classes = [5]
}
43351 : { # Glyph of Feign Death
spells = [58302],
classes = [3]
}
42963 : { # Glyph of Feint
spells = [57122],
classes = [4]
}
42459 : { # Glyph of Felguard
spells = [57263],
classes = [9]
}
42460 : { # Glyph of Felhunter
spells = [57264],
classes = [9]
}
45771 : { # Glyph of Feral Spirit
spells = [64288],
classes = [7]
}
42740 : { # Glyph of Fire Blast
spells = [57719],
classes = [8]
}
41529 : { # Glyph of Fire Elemental Totem
spells = [57237],
classes = [7]
}
41530 : { # Glyph of Fire Nova
spells = [57238],
classes = [7]
}
43357 : { # Glyph of Fire Ward
spells = [58305],
classes = [8]
}
42739 : { # Glyph of Fireball
spells = [56975],
classes = [8]
}
41531 : { # Glyph of Flame Shock
spells = [57239],
classes = [7]
}
41532 : { # Glyph of Flametongue Weapon
spells = [57240],
classes = [7]
}
42400 : { # Glyph of Flash Heal
spells = [57186],
classes = [5]
}
41105 : { # Glyph of Flash of Light
spells = [57026],
classes = [2]
}
44928 : { # Glyph of Focus
spells = [62162],
classes = [11]
}
43371 : { # Glyph of Fortitude
spells = [58318],
classes = [5]
}
42905 : { # Glyph of Freezing Trap
spells = [57002],
classes = [3]
}
40896 : { # Glyph of Frenzied Regeneration
spells = [56943],
classes = [11]
}
43359 : { # Glyph of Frost Armor
spells = [58306],
classes = [8]
}
42741 : { # Glyph of Frost Nova
spells = [56976],
classes = [8]
}
41547 : { # Glyph of Frost Shock
spells = [57241],
classes = [7]
}
43543 : { # Glyph of Frost Strike
spells = [57216],
classes = [6]
}
42906 : { # Glyph of Frost Trap
spells = [57003],
classes = [3]
}
43360 : { # Glyph of Frost Ward
spells = [58307],
classes = [8]
}
42742 : { # Glyph of Frostbolt
spells = [56977],
classes = [8]
}
44684 : { # Glyph of Frostfire
spells = [61677],
classes = [8]
}
42964 : { # Glyph of Garrote
spells = [57123],
classes = [4]
}
43725 : { # Glyph of Ghost Wolf
spells = [59326],
classes = [7]
}
42965 : { # Glyph of Ghostly Strike
spells = [57124],
classes = [4]
}
42966 : { # Glyph of Gouge
spells = [57125],
classes = [4]
}
40899 : { # Glyph of Growl
spells = [56944],
classes = [11]
}
45755 : { # Glyph of Guardian Spirit
spells = [64281],
classes = [5]
}
41095 : { # Glyph of Hammer of Justice
spells = [57027],
classes = [2]
}
41097 : { # Glyph of Hammer of Wrath
spells = [57028],
classes = [2]
}
45742 : { # Glyph of Hammer of the Righteous
spells = [64278],
classes = [2]
}
43417 : { # Glyph of Hamstring
spells = [57157],
classes = [1]
}
45779 : { # Glyph of Haunt
spells = [64291],
classes = [9]
}
41533 : { # Glyph of Healing Stream Totem
spells = [57242],
classes = [7]
}
40914 : { # Glyph of Healing Touch
spells = [56945],
classes = [11]
}
41534 : { # Glyph of Healing Wave
spells = [57243],
classes = [7]
}
42461 : { # Glyph of Health Funnel
spells = [57265],
classes = [9]
}
42462 : { # Glyph of Healthstone
spells = [57266],
classes = [9]
}
43534 : { # Glyph of Heart Strike
spells = [57208],
classes = [6]
}
42967 : { # Glyph of Hemorrhage
spells = [57126],
classes = [4]
}
43418 : { # Glyph of Heroic Strike
spells = [57158],
classes = [1]
}
45777 : { # Glyph of Hex
spells = [64316],
classes = [7]
}
41106 : { # Glyph of Holy Light
spells = [57029],
classes = [2]
}
42401 : { # Glyph of Holy Nova
spells = [57187],
classes = [5]
}
45746 : { # Glyph of Holy Shock
spells = [64254],
classes = [2]
}
43867 : { # Glyph of Holy Wrath
spells = [59559],
classes = [2]
}
43544 : { # Glyph of Horn of Winter
spells = [57217],
classes = [6]
}
42463 : { # Glyph of Howl of Terror
spells = [57267],
classes = [9]
}
45806 : { # Glyph of Howling Blast
spells = [64300],
classes = [6]
}
45761 : { # Glyph of Hunger for Blood
spells = [64284],
classes = [4]
}
45800 : { # Glyph of Hungering Cold
spells = [64298],
classes = [6]
}
42907 : { # Glyph of Hunter's Mark
spells = [57004],
classes = [3]
}
40920 : { # Glyph of Hurricane
spells = [56946],
classes = [11]
}
45758 : { # Glyph of Hymn of Hope
spells = [64283],
classes = [5]
}
42743 : { # Glyph of Ice Armor
spells = [56978],
classes = [8]
}
45740 : { # Glyph of Ice Barrier
spells = [64257],
classes = [8]
}
42744 : { # Glyph of Ice Block
spells = [56979],
classes = [8]
}
42745 : { # Glyph of Ice Lance
spells = [56980],
classes = [8]
}
43545 : { # Glyph of Icebound Fortitude
spells = [57218],
classes = [6]
}
43546 : { # Glyph of Icy Touch
spells = [57219],
classes = [6]
}
42746 : { # Glyph of Icy Veins
spells = [56981],
classes = [8]
}
42464 : { # Glyph of Immolate
spells = [57268],
classes = [9]
}
42908 : { # Glyph of Immolation Trap
spells = [57005],
classes = [3]
}
42465 : { # Glyph of Imp
spells = [57269],
classes = [9]
}
42453 : { # Glyph of Incinerate
spells = [57257],
classes = [9]
}
42402 : { # Glyph of Inner Fire
spells = [57188],
classes = [5]
}
40908 : { # Glyph of Innervate
spells = [56947],
classes = [11]
}
40919 : { # Glyph of Insect Swarm
spells = [56948],
classes = [11]
}
43419 : { # Glyph of Intervene
spells = [57159],
classes = [1]
}
42748 : { # Glyph of Invisibility
spells = [56983],
classes = [8]
}
41092 : { # Glyph of Judgement
spells = [57030],
classes = [2]
}
45732 : { # Glyph of Kill Shot
spells = [64304],
classes = [3]
}
45762 : { # Glyph of Killing Spree
spells = [64285],
classes = [4]
}
43391 : { # Glyph of Kilrogg
spells = [58340],
classes = [9]
}
43426 : { # Glyph of Last Stand
spells = [57166],
classes = [1]
}
41524 : { # Glyph of Lava
spells = [57234],
classes = [7]
}
41540 : { # Glyph of Lava Lash
spells = [57249],
classes = [7]
}
43367 : { # Glyph of Lay on Hands
spells = [58313],
classes = [2]
}
41535 : { # Glyph of Lesser Healing Wave
spells = [57244],
classes = [7]
}
43370 : { # Glyph of Levitate
spells = [58319],
classes = [5]
}
45785 : { # Glyph of Life Tap
spells = [64248],
classes = [9]
}
40915 : { # Glyph of Lifebloom
spells = [56949],
classes = [11]
}
41536 : { # Glyph of Lightning Bolt
spells = [57245],
classes = [7]
}
41537 : { # Glyph of Lightning Shield
spells = [57246],
classes = [7]
}
42403 : { # Glyph of Lightwell
spells = [57189],
classes = [5]
}
45737 : { # Glyph of Living Bomb
spells = [64275],
classes = [8]
}
42749 : { # Glyph of Mage Armor
spells = [56984],
classes = [8]
}
42750 : { # Glyph of Mana Gem
spells = [56985],
classes = [8]
}
41538 : { # Glyph of Mana Tide Totem
spells = [57247],
classes = [7]
}
40900 : { # Glyph of Mangle
spells = [56950],
classes = [11]
}
42404 : { # Glyph of Mass Dispel
spells = [57190],
classes = [5]
}
40897 : { # Glyph of Maul
spells = [56961],
classes = [11]
}
43350 : { # Glyph of Mend Pet
spells = [58301],
classes = [3]
}
42900 : { # Glyph of Mending
spells = [56997],
classes = [3]
}
45780 : { # Glyph of Metamorphosis
spells = [64318],
classes = [9]
}
42405 : { # Glyph of Mind Control
spells = [57191],
classes = [5]
}
42415 : { # Glyph of Mind Flay
spells = [57200],
classes = [5]
}
45757 : { # Glyph of Mind Sear
spells = [64309],
classes = [5]
}
45739 : { # Glyph of Mirror Image
spells = [64314],
classes = [8]
}
43398 : { # Glyph of Mocking Blow
spells = [58345],
classes = [1]
}
42751 : { # Glyph of Molten Armor
spells = [56986],
classes = [8]
}
45622 : { # Glyph of Monsoon
spells = [64258],
classes = [11]
}
40923 : { # Glyph of Moonfire
spells = [56951],
classes = [11]
}
43421 : { # Glyph of Mortal Strike
spells = [57160],
classes = [1]
}
42910 : { # Glyph of Multi-Shot
spells = [57007],
classes = [3]
}
45768 : { # Glyph of Mutilate
spells = [64260],
classes = [4]
}
45603 : { # Glyph of Nourish
spells = [64313],
classes = [11]
}
43547 : { # Glyph of Obliterate
spells = [57220],
classes = [6]
}
43422 : { # Glyph of Overpower
spells = [57161],
classes = [1]
}
45760 : { # Glyph of Pain Suppression
spells = [64259],
classes = [5]
}
45756 : { # Glyph of Penance
spells = [64282],
classes = [5]
}
43672 : { # Glyph of Pestilence
spells = [57230],
classes = [6]
}
43377 : { # Glyph of Pick Lock
spells = [58325],
classes = [4]
}
43343 : { # Glyph of Pick Pocket
spells = [58326],
classes = [4]
}
43548 : { # Glyph of Plague Strike
spells = [57221],
classes = [6]
}
42752 : { # Glyph of Polymorph
spells = [56987],
classes = [8]
}
43354 : { # Glyph of Possessed Strength
spells = [58300],
classes = [3]
}
42408 : { # Glyph of Power Word: Shield
spells = [57194],
classes = [5]
}
42409 : { # Glyph of Prayer of Healing
spells = [57195],
classes = [5]
}
42968 : { # Glyph of Preparation
spells = [57127],
classes = [4]
}
42410 : { # Glyph of Psychic Scream
spells = [57196],
classes = [5]
}
50077 : { # Glyph of Quick Decay
spells = [70984, 71102],
classes = [9]
}
43673 : { # Glyph of Raise Dead
spells = [57228],
classes = [6]
}
40903 : { # Glyph of Rake
spells = [56952],
classes = [11]
}
43413 : { # Glyph of Rapid Charge
spells = [57162],
classes = [1]
}
42911 : { # Glyph of Rapid Fire
spells = [57008],
classes = [3]
}
50125 : { # Glyph of Rapid Rejuvenation
spells = [71015],
classes = [11]
}
45735 : { # Glyph of Raptor Strike
spells = [64246],
classes = [3]
}
40909 : { # Glyph of Rebirth
spells = [56953],
classes = [11]
}
40912 : { # Glyph of Regrowth
spells = [56954],
classes = [11]
}
40913 : { # Glyph of Rejuvenation
spells = [56955],
classes = [11]
}
42753 : { # Glyph of Remove Curse
spells = [56988],
classes = [8]
}
43423 : { # Glyph of Rending
spells = [57163],
classes = [1]
}
42411 : { # Glyph of Renew
spells = [57197],
classes = [5]
}
43385 : { # Glyph of Renewed Life
spells = [58330],
classes = [7]
}
43430 : { # Glyph of Resonating Power
spells = [57164],
classes = [1]
}
43424 : { # Glyph of Revenge
spells = [57165],
classes = [1]
}