-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPortalsItemsDB.lua
1114 lines (1103 loc) · 37.1 KB
/
PortalsItemsDB.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
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
-- IDs of items usable for teleportation
-- Sample ["itemID"] = {12345},["Faction"] = {'ALL'},["Class"] = {'MAGE'},["TeleOrPort"] = {'T'},["isCMMOP"] = {false},["isCMWOD"] = {false},["isHearth"] = {true,},
PortalsItems = {
["itemID"] = {
-- Dalaran rings
40586, -- Band of the Kirin Tor
48954, -- Etched Band of the Kirin Tor
48955, -- Etched Loop of the Kirin Tor
48956, -- Etched Ring of the Kirin Tor
48957, -- Etched Signet of the Kirin Tor
45688, -- Inscribed Band of the Kirin Tor
45689, -- Inscribed Loop of the Kirin Tor
45690, -- Inscribed Ring of the Kirin Tor
45691, -- Inscribed Signet of the Kirin Tor
44934, -- Loop of the Kirin Tor
44935, -- Ring of the Kirin Tor
40585, -- Signet of the Kirin Tor
51560, -- Runed Band of the Kirin Tor
51558, -- Runed Loop of the Kirin Tor
51559, -- Runed Ring of the Kirin Tor
51557, -- Runed Signet of the Kirin Tor
-- Engineering Gadgets
30542, -- Dimensional Ripper - Area 52
18984, -- Dimensional Ripper - Everlook
18986, -- Ultrasafe Transporter: Gadgetzan
30544, -- Ultrasafe Transporter: Toshley's Station
48933, -- Wormhole Generator: Northrend
87215, -- Wormhole Generator: Pandaria
112059, -- Wormhole Centrifuge
-- Seasonal items
37863, -- Direbrew's Remote
21711, -- Lunar Festival Invitation
-- Miscellaneous
46874, -- Argent Crusader's Tabard
32757, -- Blessed Medallion of Karabor
35230, -- Darnarian's Scroll of Teleportation
50287, -- Boots of the Bay
52251, -- Jaina's Locket
43824, -- The Schools of Arcane Magic - Mastery
58487, -- Potion of Deepholm
65274, -- Cloak of Coordination (Horde)
65360, -- Cloak of Coordination ( )
63378, -- Hellscream's Reach Tabard
63379, -- Baradin's Wardens Tabard
64457, -- The Last Relic of Argus
63206, -- Wrap of Unity ( )
63207, -- Wrap of Unity (Horde)
63352, -- Shroud of Cooperation ( )
63353, -- Shroud of Cooperation (Horde)
95050, -- The Brassiest Knuckle (Horde)
95051, -- The Brassiest Knuckle ( )
95567, -- Kirin Tor Beacon
95568, -- Sunreaver Beacon
17690, -- Frostwolf Insignia Rank 1 (Horde)
17905, -- Frostwolf Insignia Rank 2 (Horde)
17906, -- Frostwolf Insignia Rank 3 (Horde)
17907, -- Frostwolf Insignia Rank 4 (Horde)
17908, -- Frostwolf Insignia Rank 5 (Horde)
17909, -- Frostwolf Insignia Rank 6 (Horde)
17691, -- Stormpike Insignia Rank 1 ( )
17900, -- Stormpike Insignia Rank 2 ( )
17901, -- Stormpike Insignia Rank 3 ( )
17902, -- Stormpike Insignia Rank 4 ( )
17903, -- Stormpike Insignia Rank 5 ( )
17904, -- Stormpike Insignia Rank 6 ( )
22631, -- Atiesh, Greatstaff of the Guardian
87548, -- Lorewalker's Lodestone
54452, -- Ethereal Portal
93672, -- Dark Portal
103678, -- Time-Lost Artifact
110560, -- Garrison Hearthstone
118662, -- Bladespire Relic
118663, -- Relic of Karabor
118907, -- Pit Fighter's Punching Ring
128353, -- Admiral's Compass
128502, -- Hunter's Seeking Crystal
128503, -- Master Hunter's Seeking Crystal
136849, -- Nature's Beacon
-- IDs of items usable instead of hearthstone
64488, -- The Innkeeper's Daughter
28585, -- Ruby Slippers
6948, -- Hearthstone
44315, -- Scroll of Recall III
44314, -- Scroll of Recall II
37118, -- Scroll of Recall
-- Gold Challenge portals
131204, -- Path of the Jade Serpent
131205, -- Path of the Stout Brew
131206, -- Path of the Shado-Pan
131222, -- Path of the Mogu King
131225, -- Path of the Setting Sun
131231, -- Path of the Scarlet Blade
131229, -- Path of the Scarlet Mitre
131232, -- Path of the Necromancer
131228, -- Path of the Black Ox
159895, -- Path of the Bloodmaul
159896, -- Path of the Iron Prow
159897, -- Path of the Vigilant
159898, -- Path of the Skies
159899, -- Path of the Crescent Moon
159900, -- Path of the Dark Rail
159901, -- Path of the Verdant
159902, -- Path of the Burning Mountain
--Mage Portal Spells Alliance
3561, -- Teleport:Stormwind
3562, -- Teleport:Ironforge
3565, -- Teleport:Darnassus
32271, -- Teleport:Exodar
49359, -- Teleport:Theramore
33690, -- Teleport:Shattrath
53140, -- Teleport:Dalaran
88342, -- Teleport:Tol Barad
132621, -- Teleport:Vale of Eternal Blossoms
120145, -- Teleport:Ancient Dalaran
176248, -- Teleport:StormShield
10059, -- Portal:Stormwind
11416, -- Portal:Ironforge
11419, -- Portal:Darnassus
32266, -- Portal:Exodar
49360, -- Portal:Theramore
33691, -- Portal:Shattrath
53142, -- Portal:Dalaran
88345, -- Portal:Tol Barad
120146, -- Portal:Ancient Dalaran
132620, -- Portal:Vale of Eternal Blossoms
176246, -- Portal:StormShield
--Mage Portal Spells Horde
3563, -- Teleport:Undercity
3566, -- Teleport:Thunder Bluff
3567, -- Teleport:Orgrimmar
32272, -- Teleport:Silvermoon
49358, -- Teleport:Stonard
35715, -- Teleport:Shattrath
53140, -- Teleport:Dalaran
88344, -- Teleport:Tol Barad
132627, -- Teleport:Vale of Eternal Blossoms
120145, -- Teleport:Ancient Dalaran
176242, -- Teleport:Warspear
11418, -- Portal:Undercity
11420, -- Portal:Thunder Bluff
11417, -- Portal:Orgrimmar
32267, -- Portal:Silvermoon
49361, -- Portal:Stonard
35717, -- Portal:Shattrath
53142, -- Portal:Dalaran
88346, -- Portal:Tol Barad
120146, -- Portal:Ancient Dalaran
132626, -- Portal:Vale of Eternal Blossoms
176244, -- Portal:Warspear
-- Portal Spells Other "Classes
-- Death Knight
50977, -- Death Gate
-- Druid
18960, -- Teleport:Moonglade
136849, -- Nature's Beacon
-- Shaman
556, -- Astral Recall
--Monk
126892, -- Zen Pilgrimage trigger id is - 126895 -- Zen Pilgrimage: Return (aura is 126896)
},
["Faction"] = {
-- Dalaran rings
'ALL', -- Band of the Kirin Tor
'ALL', -- Etched Band of the Kirin Tor
'ALL', -- Etched Loop of the Kirin Tor
'ALL', -- Etched Ring of the Kirin Tor
'ALL', -- Etched Signet of the Kirin Tor
'ALL', -- Inscribed Band of the Kirin Tor
'ALL', -- Inscribed Loop of the Kirin Tor
'ALL', -- Inscribed Ring of the Kirin Tor
'ALL', -- Inscribed Signet of the Kirin Tor
'ALL', -- Loop of the Kirin Tor
'ALL', -- Ring of the Kirin Tor
'ALL', -- Signet of the Kirin Tor
'ALL', -- Runed Band of the Kirin Tor
'ALL', -- Runed Loop of the Kirin Tor
'ALL', -- Runed Ring of the Kirin Tor
'ALL', -- Runed Signet of the Kirin Tor
-- Engineering Gadgets
'ALL', -- Dimensional Ripper - Area 52
'ALL', -- Dimensional Ripper - Everlook
'ALL', -- Ultrasafe Transporter: Gadgetzan
'ALL', -- Ultrasafe Transporter: Toshley's Station
'ALL', -- Wormhole Generator: Northrend
'ALL', -- Wormhole Generator: Pandaria
'ALL', -- Wormhole Centrifuge
-- Seasonal items
'ALL', -- Direbrew's Remote
'ALL', -- Lunar Festival Invitation
-- Miscellaneous
'ALL', -- Argent Crusader's Tabard
'ALL', -- Blessed Medallion of Karabor
'ALL', -- Darnarian's Scroll of Teleportation
'ALL', -- Boots of the Bay
'ALL', -- Jaina's Locket
'ALL', -- The Schools of Arcane Magic - Mastery
'ALL', -- Potion of Deepholm
'ALL', -- Cloak of Coordination (Horde)
'ALL', -- Cloak of Coordination ( )
'ALL', -- Hellscream's Reach Tabard
'ALL', -- Baradin's Wardens Tabard
'ALL', -- The Last Relic of Argus
'ALL', -- Wrap of Unity ( )
'ALL', -- Wrap of Unity (Horde)
'ALL', -- Shroud of Cooperation ( )
'ALL', -- Shroud of Cooperation (Horde)
'ALL', -- The Brassiest Knuckle (Horde)
'ALL', -- The Brassiest Knuckle ( )
'ALL', -- Kirin Tor Beacon
'ALL', -- Sunreaver Beacon
'ALL', -- Frostwolf Insignia Rank 1 (Horde)
'ALL', -- Frostwolf Insignia Rank 2 (Horde)
'ALL', -- Frostwolf Insignia Rank 3 (Horde)
'ALL', -- Frostwolf Insignia Rank 4 (Horde)
'ALL', -- Frostwolf Insignia Rank 5 (Horde)
'ALL', -- Frostwolf Insignia Rank 6 (Horde)
'ALL', -- Stormpike Insignia Rank 1 ( )
'ALL', -- Stormpike Insignia Rank 2 ( )
'ALL', -- Stormpike Insignia Rank 3 ( )
'ALL', -- Stormpike Insignia Rank 4 ( )
'ALL', -- Stormpike Insignia Rank 5 ( )
'ALL', -- Stormpike Insignia Rank 6 ( )
'ALL', -- Atiesh, Greatstaff of the Guardian
'ALL', -- Lorewalker's Lodestone
'ALL', -- Ethereal Portal
'ALL', -- Dark Portal
'ALL', -- Time-Lost Artifact
'ALL', -- Garrison Hearthstone
'ALL', -- Bladespire Relic
'ALL', -- Relic of Karabor
'ALL', -- Pit Fighter's Punching Ring
'ALL', -- Admiral's Compass
'ALL', -- Hunter's Seeking Crystal
'ALL', -- Master Hunter's Seeking Crystal
'ALL', -- Nature's Beacon
-- IDs of items usable instead of hearthstone
'ALL', -- The Innkeeper's Daughter
'ALL', -- Ruby Slippers
'ALL', -- Hearthstone
'ALL', -- Scroll of Recall III
'ALL', -- Scroll of Recall II
'ALL', -- Scroll of Recall
-- Gold Challenge portals
'ALL', -- Path of the Jade Serpent
'ALL', -- Path of the Stout Brew
'ALL', -- Path of the Shado-Pan
'ALL', -- Path of the Mogu King
'ALL', -- Path of the Setting Sun
'ALL', -- Path of the Scarlet Blade
'ALL', -- Path of the Scarlet Mitre
'ALL', -- Path of the Necromancer
'ALL', -- Path of the Black Ox
'ALL', -- Path of the Bloodmaul
'ALL', -- Path of the Iron Prow
'ALL', -- Path of the Vigilant
'ALL', -- Path of the Skies
'ALL', -- Path of the Crescent Moon
'ALL', -- Path of the Dark Rail
'ALL', -- Path of the Verdant
'ALL', -- Path of the Burning Mountain
--Mage Portal Spells Alliance
'Alliance', -- Teleport:Stormwind
'Alliance', -- Teleport:Ironforge
'Alliance', -- Teleport:Darnassus
'Alliance', -- Teleport:Exodar
'Alliance', -- Teleport:Theramore
'Alliance', -- Teleport:Shattrath
'Alliance', -- Teleport:Dalaran
'Alliance', -- Teleport:Tol Barad
'Alliance', -- Teleport:Vale of Eternal Blossoms
'Alliance', -- Teleport:Ancient Dalaran
'Alliance', -- Teleport:StormShield
'Alliance', -- Portal:Stormwind
'Alliance', -- Portal:Ironforge
'Alliance', -- Portal:Darnassus
'Alliance', -- Portal:Exodar
'Alliance', -- Portal:Theramore
'Alliance', -- Portal:Shattrath
'Alliance', -- Portal:Dalaran
'Alliance', -- Portal:Tol Barad
'Alliance', -- Portal:Ancient Dalaran
'Alliance', -- Portal:Vale of Eternal Blossoms
'Alliance', -- Portal:StormShield
--Mage Portal Spells Horde
'Horde', -- Teleport:Undercity
'Horde', -- Teleport:Thunder Bluff
'Horde', -- Teleport:Orgrimmar
'Horde', -- Teleport:Silvermoon
'Horde', -- Teleport:Stonard
'Horde', -- Teleport:Shattrath
'Horde', -- Teleport:Dalaran
'Horde', -- Teleport:Tol Barad
'Horde', -- Teleport:Vale of Eternal Blossoms
'Horde', -- Teleport:Ancient Dalaran
'Horde', -- Teleport:Warspear
'Horde', -- Portal:Undercity
'Horde', -- Portal:Thunder Bluff
'Horde', -- Portal:Orgrimmar
'Horde', -- Portal:Silvermoon
'Horde', -- Portal:Stonard
'Horde', -- Portal:Shattrath
'Horde', -- Portal:Dalaran
'Horde', -- Portal:Tol Barad
'Horde', -- Portal:Ancient Dalaran
'Horde', -- Portal:Vale of Eternal Blossoms
'Horde', -- Portal:Warspear
-- Portal Spells Other "Classes
-- Death Knight
'ALL', -- Death Gate
-- Druid
'ALL', -- Teleport:Moonglade
'ALL', -- Nature's Beacon
-- Shaman
'ALL', -- Astral Recall
--Monk
'ALL', -- Zen Pilgrimage trigger id is - 126895 -- Zen Pilgrimage: Return (aura is 126896)
},
["Class"] = {
-- Dalaran rings
'ALL', -- Band of the Kirin Tor
'ALL', -- Etched Band of the Kirin Tor
'ALL', -- Etched Loop of the Kirin Tor
'ALL', -- Etched Ring of the Kirin Tor
'ALL', -- Etched Signet of the Kirin Tor
'ALL', -- Inscribed Band of the Kirin Tor
'ALL', -- Inscribed Loop of the Kirin Tor
'ALL', -- Inscribed Ring of the Kirin Tor
'ALL', -- Inscribed Signet of the Kirin Tor
'ALL', -- Loop of the Kirin Tor
'ALL', -- Ring of the Kirin Tor
'ALL', -- Signet of the Kirin Tor
'ALL', -- Runed Band of the Kirin Tor
'ALL', -- Runed Loop of the Kirin Tor
'ALL', -- Runed Ring of the Kirin Tor
'ALL', -- Runed Signet of the Kirin Tor
-- Engineering Gadgets
'ALL', -- Dimensional Ripper - Area 52
'ALL', -- Dimensional Ripper - Everlook
'ALL', -- Ultrasafe Transporter: Gadgetzan
'ALL', -- Ultrasafe Transporter: Toshley's Station
'ALL', -- Wormhole Generator: Northrend
'ALL', -- Wormhole Generator: Pandaria
'ALL', -- Wormhole Centrifuge
-- Seasonal items
'ALL', -- Direbrew's Remote
'ALL', -- Lunar Festival Invitation
-- Miscellaneous
'ALL', -- Argent Crusader's Tabard
'ALL', -- Blessed Medallion of Karabor
'ALL', -- Darnarian's Scroll of Teleportation
'ALL', -- Boots of the Bay
'ALL', -- Jaina's Locket
'ALL', -- The Schools of Arcane Magic - Mastery
'ALL', -- Potion of Deepholm
'ALL', -- Cloak of Coordination (Horde)
'ALL', -- Cloak of Coordination ( )
'ALL', -- Hellscream's Reach Tabard
'ALL', -- Baradin's Wardens Tabard
'ALL', -- The Last Relic of Argus
'ALL', -- Wrap of Unity ( )
'ALL', -- Wrap of Unity (Horde)
'ALL', -- Shroud of Cooperation ( )
'ALL', -- Shroud of Cooperation (Horde)
'ALL', -- The Brassiest Knuckle (Horde)
'ALL', -- The Brassiest Knuckle ( )
'ALL', -- Kirin Tor Beacon
'ALL', -- Sunreaver Beacon
'ALL', -- Frostwolf Insignia Rank 1 (Horde)
'ALL', -- Frostwolf Insignia Rank 2 (Horde)
'ALL', -- Frostwolf Insignia Rank 3 (Horde)
'ALL', -- Frostwolf Insignia Rank 4 (Horde)
'ALL', -- Frostwolf Insignia Rank 5 (Horde)
'ALL', -- Frostwolf Insignia Rank 6 (Horde)
'ALL', -- Stormpike Insignia Rank 1 ( )
'ALL', -- Stormpike Insignia Rank 2 ( )
'ALL', -- Stormpike Insignia Rank 3 ( )
'ALL', -- Stormpike Insignia Rank 4 ( )
'ALL', -- Stormpike Insignia Rank 5 ( )
'ALL', -- Stormpike Insignia Rank 6 ( )
'ALL', -- Atiesh, Greatstaff of the Guardian
'ALL', -- Lorewalker's Lodestone
'ALL', -- Ethereal Portal
'ALL', -- Dark Portal
'ALL', -- Time-Lost Artifact
'ALL', -- Garrison Hearthstone
'ALL', -- Bladespire Relic
'ALL', -- Relic of Karabor
'ALL', -- Pit Fighter's Punching Ring
'ALL', -- Admiral's Compass
'ALL', -- Hunter's Seeking Crystal
'ALL', -- Master Hunter's Seeking Crystal
'ALL', -- Nature's Beacon
-- IDs of items usable instead of hearthstone
'ALL', -- The Innkeeper's Daughter
'ALL', -- Ruby Slippers
'ALL', -- Hearthstone
'ALL', -- Scroll of Recall III
'ALL', -- Scroll of Recall II
'ALL', -- Scroll of Recall
-- Gold Challenge portals
'ALL', -- Path of the Jade Serpent
'ALL', -- Path of the Stout Brew
'ALL', -- Path of the Shado-Pan
'ALL', -- Path of the Mogu King
'ALL', -- Path of the Setting Sun
'ALL', -- Path of the Scarlet Blade
'ALL', -- Path of the Scarlet Mitre
'ALL', -- Path of the Necromancer
'ALL', -- Path of the Black Ox
'ALL', -- Path of the Bloodmaul
'ALL', -- Path of the Iron Prow
'ALL', -- Path of the Vigilant
'ALL', -- Path of the Skies
'ALL', -- Path of the Crescent Moon
'ALL', -- Path of the Dark Rail
'ALL', -- Path of the Verdant
'ALL', -- Path of the Burning Mountain
--Mage Portal Spells Alliance
'MAGE', -- Teleport:Stormwind
'MAGE', -- Teleport:Ironforge
'MAGE', -- Teleport:Darnassus
'MAGE', -- Teleport:Exodar
'MAGE', -- Teleport:Theramore
'MAGE', -- Teleport:Shattrath
'MAGE', -- Teleport:Dalaran
'MAGE', -- Teleport:Tol Barad
'MAGE', -- Teleport:Vale of Eternal Blossoms
'MAGE', -- Teleport:Ancient Dalaran
'MAGE', -- Teleport:StormShield
'MAGE', -- Portal:Stormwind
'MAGE', -- Portal:Ironforge
'MAGE', -- Portal:Darnassus
'MAGE', -- Portal:Exodar
'MAGE', -- Portal:Theramore
'MAGE', -- Portal:Shattrath
'MAGE', -- Portal:Dalaran
'MAGE', -- Portal:Tol Barad
'MAGE', -- Portal:Ancient Dalaran
'MAGE', -- Portal:Vale of Eternal Blossoms
'MAGE', -- Portal:StormShield
--Mage Portal Spells Horde
'MAGE', -- Teleport:Undercity
'MAGE', -- Teleport:Thunder Bluff
'MAGE', -- Teleport:Orgrimmar
'MAGE', -- Teleport:Silvermoon
'MAGE', -- Teleport:Stonard
'MAGE', -- Teleport:Shattrath
'MAGE', -- Teleport:Dalaran
'MAGE', -- Teleport:Tol Barad
'MAGE', -- Teleport:Vale of Eternal Blossoms
'MAGE', -- Teleport:Ancient Dalaran
'MAGE', -- Teleport:Warspear
'MAGE', -- Portal:Undercity
'MAGE', -- Portal:Thunder Bluff
'MAGE', -- Portal:Orgrimmar
'MAGE', -- Portal:Silvermoon
'MAGE', -- Portal:Stonard
'MAGE', -- Portal:Shattrath
'MAGE', -- Portal:Dalaran
'MAGE', -- Portal:Tol Barad
'MAGE', -- Portal:Ancient Dalaran
'MAGE', -- Portal:Vale of Eternal Blossoms
'MAGE', -- Portal:Warspear
-- Portal Spells Other "Classes
-- Death Knight
'DEATHKNIGHT', -- Death Gate
-- Druid
'DRUID', -- Teleport:Moonglade
'ALL', -- Nature's Beacon
-- Shaman
'SHAMAN', -- Astral Recall
--Monk
'MONK', -- Zen Pilgrimage trigger id is - 126895 -- Zen Pilgrimage: Return (aura is 126896)
},
["TeleOrPort"] = {
-- Dalaran rings
'NA', -- Band of the Kirin Tor
'NA', -- Etched Band of the Kirin Tor
'NA', -- Etched Loop of the Kirin Tor
'NA', -- Etched Ring of the Kirin Tor
'NA', -- Etched Signet of the Kirin Tor
'NA', -- Inscribed Band of the Kirin Tor
'NA', -- Inscribed Loop of the Kirin Tor
'NA', -- Inscribed Ring of the Kirin Tor
'NA', -- Inscribed Signet of the Kirin Tor
'NA', -- Loop of the Kirin Tor
'NA', -- Ring of the Kirin Tor
'NA', -- Signet of the Kirin Tor
'NA', -- Runed Band of the Kirin Tor
'NA', -- Runed Loop of the Kirin Tor
'NA', -- Runed Ring of the Kirin Tor
'NA', -- Runed Signet of the Kirin Tor
-- Engineering Gadgets
'NA', -- Dimensional Ripper - Area 52
'NA', -- Dimensional Ripper - Everlook
'NA', -- Ultrasafe Transporter: Gadgetzan
'NA', -- Ultrasafe Transporter: Toshley's Station
'NA', -- Wormhole Generator: Northrend
'NA', -- Wormhole Generator: Pandaria
'NA', -- Wormhole Centrifuge
-- Seasonal items
'NA', -- Direbrew's Remote
'NA', -- Lunar Festival Invitation
-- Miscellaneous
'NA', -- Argent Crusader's Tabard
'NA', -- Blessed Medallion of Karabor
'NA', -- Darnarian's Scroll of Teleportation
'NA', -- Boots of the Bay
'NA', -- Jaina's Locket
'NA', -- The Schools of Arcane Magic - Mastery
'NA', -- Potion of Deepholm
'NA', -- Cloak of Coordination (Horde)
'NA', -- Cloak of Coordination ( )
'NA', -- Hellscream's Reach Tabard
'NA', -- Baradin's Wardens Tabard
'NA', -- The Last Relic of Argus
'NA', -- Wrap of Unity ( )
'NA', -- Wrap of Unity (Horde)
'NA', -- Shroud of Cooperation ( )
'NA', -- Shroud of Cooperation (Horde)
'NA', -- The Brassiest Knuckle (Horde)
'NA', -- The Brassiest Knuckle ( )
'NA', -- Kirin Tor Beacon
'NA', -- Sunreaver Beacon
'NA', -- Frostwolf Insignia Rank 1 (Horde)
'NA', -- Frostwolf Insignia Rank 2 (Horde)
'NA', -- Frostwolf Insignia Rank 3 (Horde)
'NA', -- Frostwolf Insignia Rank 4 (Horde)
'NA', -- Frostwolf Insignia Rank 5 (Horde)
'NA', -- Frostwolf Insignia Rank 6 (Horde)
'NA', -- Stormpike Insignia Rank 1 ( )
'NA', -- Stormpike Insignia Rank 2 ( )
'NA', -- Stormpike Insignia Rank 3 ( )
'NA', -- Stormpike Insignia Rank 4 ( )
'NA', -- Stormpike Insignia Rank 5 ( )
'NA', -- Stormpike Insignia Rank 6 ( )
'NA', -- Atiesh, Greatstaff of the Guardian
'NA', -- Lorewalker's Lodestone
'NA', -- Ethereal Portal
'NA', -- Dark Portal
'NA', -- Time-Lost Artifact
'NA', -- Garrison Hearthstone
'NA', -- Bladespire Relic
'NA', -- Relic of Karabor
'NA', -- Pit Fighter's Punching Ring
'NA', -- Admiral's Compass
'NA', -- Hunter's Seeking Crystal
'NA', -- Master Hunter's Seeking Crystal
'NA', -- Nature's Beacon
-- IDs of items usable instead of hearthstone
'NA', -- The Innkeeper's Daughter
'NA', -- Ruby Slippers
'NA', -- Hearthstone
'NA', -- Scroll of Recall III
'NA', -- Scroll of Recall II
'NA', -- Scroll of Recall
-- Gold Challenge portals
'NA', -- Path of the Jade Serpent
'NA', -- Path of the Stout Brew
'NA', -- Path of the Shado-Pan
'NA', -- Path of the Mogu King
'NA', -- Path of the Setting Sun
'NA', -- Path of the Scarlet Blade
'NA', -- Path of the Scarlet Mitre
'NA', -- Path of the Necromancer
'NA', -- Path of the Black Ox
'NA', -- Path of the Bloodmaul
'NA', -- Path of the Iron Prow
'NA', -- Path of the Vigilant
'NA', -- Path of the Skies
'NA', -- Path of the Crescent Moon
'NA', -- Path of the Dark Rail
'NA', -- Path of the Verdant
'NA', -- Path of the Burning Mountain
--Mage Portal Spells Alliance
'TP', -- Teleport:Stormwind
'TP', -- Teleport:Ironforge
'TP', -- Teleport:Darnassus
'TP', -- Teleport:Exodar
'TP', -- Teleport:Theramore
'TP', -- Teleport:Shattrath
'TP', -- Teleport:Dalaran
'TP', -- Teleport:Tol Barad
'TP', -- Teleport:Vale of Eternal Blossoms
'TP', -- Teleport:Ancient Dalaran
'TP', -- Teleport:StormShield
'P', -- Portal:Stormwind
'P', -- Portal:Ironforge
'P', -- Portal:Darnassus
'P', -- Portal:Exodar
'P', -- Portal:Theramore
'P', -- Portal:Shattrath
'P', -- Portal:Dalaran
'P', -- Portal:Tol Barad
'P', -- Portal:Ancient Dalaran
'P', -- Portal:Vale of Eternal Blossoms
'P', -- Portal:StormShield
--Mage Portal Spells Horde
'TP', -- Teleport:Undercity
'TP', -- Teleport:Thunder Bluff
'TP', -- Teleport:Orgrimmar
'TP', -- Teleport:Silvermoon
'TP', -- Teleport:Stonard
'TP', -- Teleport:Shattrath
'TP', -- Teleport:Dalaran
'TP', -- Teleport:Tol Barad
'TP', -- Teleport:Vale of Eternal Blossoms
'TP', -- Teleport:Ancient Dalaran
'TP', -- Teleport:Warspear
'P', -- Portal:Undercity
'P', -- Portal:Thunder Bluff
'P', -- Portal:Orgrimmar
'P', -- Portal:Silvermoon
'P', -- Portal:Stonard
'P', -- Portal:Shattrath
'P', -- Portal:Dalaran
'P', -- Portal:Tol Barad
'P', -- Portal:Ancient Dalaran
'P', -- Portal:Vale of Eternal Blossoms
'P', -- Portal:Warspear
-- Portal Spells Other "Class"es
-- Death Knight
'NA', -- Death Gate
-- Druid
'NA', -- Teleport:Moonglade
'NA', -- Nature's Beacon
-- Shaman
'NA', -- Astral Recall
--Monk
'NA', -- Zen Pilgrimage trigger id is - 126895 -- Zen Pilgrimage: Return (aura is 126896)
},
["isCMMOP"] = {
-- Dalaran rings
false, -- Band of the Kirin Tor
false, -- Etched Band of the Kirin Tor
false, -- Etched Loop of the Kirin Tor
false, -- Etched Ring of the Kirin Tor
false, -- Etched Signet of the Kirin Tor
false, -- Inscribed Band of the Kirin Tor
false, -- Inscribed Loop of the Kirin Tor
false, -- Inscribed Ring of the Kirin Tor
false, -- Inscribed Signet of the Kirin Tor
false, -- Loop of the Kirin Tor
false, -- Ring of the Kirin Tor
false, -- Signet of the Kirin Tor
false, -- Runed Band of the Kirin Tor
false, -- Runed Loop of the Kirin Tor
false, -- Runed Ring of the Kirin Tor
false, -- Runed Signet of the Kirin Tor
-- Engineering Gadgets
false, -- Dimensional Ripper - Area 52
false, -- Dimensional Ripper - Everlook
false, -- Ultrasafe Transporter: Gadgetzan
false, -- Ultrasafe Transporter: Toshley's Station
false, -- Wormhole Generator: Northrend
false, -- Wormhole Generator: Pandaria
false, -- Wormhole Centrifuge
-- Seasonal items
false, -- Direbrew's Remote
false, -- Lunar Festival Invitation
-- Miscellaneous
false, -- Argent Crusader's Tabard
false, -- Blessed Medallion of Karabor
false, -- Darnarian's Scroll of Teleportation
false, -- Boots of the Bay
false, -- Jaina's Locket
false, -- The Schools of Arcane Magic - Mastery
false, -- Potion of Deepholm
false, -- Cloak of Coordination (Horde)
false, -- Cloak of Coordination ( )
false, -- Hellscream's Reach Tabard
false, -- Baradin's Wardens Tabard
false, -- The Last Relic of Argus
false, -- Wrap of Unity ( )
false, -- Wrap of Unity (Horde)
false, -- Shroud of Cooperation ( )
false, -- Shroud of Cooperation (Horde)
false, -- The Brassiest Knuckle (Horde)
false, -- The Brassiest Knuckle ( )
false, -- Kirin Tor Beacon
false, -- Sunreaver Beacon
false, -- Frostwolf Insignia Rank 1 (Horde)
false, -- Frostwolf Insignia Rank 2 (Horde)
false, -- Frostwolf Insignia Rank 3 (Horde)
false, -- Frostwolf Insignia Rank 4 (Horde)
false, -- Frostwolf Insignia Rank 5 (Horde)
false, -- Frostwolf Insignia Rank 6 (Horde)
false, -- Stormpike Insignia Rank 1 ( )
false, -- Stormpike Insignia Rank 2 ( )
false, -- Stormpike Insignia Rank 3 ( )
false, -- Stormpike Insignia Rank 4 ( )
false, -- Stormpike Insignia Rank 5 ( )
false, -- Stormpike Insignia Rank 6 ( )
false, -- Atiesh, Greatstaff of the Guardian
false, -- Lorewalker's Lodestone
false, -- Ethereal Portal
false, -- Dark Portal
false, -- Time-Lost Artifact
false, -- Garrison Hearthstone
false, -- Bladespire Relic
false, -- Relic of Karabor
false, -- Pit Fighter's Punching Ring
false, -- Admiral's Compass
false, -- Hunter's Seeking Crystal
false, -- Master Hunter's Seeking Crystal
false, -- Nature's Beacon
-- IDs of items usable instead of hearthstone
false, -- The Innkeeper's Daughter
false, -- Ruby Slippers
false, -- Hearthstone
false, -- Scroll of Recall III
false, -- Scroll of Recall II
false, -- Scroll of Recall
-- Gold Challenge portals
true, -- Path of the Jade Serpent
true, -- Path of the Stout Brew
true, -- Path of the Shado-Pan
true, -- Path of the Mogu King
true, -- Path of the Setting Sun
true, -- Path of the Scarlet Blade
true, -- Path of the Scarlet Mitre
true, -- Path of the Necromancer
true, -- Path of the Black Ox
false, -- Path of the Bloodmaul
false, -- Path of the Iron Prow
false, -- Path of the Vigilant
false, -- Path of the Skies
false, -- Path of the Crescent Moon
false, -- Path of the Dark Rail
false, -- Path of the Verdant
false, -- Path of the Burning Mountain
--Mage Portal Spells Alliance
false, -- Teleport:Stormwind
false, -- Teleport:Ironforge
false, -- Teleport:Darnassus
false, -- Teleport:Exodar
false, -- Teleport:Theramore
false, -- Teleport:Shattrath
false, -- Teleport:Dalaran
false, -- Teleport:Tol Barad
false, -- Teleport:Vale of Eternal Blossoms
false, -- Teleport:Ancient Dalaran
false, -- Teleport:StormShield
false, -- Portal:Stormwind
false, -- Portal:Ironforge
false, -- Portal:Darnassus
false, -- Portal:Exodar
false, -- Portal:Theramore
false, -- Portal:Shattrath
false, -- Portal:Dalaran
false, -- Portal:Tol Barad
false, -- Portal:Ancient Dalaran
false, -- Portal:Vale of Eternal Blossoms
false, -- Portal:StormShield
--Mage Portal Spells Horde
false, -- Teleport:Undercity
false, -- Teleport:Thunder Bluff
false, -- Teleport:Orgrimmar
false, -- Teleport:Silvermoon
false, -- Teleport:Stonard
false, -- Teleport:Shattrath
false, -- Teleport:Dalaran
false, -- Teleport:Tol Barad
false, -- Teleport:Vale of Eternal Blossoms
false, -- Teleport:Ancient Dalaran
false, -- Teleport:Warspear
false, -- Portal:Undercity
false, -- Portal:Thunder Bluff
false, -- Portal:Orgrimmar
false, -- Portal:Silvermoon
false, -- Portal:Stonard
false, -- Portal:Shattrath
false, -- Portal:Dalaran
false, -- Portal:Tol Barad
false, -- Portal:Ancient Dalaran
false, -- Portal:Vale of Eternal Blossoms
false, -- Portal:Warspear
-- Portal Spells Other "Class"es
-- Death Knight
false, -- Death Gate
-- Druid
false, -- Teleport:Moonglade
false, -- Nature's Beacon
-- Shaman
false, -- Astral Recall
--Monk
false, -- Zen Pilgrimage trigger id is - 126895 -- Zen Pilgrimage: Return (aura is 126896)
},
["isCMWOD"] = {
-- Dalaran rings
false, -- Band of the Kirin Tor
false, -- Etched Band of the Kirin Tor
false, -- Etched Loop of the Kirin Tor
false, -- Etched Ring of the Kirin Tor
false, -- Etched Signet of the Kirin Tor
false, -- Inscribed Band of the Kirin Tor
false, -- Inscribed Loop of the Kirin Tor
false, -- Inscribed Ring of the Kirin Tor
false, -- Inscribed Signet of the Kirin Tor
false, -- Loop of the Kirin Tor
false, -- Ring of the Kirin Tor
false, -- Signet of the Kirin Tor
false, -- Runed Band of the Kirin Tor
false, -- Runed Loop of the Kirin Tor
false, -- Runed Ring of the Kirin Tor
false, -- Runed Signet of the Kirin Tor
-- Engineering Gadgets
false, -- Dimensional Ripper - Area 52
false, -- Dimensional Ripper - Everlook
false, -- Ultrasafe Transporter: Gadgetzan
false, -- Ultrasafe Transporter: Toshley's Station
false, -- Wormhole Generator: Northrend
false, -- Wormhole Generator: Pandaria
false, -- Wormhole Centrifuge
-- Seasonal items
false, -- Direbrew's Remote
false, -- Lunar Festival Invitation
-- Miscellaneous
false, -- Argent Crusader's Tabard
false, -- Blessed Medallion of Karabor
false, -- Darnarian's Scroll of Teleportation
false, -- Boots of the Bay
false, -- Jaina's Locket
false, -- The Schools of Arcane Magic - Mastery
false, -- Potion of Deepholm
false, -- Cloak of Coordination (Horde)
false, -- Cloak of Coordination ( )
false, -- Hellscream's Reach Tabard
false, -- Baradin's Wardens Tabard
false, -- The Last Relic of Argus
false, -- Wrap of Unity ( )
false, -- Wrap of Unity (Horde)
false, -- Shroud of Cooperation ( )
false, -- Shroud of Cooperation (Horde)
false, -- The Brassiest Knuckle (Horde)
false, -- The Brassiest Knuckle ( )
false, -- Kirin Tor Beacon
false, -- Sunreaver Beacon
false, -- Frostwolf Insignia Rank 1 (Horde)
false, -- Frostwolf Insignia Rank 2 (Horde)
false, -- Frostwolf Insignia Rank 3 (Horde)
false, -- Frostwolf Insignia Rank 4 (Horde)
false, -- Frostwolf Insignia Rank 5 (Horde)
false, -- Frostwolf Insignia Rank 6 (Horde)
false, -- Stormpike Insignia Rank 1 ( )
false, -- Stormpike Insignia Rank 2 ( )
false, -- Stormpike Insignia Rank 3 ( )
false, -- Stormpike Insignia Rank 4 ( )
false, -- Stormpike Insignia Rank 5 ( )
false, -- Stormpike Insignia Rank 6 ( )
false, -- Atiesh, Greatstaff of the Guardian
false, -- Lorewalker's Lodestone
false, -- Ethereal Portal
false, -- Dark Portal
false, -- Time-Lost Artifact
false, -- Garrison Hearthstone
false, -- Bladespire Relic
false, -- Relic of Karabor
false, -- Pit Fighter's Punching Ring
false, -- Admiral's Compass
false, -- Hunter's Seeking Crystal
false, -- Master Hunter's Seeking Crystal
false, -- Nature's Beacon
-- IDs of items usable instead of hearthstone
false, -- The Innkeeper's Daughter
false, -- Ruby Slippers
false, -- Hearthstone
false, -- Scroll of Recall III
false, -- Scroll of Recall II
false, -- Scroll of Recall
-- Gold Challenge portals
false, -- Path of the Jade Serpent
false, -- Path of the Stout Brew
false, -- Path of the Shado-Pan
false, -- Path of the Mogu King
false, -- Path of the Setting Sun
false, -- Path of the Scarlet Blade
false, -- Path of the Scarlet Mitre
false, -- Path of the Necromancer
false, -- Path of the Black Ox
true, -- Path of the Bloodmaul
true, -- Path of the Iron Prow
true, -- Path of the Vigilant
true, -- Path of the Skies
true, -- Path of the Crescent Moon
true, -- Path of the Dark Rail
true, -- Path of the Verdant
true, -- Path of the Burning Mountain
--Mage Portal Spells Alliance
false, -- Teleport:Stormwind
false, -- Teleport:Ironforge
false, -- Teleport:Darnassus
false, -- Teleport:Exodar
false, -- Teleport:Theramore
false, -- Teleport:Shattrath
false, -- Teleport:Dalaran
false, -- Teleport:Tol Barad
false, -- Teleport:Vale of Eternal Blossoms
false, -- Teleport:Ancient Dalaran
false, -- Teleport:StormShield
false, -- Portal:Stormwind
false, -- Portal:Ironforge
false, -- Portal:Darnassus
false, -- Portal:Exodar
false, -- Portal:Theramore
false, -- Portal:Shattrath
false, -- Portal:Dalaran
false, -- Portal:Tol Barad
false, -- Portal:Ancient Dalaran
false, -- Portal:Vale of Eternal Blossoms
false, -- Portal:StormShield
--Mage Portal Spells Horde
false, -- Teleport:Undercity
false, -- Teleport:Thunder Bluff
false, -- Teleport:Orgrimmar
false, -- Teleport:Silvermoon
false, -- Teleport:Stonard
false, -- Teleport:Shattrath
false, -- Teleport:Dalaran
false, -- Teleport:Tol Barad
false, -- Teleport:Vale of Eternal Blossoms
false, -- Teleport:Ancient Dalaran
false, -- Teleport:Warspear
false, -- Portal:Undercity
false, -- Portal:Thunder Bluff
false, -- Portal:Orgrimmar
false, -- Portal:Silvermoon
false, -- Portal:Stonard
false, -- Portal:Shattrath
false, -- Portal:Dalaran
false, -- Portal:Tol Barad
false, -- Portal:Ancient Dalaran
false, -- Portal:Vale of Eternal Blossoms
false, -- Portal:Warspear
-- Portal Spells Other "Class"es
-- Death Knight
false, -- Death Gate
-- Druid
false, -- Teleport:Moonglade
false, -- Nature's Beacon
-- Shaman
false, -- Astral Recall
--Monk
false, -- Zen Pilgrimage trigger id is - 126895 -- Zen Pilgrimage: Return (aura is 126896)
},
["isHearth"] = {
-- Dalaran rings
false, -- Band of the Kirin Tor
false, -- Etched Band of the Kirin Tor
false, -- Etched Loop of the Kirin Tor
false, -- Etched Ring of the Kirin Tor
false, -- Etched Signet of the Kirin Tor
false, -- Inscribed Band of the Kirin Tor
false, -- Inscribed Loop of the Kirin Tor
false, -- Inscribed Ring of the Kirin Tor
false, -- Inscribed Signet of the Kirin Tor
false, -- Loop of the Kirin Tor
false, -- Ring of the Kirin Tor
false, -- Signet of the Kirin Tor
false, -- Runed Band of the Kirin Tor
false, -- Runed Loop of the Kirin Tor
false, -- Runed Ring of the Kirin Tor
false, -- Runed Signet of the Kirin Tor
-- Engineering Gadgets
false, -- Dimensional Ripper - Area 52
false, -- Dimensional Ripper - Everlook
false, -- Ultrasafe Transporter: Gadgetzan
false, -- Ultrasafe Transporter: Toshley's Station
false, -- Wormhole Generator: Northrend
false, -- Wormhole Generator: Pandaria
false, -- Wormhole Centrifuge
-- Seasonal items
false, -- Direbrew's Remote
false, -- Lunar Festival Invitation
-- Miscellaneous
false, -- Argent Crusader's Tabard
false, -- Blessed Medallion of Karabor
false, -- Darnarian's Scroll of Teleportation
false, -- Boots of the Bay
false, -- Jaina's Locket
false, -- The Schools of Arcane Magic - Mastery
false, -- Potion of Deepholm
false, -- Cloak of Coordination (Horde)
false, -- Cloak of Coordination ( )
false, -- Hellscream's Reach Tabard
false, -- Baradin's Wardens Tabard
false, -- The Last Relic of Argus
false, -- Wrap of Unity ( )
false, -- Wrap of Unity (Horde)
false, -- Shroud of Cooperation ( )