-
Notifications
You must be signed in to change notification settings - Fork 1
/
AutoBarItemList.lua
1751 lines (1738 loc) · 57.9 KB
/
AutoBarItemList.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
--
-- AutoBar
-- Item List Database
--
-- Maintained by Azethoth / Toadkiller of Proudmoore. Original author Saien of Hyjal
-- http://www.curse-gaming.com/en/wow/addons-4430-1-autobar-toadkiller.html
--
AutoBarItemList = {};
local L = AceLibrary("AceLocale-2.1"):GetInstance("AutoBar", true);
local PT = PeriodicTableEmbed:GetInstance("1");
-- Get set as a simple array of itemIds
function AutoBarItemList:GetSetItemsArray(set)
local cacheSet = PT:GetSetTable(set);
local retval = {};
local index = 1;
for i, val in pairs(cacheSet) do
retval[index] = i;
index = index + 1;
end
return retval
end
function AutoBarItemList:OnInitialize()
-- Ok, step 1 is to start getting the raw data from PeriodicTableEmbed. Later we can use more of its functions.
AutoBar_Category_Info["FOOD_PERCENT"]["items"] = self:GetSetItemsArray("foodperc");
AutoBar_Category_Info["WATER_PERCENT"]["items"] = self:GetSetItemsArray("waterperc");
end
-- /script DEFAULT_CHAT_FRAME:AddMessage(tostring(AutoBar_Category_Info["FOOD_PERCENT"]["items"][3]))
AutoBar_Category_Info = { -- global
["CUSTOM"] = {
["description"] = AUTOBAR_CLASS_CUSTOM;
["texture"] = "INV_Misc_Bandage_12",
["custom"] = true;
["items"] = { 19307 },
},
["AAACLEAR"] = {
["description"] = AUTOBAR_CLASS_CLEAR;
["texture"] = "INV_Misc_Fork&Knife";
["items"] = {},
},
["BANDAGES"] = {
["description"] = AUTOBAR_CLASS_BANDAGES;
["texture"] = "INV_Misc_Bandage_12";
["targetted"] = true;
["smarttarget"] = true;
},
["ALTERAC_BANDAGES"] = {
["description"] = AUTOBAR_CLASS_ALTERAC_BANDAGE;
["texture"] = "INV_Misc_Bandage_12";
["targetted"] = true;
["location"] = AUTOBAR_ALTERACVALLEY;
["smarttarget"] = true;
["items"] = { 19307 },
},
["WARSONG_BANDAGES"] = {
["description"] = AUTOBAR_CLASS_WARSONG_BANDAGE;
["texture"] = "INV_Misc_Bandage_12";
["targetted"] = true;
["location"] = AUTOBAR_WARSONGGULCH;
["smarttarget"] = true;
},
["ARATHI_BANDAGES"] = {
["description"] = AUTOBAR_CLASS_ARATHI_BANDAGE;
["texture"] = "INV_Misc_Bandage_12";
["targetted"] = true;
["location"] = AUTOBAR_ARATHIBASIN;
["smarttarget"] = true;
},
["UNGORO_RESTORE"] = {
["description"] = AUTOBAR_CLASS_UNGORORESTORE;
["texture"] = "INV_Misc_Gem_Diamond_02";
["combatonly"] = true;
["targetted"] = true;
["smarttarget"] = true;
["limit"] = { ["downhp"] = { 670 } },
["items"] = { 11562 },
},
["ANTI_VENOM"] = {
["description"] = AUTOBAR_CLASS_ANTIVENOM;
["texture"] = "INV_Drink_14";
["targetted"] = true;
["smarttarget"] = true;
["items"] = {
2633, -- Jungle Remedy 22
6452, -- Anti-Venom 25
6453, -- Strong Anti-Venom 35
19440, -- Powerful Anti-Venom 60
12586, -- Immature Venom Sac
3386, -- elixir of poison resistance
},
},
----------------
["POTION_AGILITY"] = {
["texture"] = "INV_Potion_94",
["description"] = AUTOBAR_CLASS_AGILITYPOTIONS,
["items"] = {
2457, -- Elixir of Minor Agility 4 60
3390, -- Elixir of Lesser Agility 8 60
8949, -- Elixir of Agility 15 60
9187, -- Elixir of Greater Agility 25 60
13452, -- Elixir of the Mongoose 25 60 2% crit
},
},
["POTION_STRENGTH"] = {
["texture"] = "INV_Potion_61",
["description"] = AUTOBAR_CLASS_STRENGTHPOTIONS,
["items"] = {
2457, -- Elixir of Lion's Strength 4 60
3391, -- Elixir of Ogre's Strength 8 60
6662, -- Elixir of Giant Growth 8 60
9206, -- Elixir of Giants 25 60
13453, -- Elixir of Brute Force 18 60 18 sta
},
},
["POTION_FORTITUDE"] = {
["texture"] = "INV_Potion_43",
["description"] = AUTOBAR_CLASS_FORTITUDEPOTIONS,
["items"] = {
2458, -- Elixir of Minor Fortitude 27 60
3825, -- Elixir of Fortitude 120 60
20079, -- Spirit of Zanza 50 sta 120
},
},
["POTION_INTELLECT"] = {
["texture"] = "INV_Potion_10",
["description"] = AUTOBAR_CLASS_INTELLECTPOTIONS,
["items"] = {
9179, -- Elixir of Greater Intellect 25 60
13447, -- Elixir of the Sages 18 60 18 spi
},
},
["POTION_SPELLPOWER"] = {
["texture"] = "INV_Potion_25",
["description"] = AUTOBAR_CLASS_SPELLPOWERPOTIONS,
["items"] = {
6373, -- Elixir of Firepower +10 fire spd
17708, -- Elixir of Frost Power +15 frost spd
9155, -- Arcane Elixir +20 spd
21546, -- Elixir of Greater Firepower +40 fire spd
9264, -- Elixir of Shadow Power +40 shadow spd
13454, -- Greater Arcane Elixir +35 spd
61423, -- Dreamtonic +35 spd - 20 min
61224, -- Dreamshard Elixir +15 spd +2 spellcrit
-- 13512, -- Flask of Supreme Power +150 spd
},
},
["POTION_WISDOM"] = {
["texture"] = "INV_Potion_06",
["description"] = AUTOBAR_CLASS_WISDOMPOTIONS,
["items"] = {
3383, -- Elixir of Wisdom 6 60
},
},
["POTION_DEFENSE"] = {
["texture"] = "INV_Potion_66",
["description"] = AUTOBAR_CLASS_DEFENSEPOTIONS,
["items"] = {
5997, -- Elixir of Minor Defense 50 60
3389, -- Elixir of Defense 150 60
8951, -- Elixir of Greater Defense 250 60
13445, -- Elixir of Superior Defense 450 60
},
},
["POTION_TROLL"] = {
["texture"] = "INV_Potion_80",
["description"] = AUTOBAR_CLASS_TROLLBLOODPOTIONS,
["items"] = {
3382, -- Weak Troll's Blood Potion 2/5 60
3388, -- Strong Troll's Blood Potion 6/5 60
3826, -- Mighty Troll's Blood Potion 12/5 60
20004, -- Major Troll's Blood Potion 20/5 60
},
},
----------------
["SCROLL_AGILITY"] = {
["texture"] = "INV_Scroll_02",
["targetted"] = true,
["description"] = AUTOBAR_CLASS_SCROLLOFAGILITY,
["items"] = {
3012, -- Scroll of Agility
1477, -- Scroll of Agility II
4425, -- Scroll of Agility III
10309, -- Scroll of Agility IV
},
},
["SCROLL_INTELLECT"] = {
["texture"] = "INV_Scroll_01",
["targetted"] = true,
["description"] = AUTOBAR_CLASS_SCROLLOFINTELLECT,
["items"] = {
955, -- Scroll of Intellect
2290, -- Scroll of Intellect II
4419, -- Scroll of Intellect III
10308, -- Scroll of Intellect IV
12458, -- Juju Guile 40
},
},
["SCROLL_PROTECTION"] = {
["texture"] = "INV_Scroll_07",
["targetted"] = true,
["description"] = AUTOBAR_CLASS_SCROLLOFPROTECTION,
["items"] = {
3013, -- Scroll of Protection
1478, -- Scroll of Protection II
4421, -- Scroll of Protection III
10305, -- Scroll of Protection IV
},
},
["SCROLL_SPIRIT"] = {
["texture"] = "INV_Scroll_01",
["targetted"] = true,
["description"] = AUTOBAR_CLASS_SCROLLOFSPIRIT,
["items"] = {
1181, -- Scroll of Spirit
1712, -- Scroll of Spirit II
4424, -- Scroll of Spirit III
10306, -- Scroll of Spirit IV
},
},
["SCROLL_STAMINA"] = {
["texture"] = "INV_Scroll_07",
["targetted"] = true,
["description"] = AUTOBAR_CLASS_SCROLLOFSTAMINA,
["items"] = {
1180, -- Scroll of Stamina
1711, -- Scroll of Stamina II
4422, -- Scroll of Stamina III
10307, -- Scroll of Stamina IV
},
},
["SCROLL_STRENGTH"] = {
["texture"] = "INV_Scroll_02",
["targetted"] = true,
["description"] = AUTOBAR_CLASS_SCROLLOFSTRENGTH,
["items"] = {
954, -- Scroll of Strength 5
2289, -- Scroll of Strength II 9
4426, -- Scroll of Strength III 13
10310, -- Scroll of Strength IV 17
12451, -- Juju Power 30
},
},
["BUFF_ATTACKPOWER"] = {
["texture"] = "INV_Misc_MonsterScales_07",
["targetted"] = true,
["description"] = AUTOBAR_CLASS_BUFF_ATTACKPOWER,
["items"] = {
12820, -- Winterfall Firewater 35 20m
12460, -- Juju Might 40 30m
},
},
["BUFF_ATTACKSPEED"] = {
["texture"] = "INV_Misc_MonsterScales_17",
["targetted"] = true,
["description"] = AUTOBAR_CLASS_BUFF_ATTACKSPEED,
["items"] = {
12450, -- Juju Flurry 3% 20s
},
},
["BUFF_DODGE"] = {
["texture"] = "INV_Misc_MonsterScales_17",
["targetted"] = true,
["description"] = AUTOBAR_CLASS_BUFF_DODGE,
["items"] = {
12459, -- Juju Escape 5% 10s
},
},
["BUFF_FROST"] = {
["texture"] = "INV_Misc_MonsterScales_09",
["targetted"] = true,
["description"] = AUTOBAR_CLASS_BUFF_FROST,
["items"] = {
12457, -- Juju Chill 15 10m
},
},
["BUFF_FIRE"] = {
["texture"] = "INV_Misc_MonsterScales_15",
["targetted"] = true,
["description"] = AUTOBAR_CLASS_BUFF_FIRE,
["items"] = {
12455, -- Juju Ember 15 10m
},
},
----------------
["HEALPOTIONS"] = {
["description"] = AUTOBAR_CLASS_HEALPOTIONS;
["texture"] = "INV_Potion_54";
["limit"] = { ["downhp"] = { 70, 140, 140, 280, 455, 700, 1050} },
},
["PVP_HEALPOTIONS"] = {
["description"] = AUTOBAR_CLASS_PVP6HEALPOTIONS;
["texture"] = "INV_Potion_38";
["items"] = { 18839 },
["limit"] = { ["downhp"] = { 900 } },
},
["HEALTHSTONE"] = {
["description"] = AUTOBAR_CLASS_HEALTHSTONE;
["texture"] = "INV_Stone_04";
},
["WHIPPER_ROOT"] = {
["description"] = AUTOBAR_CLASS_WHIPPER_ROOT;
["texture"] = "INV_Misc_Food_55";
["items"] = { 11951 },
["limit"] = { ["downhp"] = { 700 } },
},
["ALTERAC_HEAL"] = {
["description"] = AUTOBAR_CLASS_BATTLEGROUNDHEALPOTIONS;
["texture"] = "INV_Potion_39";
["battleground"] = true;
["items"] = {
17349, -- Superior Healing Draught
17348, -- Major Healing Draught
},
},
----------------
["MANAPOTIONS"] = {
["description"] = AUTOBAR_CLASS_MANAPOTIONS;
["texture"] = "INV_Potion_76";
["limit"] = { ["downmana"] = { 140, 280, 455, 700, 900, 1350} },
},
["PVP_MANAPOTIONS"] = {
["description"] = AUTOBAR_CLASS_PVP6MANAPOTIONS;
["texture"] = "INV_Potion_80";
["items"] = { 18841 },
["limit"] = { ["downmana"] = { 900 }, },
},
["MANASTONE"] = {
["description"] = AUTOBAR_CLASS_MANASTONE;
["texture"] = "INV_Misc_Gem_Emerald_01";
},
["ALTERAC_MANA"] = {
["description"] = AUTOBAR_CLASS_BATTLEGROUNDMANAPOTIONS;
["texture"] = "INV_Potion_81";
["battleground"] = true;
["items"] = {
17352, -- Superior Mana Draught
17351, -- Major Mana Draught
},
},
["DREAMLESS_SLEEP"] = {
["description"] = AUTOBAR_CLASS_DREAMLESS_SLEEP;
["texture"] = "INV_Potion_83";
["items"] = {
12190, -- Dreamless Sleep
20002, -- Greater Dreamless Sleep
},
},
----------------
["NIGHT_DRAGONS_BREATH"] = {
["description"] = AUTOBAR_CLASS_NIGHT_DRAGONS_BREATH;
["texture"] = "INV_Misc_Food_45";
["limit"] = { ["downhp"] = { 456 }, ["downmana"] = { 456 }, },
["items"] = { 11952 },
},
["REJUVENATION_POTIONS"] = {
["description"] = AUTOBAR_CLASS_REJUVENATION_POTIONS;
["texture"] = "INV_Potion_47";
["items"] = {
2456, -- Minor Rejuvenation Potion
9144, -- Wildvine Potion
18253, -- Major Rejuvenation Potion
},
["limit"] = { ["downhp"] = { 150, 750, 1760 }, ["downmana"] = { 150, 750, 1760 }, },
},
----------------
["BATTLE_STANDARD"] = {
["description"] = AUTOBAR_CLASS_BATTLESTANDARD;
["texture"] = "INV_BannerPVP_01";
["battleground"] = true;
["items"] = {
18606, -- Alliance Battle Standard
18607, -- Horde Battle Standard
},
},
["BATTLE_STANDARD_AV"] = {
["description"] = AUTOBAR_CLASS_BATTLESTANDARDAV;
["texture"] = "INV_BannerPVP_02";
["location"] = AUTOBAR_ALTERACVALLEY;
["items"] = {
19045, -- Stormpike Battle Standard
19046, -- Frostwolf Battle Standard
},
},
["HOURGLASS_SAND"] = {
["description"] = AUTOBAR_CLASS_BATTLESTANDARDAV;
["texture"] = "INV_BannerPVP_02";
["location"] = AUTOBAR_BWL;
["items"] = {
19183, -- Hourglass Sand
},
},
----------------
["RUNES"] = {
["description"] = AUTOBAR_CLASS_DEMONIC_DARK_RUNES;
["texture"] = "Spell_Shadow_SealOfKings";
["limit"] = { ["downmana"] = { 900, 900 }, },
["items"] = {
20520, -- Dark Rune
12662, -- Demonic Rune
},
},
["TEAS"] = {
["description"] = AUTOBAR_CLASS_TEAS;
["texture"] = "INV_Drink_Milk_05";
["limit"] = { ["downhp"] = { 1050, 1050 }, ["downmana"] = { 1050, 1050 }, },
["items"] = {
15723, -- Tea with Sugar
61675, -- Nordanaar Herbal Tea
},
},
----------------
["PROTECTION_ARCANE"] = {
["description"] = AUTOBAR_CLASS_ARCANE_PROTECTION;
["texture"] = "INV_Potion_83";
["items"] = { 13461 },
},
["PROTECTION_FIRE"] = {
["description"] = AUTOBAR_CLASS_FIRE_PROTECTION;
["texture"] = "INV_Potion_24";
["items"] = { 6049, 13457 },
},
["PROTECTION_FROST"] = {
["description"] = AUTOBAR_CLASS_FROST_PROTECTION;
["texture"] = "INV_Potion_20";
["items"] = { 6050, 13456 },
},
["PROTECTION_NATURE"] = {
["description"] = AUTOBAR_CLASS_NATURE_PROTECTION;
["texture"] = "INV_Potion_22";
["items"] = { 6052, 13458 },
},
["PROTECTION_SHADOW"] = {
["description"] = AUTOBAR_CLASS_SHADOW_PROTECTION;
["texture"] = "INV_Potion_23";
["items"] = { 6048, 13459 },
},
["PROTECTION_SPELLS"] = {
["description"] = AUTOBAR_CLASS_SPELL_PROTECTION;
["texture"] = "INV_Potion_29";
["items"] = {
20080 -- Sheen of Zanza
},
},
["PROTECTION_HOLY"] = {
["description"] = AUTOBAR_CLASS_HOLY_PROTECTION;
["texture"] = "INV_Potion_09";
["items"] = { 6051 },
["noncombat"] = false,
},
["PROTECTION_DAMAGE"] = {
["description"] = AUTOBAR_CLASS_INVULNERABILITY_POTIONS;
["texture"] = "INV_Potion_62";
["items"] = { 3387 },
["noncombat"] = false,
},
["ACTION_POTIONS"] = {
["description"] = AUTOBAR_CLASS_FREE_ACTION_POTION;
["texture"] = "INV_Potion_04";
["items"] = {
20008, -- Living Action Potion
5634, -- Free Action Potion
},
},
["ZANZA"] = {
["description"] = AUTOBAR_CLASS_ZANZA;
["texture"] = "INV_Potion_04";
["items"] = {
20081, -- Swiftness of Zanza
20080, -- Sheen of Zanza
},
},
----------------
["HEARTHSTONE"] = {
["description"] = AUTOBAR_CLASS_HEARTHSTONE;
["texture"] = "INV_Misc_Rune_01";
["items"] = {
6948, -- HearthStone
},
},
----------------
["WATER"] = {
["description"] = AUTOBAR_CLASS_WATER;
["texture"] = "INV_Drink_10";
["noncombat"] = true,
},
["WATER_PERCENT"] = {
["description"] = AUTOBAR_CLASS_WATER_PERCENT;
["texture"] = "INV_Drink_04";
["noncombat"] = true,
},
["WATER_CONJURED"] = {
["description"] = AUTOBAR_CLASS_WATER_CONJURED;
["texture"] = "INV_Drink_18";
["noncombat"] = true,
},
["WATER_SPIRIT"] = {
["description"] = AUTOBAR_CLASS_WATER_SPIRIT;
["texture"] = "INV_Drink_16";
["noncombat"] = true,
},
["RAGEPOTIONS"] = {
["description"] = AUTOBAR_CLASS_RAGEPOTIONS;
["texture"] = "INV_Potion_24";
},
["ENERGYPOTIONS"] = {
["description"] = AUTOBAR_CLASS_ENERGYPOTIONS;
["texture"] = "INV_Drink_Milk_05";
["items"] = { 7676 },
},
["SWIFTNESSPOTIONS"] = {
["description"] = AUTOBAR_CLASS_SWIFTNESSPOTIONS;
["texture"] = "INV_Potion_95";
["items"] = { 20081, 2459, },
},
["SOULSHARDS"] = {
["description"] = AUTOBAR_CLASS_SOULSHARDS;
["texture"] = "INV_Misc_Gem_Amethyst_02";
["notusable"] = true;
["items"] = { 6265 },
},
--------------
["ARROWS"] = {
["description"] = AUTOBAR_CLASS_ARROWS;
["texture"] = "INV_Ammo_Arrow_02";
["notusable"] = true;
},
["BULLETS"] = {
["description"] = AUTOBAR_CLASS_BULLETS;
["texture"] = "INV_Ammo_Bullet_02";
["notusable"] = true;
},
["THROWN"] = {
["description"] = AUTOBAR_CLASS_THROWNWEAPON;
["texture"] = "INV_Axe_19";
["notusable"] = true;
},
--------------
["FOOD"] = {
["description"] = AUTOBAR_CLASS_FOOD;
["texture"] = "INV_Misc_Food_23";
["noncombat"] = true,
},
["FOOD_PERCENT"] = {
["description"] = AUTOBAR_CLASS_FOOD_PERCENT;
["texture"] = "INV_Misc_Food_60",
["custom"] = true;
},
["FOOD_PET_BREAD"] = {
["description"] = AUTOBAR_CLASS_FOOD_PET_BREAD;
["texture"] = "INV_Misc_Food_35";
["noncombat"] = true,
},
["FOOD_PET_CHEESE"] = {
["description"] = AUTOBAR_CLASS_FOOD_PET_CHEESE;
["texture"] = "INV_Misc_Food_37";
["noncombat"] = true,
},
["FOOD_PET_FISH"] = {
["description"] = AUTOBAR_CLASS_FOOD_PET_FISH;
["texture"] = "INV_Misc_Fish_22";
["noncombat"] = true,
},
["FOOD_PET_FRUIT"] = {
["description"] = AUTOBAR_CLASS_FOOD_PET_FRUIT;
["texture"] = "INV_Misc_Food_19";
["noncombat"] = true,
},
["FOOD_PET_FUNGUS"] = {
["description"] = AUTOBAR_CLASS_FOOD_PET_FUNGUS;
["texture"] = "INV_Mushroom_05";
["noncombat"] = true,
},
["FOOD_PET_MEAT"] = {
["description"] = AUTOBAR_CLASS_FOOD_PET_MEAT;
["texture"] = "INV_Misc_Food_14";
["noncombat"] = true,
},
["FOOD_WATER"] = {
["description"] = AUTOBAR_CLASS_FOOD_COMBO;
["texture"] = "INV_Misc_Food_33";
["noncombat"] = true,
},
["FOOD_CONJURED"] = {
["description"] = AUTOBAR_CLASS_FOOD_CONJURED;
["texture"] = "INV_Misc_Food_73CinnamonRoll";
["noncombat"] = true,
},
["DRINK_STAMINA"] ={
["description"] = AUTOBAR_CLASS_DRINK_STAMINA;
["texture"] = "INV_Drink_04";
},
["FOOD_STAMINA"] = {
["description"] = AUTOBAR_CLASS_FOOD_STAMINA;
["texture"] = "INV_Egg_03";
["noncombat"] = true,
},
["FOOD_AGILITY"] = {
["description"] = AUTOBAR_CLASS_FOOD_AGILITY;
["texture"] = "INV_Misc_Fish_13";
["noncombat"] = true,
},
["FOOD_MANAREGEN"] = {
["description"] = AUTOBAR_CLASS_FOOD_MANAREGEN;
["texture"] = "INV_Drink_17";
["noncombat"] = true,
},
["FOOD_HPREGEN"] = {
["description"] = AUTOBAR_CLASS_FOOD_HPREGEN;
["texture"] = "INV_Misc_Fish_19";
["noncombat"] = true,
},
["FOOD_STRENGTH"] = {
["description"] = AUTOBAR_CLASS_FOOD_STRENGTH;
["texture"] = "INV_Misc_Food_41";
["noncombat"] = true,
},
["FOOD_INTELLIGENCE"] = {
["description"] = AUTOBAR_CLASS_FOOD_INTELLIGENCE;
["texture"] = "INV_Misc_Food_63";
["noncombat"] = true,
},
["FOOD_SPELLPOWER"] = {
["description"] = AUTOBAR_CLASS_FOOD_SPELLPOWER;
["texture"] = "INV_Drink_19";
["noncombat"] = true,
},
["FOOD_ARATHI"] = {
["description"] = AUTOBAR_CLASS_FOOD_ARATHI;
["texture"] = "INV_Misc_Food_33";
["noncombat"] = true,
["location"] = AUTOBAR_ARATHIBASIN;
["items"] = {
20062,
20063, -- Arathi Basin Field Ration 1074 health 2202 mana 30 sec
20064,
20222, -- Defiler's Enriched Ration 2148 health 4410 mana 30 sec
20223,
20224,
20225,
20226,
20227,
},
},
["FOOD_WARSONG"] = {
["description"] = AUTOBAR_CLASS_FOOD_WARSONG;
["texture"] = "INV_Misc_Food_33";
["noncombat"] = true,
["location"] = AUTOBAR_WARSONGGULCH;
["items"] = { 19062, 19061, 19060 },
},
--------------
["SHARPENINGSTONES"] = {
["description"] = AUTOBAR_CLASS_SHARPENINGSTONES;
["texture"] = "INV_Stone_SharpeningStone_01";
["targetted"] = "WEAPON";
},
["WEIGHTSTONE"] = {
["description"] = AUTOBAR_CLASS_WEIGHTSTONE;
["texture"] = "INV_Stone_WeightStone_02";
["targetted"] = "WEAPON";
},
--------------
["POISON-CRIPPLING"] = {
["description"] = AUTOBAR_CLASS_POISON_CRIPPLING;
["texture"] = "INV_Potion_19";
["targetted"] = "WEAPON";
},
["POISON-DEADLY"] = {
["description"] = AUTOBAR_CLASS_POISON_DEADLY;
["texture"] = "Ability_Rogue_DualWeild";
["targetted"] = "WEAPON";
},
["POISON-INSTANT"] = {
["description"] = AUTOBAR_CLASS_POISON_INSTANT;
["texture"] = "Ability_Poisons";
["targetted"] = "WEAPON";
},
["POISON-MINDNUMBING"] = {
["description"] = AUTOBAR_CLASS_POISON_MINDNUMBING;
["texture"] = "Spell_Nature_NullifyDisease";
["targetted"] = "WEAPON";
},
["POISON-WOUND"] = {
["description"] = AUTOBAR_CLASS_POISON_WOUND;
["texture"] = "Ability_PoisonSting";
["targetted"] = "WEAPON";
},
--------------
["EXPLOSIVES"] = {
["description"] = AUTOBAR_CLASS_EXPLOSIVES;
["texture"] = "INV_Misc_Bomb_08";
["nosmartcast"] = true;
["targetted"] = true;
},
--------------
["MOUNTS_TROLL"] = {
["description"] = AUTOBAR_CLASS_MOUNTS_TROLL;
["texture"] = "Ability_Mount_Raptor";
["noncombat"] = true,
},
["MOUNTS_ORC"] = {
["description"] = AUTOBAR_CLASS_MOUNTS_ORC;
["texture"] = "Ability_Mount_BlackDireWolf",
["noncombat"] = true,
},
["MOUNTS_UNDEAD"] = {
["description"] = AUTOBAR_CLASS_MOUNTS_UNDEAD;
["texture"] = "Ability_Mount_Undeadhorse";
["noncombat"] = true,
},
["MOUNTS_TAUREN"] = {
["description"] = AUTOBAR_CLASS_MOUNTS_TAUREN;
["texture"] = "Ability_Mount_Kodo_01";
["noncombat"] = true,
},
["MOUNTS_HUMAN"] = {
["description"] = AUTOBAR_CLASS_MOUNTS_HUMAN;
["texture"] = "Ability_Mount_NightmareHorse";
["noncombat"] = true,
},
["MOUNTS_NIGHTELF"] = {
["description"] = AUTOBAR_CLASS_MOUNTS_NIGHTELF;
["texture"] = "Ability_Mount_BlackPanther";
["noncombat"] = true,
},
["MOUNTS_DWARF"] = {
["description"] = AUTOBAR_CLASS_MOUNTS_DWARF;
["texture"] = "Ability_Mount_MountainRam";
["noncombat"] = true,
},
["MOUNTS_GNOME"] = {
["description"] = AUTOBAR_CLASS_MOUNTS_GNOME;
["texture"] = "Ability_Mount_MechaStrider";
["noncombat"] = true,
},
["MOUNTS_SPECIAL"] = {
["description"] = AUTOBAR_CLASS_MOUNTS_SPECIAL;
["texture"] = "Ability_Mount_JungleTiger";
["noncombat"] = true,
},
["MOUNTS_QIRAJI"] = {
["description"] = AUTOBAR_CLASS_MOUNTS_QIRAJI;
["texture"] = "INV_Misc_QirajiCrystal_05";
["noncombat"] = true,
["location"] = AUTOBAR_AHN_QIRAJ;
},
--------------
["MANA_OIL"] = {
["texture"] = "INV_Potion_100";
["targetted"] = "WEAPON";
["description"] = AUTOBAR_CLASS_MANA_OIL;
},
["WIZARD_OIL"] = {
["texture"] = "INV_Potion_105";
["targetted"] = "WEAPON";
["description"] = AUTOBAR_CLASS_WIZARD_OIL;
},
["FISHINGITEMS"] = {
["texture"] = "INV_Misc_Food_26",
["targetted"] = "WEAPON",
["description"] = AUTOBAR_CLASS_FISHINGITEMS,
["items"] = {
6529, -- Shiny Bauble
6530, -- Nightcrawlers
6811, -- Aquadynamic Fish Lens
6532, -- Bright Baubles
6533, -- Aquadynamic Fish Attractors
},
},
["QUESTSTARTITEMS"] = {
["texture"] = "INV_letter_17",
["description"] = AUTOBAR_CLASS_QUESTSTARTITEMS,
["items"] = {
1307, -- Gold Pickup Schedule
1357, -- Captain Sander's Treasure Map
1962, -- Glowing Shadowhide Pendant
1972, -- Westfall Deed
2794, -- An Old History Book
2839, -- A Letter to Yvette
2874, -- An Unsent Letter
3317, -- A Talking Head
3668, -- Assassin's Contract
3706, -- Ensorcelled Parchment
3985, -- Monogrammed Sash
4056, -- Cortello's Riddle
4098, -- Carefully Folded Note
4433, -- Waterlogged Envelope
4613, -- Corroded Black Box
4614, -- Pendant of Myzrael
4851, -- Dirt-stained Map
4854, -- Demon Scarred Cloak
4881, -- Aged Envelope
4903, -- Eye of Burning Shadow
4926, -- Chen's Empty Keg
5099, -- Hoof of Lakota'mani
5102, -- Owatanka's Tailspike
5103, -- Washte Pawne's Feather
5138, -- Harvester's Head
5179, -- Moss-twined Heart
5352, -- Book: The Powers Below
5791, -- Henrig Lonebrow's Journal
5877, -- Cracked Silithid Carapace
6172, -- Lost Supplies
6196, -- Noboru's Cudgel
6497, -- Simple Parchment
6775, -- Tome of Divinity
6776, -- Tome of Valor
6916, -- Tome of Divinity
7666, -- Shattered Necklace
8524, -- Model 4711-FTZ Power Source
8623, -- OOX-17/TN Distress Beacon
8704, -- OOX-09/HL Distress Beacon
8705, -- OOX-22/FE Distress Beacon
9250, -- Ship Schedule
9254, -- Cuergo's Treasure Map
9326, -- Grime-Encrusted Ring
9370, -- Gordunni Scroll
10000, -- Margol's Horn
10441, -- Glowing Shard
10454, -- Essence of Eranikus
10589, -- Oathstone of Ysera's Dragonflight
10590, -- Pocked Black Box
10621, -- Runed Scroll
11116, -- A Mangled Journal
11446, -- A Crumpled Up Note
11463, -- Undelivered Parcel
11668, -- Flute of Xavaric
11818, -- Grimeslit Outhouse Key
12558, -- Blue-feathered Necklace
12563, -- Warlord Goretooth's Command
12564, -- Assassination Note
12771, -- Empty Firewater Flask
12780, -- General Drakkisath's Command
12842, -- Crudely-written Log
13140, -- Blood Red Key
13250, -- Head of Balnazzar
13920, -- Healthy Dragon Scale
14646, -- Northshire Gift Voucher
14647, -- Coldridge Valley Gift Voucher
14648, -- Shadowglen Gift Voucher
14649, -- Valley of Trials Gift Voucher
14650, -- Camp Narache Gift Voucher
14651, -- Deathknell Gift Voucher
16303, -- Ursangous's Paw
16304, -- Shadumbra's Head
16305, -- Sharptalon's Claw
16408, -- Befouled Water Globe
16782, -- Strange Water Globe
17008, -- Small Scroll
17115, -- Squirrel Token
17116, -- Squirrel Token
17126, -- Elegant Letter
17409, -- Encrusted Crystal Fragment
18356, -- Garona: A Study on Stealth and Treachery
18357, -- Codex of Defence
18358, -- The Arcanist's Cookbook
18359, -- The Light and How to Swing It
18360, -- Harnessing Shadows
18361, -- The Greatest Race of Hunters
18362, -- Holy Bologna: What the Light Won't Tell You
18363, -- Frost Shock and You
18364, -- The Emerald Dream
18401, -- Nostro's Compendium of Dragon Slaying
18422, -- Head of Onyxia
18423, -- Head of Onyxia
18513, -- A Dull and Flat Elven Blade
18628, -- Thorium Brotherhood Contract
18703, -- Ancient Petrified Leaf
18706, -- Arena Master
18769, -- Enchanted Thorium Platemail
18770, -- Enchanted Thorium Platemail
18771, -- Enchanted Thorium Platemail
18950, -- Chambermaid Pillaclencher's Pillow
18969, -- Pristine Yeti Hide
18972, -- Perfect Yeti Hide
18987, -- Blackhand's Command
19002, -- Head of Nefarian
19003, -- Head of Nefarian
19016, -- Vessel of Rebirth
19018, -- Dormant Wind Kissed Blade
19228, -- Beasts Deck
19257, -- Warlords Deck
19267, -- Elementals Deck
19277, -- Portals Deck
19424, -- Sayge's Fortune #24
19443, -- Sayge's Fortune #25
19452, -- Sayge's Fortune #27
19802, -- Heart of Hakkar
20310, -- Flayed Demon Skin
20460, -- Brann Bronzebeard's Lost Letter
20644, -- Nightmare Engulfed Object
20741, -- Deadwood Ritual Totem
20742, -- Winterfall Ritual Totem
20806, -- Logistics Task Briefing X
20807, -- Logistics Task Briefing I
20939, -- Logistics Task Briefing II
20941, -- Combat Task Briefing XII
20942, -- Combat Task Briefing III
20943, -- Tactical Task Briefing X
20944, -- Tactical Task Briefing IX
20945, -- Tactical Task Briefing II
20946, -- Tactical Task Briefing III
20947, -- Tactical Task Briefing IV
20948, -- Tactical Task Briefing V
20949, -- Magical Ledger
21166, -- Tactical Task Briefing VII
21167, -- Tactical Task Briefing VIII
21220, -- Head of Ossirian the Unscarred
21221, -- Eye of C'Thun
21230, -- Ancient Qiraji Artifact
21245, -- Tactical Task Briefing I
21246, -- Combat Task Briefing I
21247, -- Combat Task Briefing II
21248, -- Combat Task Briefing IV
21249, -- Combat Task Briefing V
21250, -- Combat Task Briefing VI
21251, -- Combat Task Briefing VII
21252, -- Combat Task Briefing VIII
21253, -- Combat Task Briefing IX
21255, -- Combat Task Briefing X
21256, -- Combat Task Briefing XI
21257, -- Logistics Task Briefing IV
21261, -- Logistics Task Briefing VI
21262, -- Logistics Task Briefing VIII
21263, -- Logistics Task Briefing VII
21265, -- Logistics Task Briefing IX
21378, -- Logistics Task Briefing I
21379, -- Logistics Task Briefing II
21380, -- Logistics Task Briefing III
21381, -- Logistics Task Briefing IX
21382, -- Loistics Task Briefing V
21384, -- Logistics Task Briefing VIII
21385, -- Logistics Task Briefing X
21514, -- Logistics Task Briefing XI
21750, -- Combat Task Briefing II
21751, -- Tactical Task Briefing III
22520, -- The Phylactery of Kel'Thuzad
22600, -- Craftsman's Writ - Dense Weightstone
22601, -- Craftsman's Writ - Imperial Plate Chest
22602, -- Craftsman's Writ - Volcanic Hammer
22603, -- Craftsman's Writ - Huge Thorium Battleaxe
22605, -- Craftsman's Writ - Wicked Leather Headband
22606, -- Craftsman's Writ - Rugged Armor Kit
22607, -- Craftsman's Writ - Wicked Leather Belt
22608, -- Craftsman's Writ - Runic Leather Pants
22609, -- Craftsman's Writ - Brightcloth Pants
22610, -- Craftsman's Writ - Runecloth Boots
22611, -- Craftsman's Writ - Runecloth Bag
22612, -- Craftsman's Writ - Runecloth Robe
22613, -- Craftsman's Writ - Goblin Sapper Charge
22614, -- Craftsman's Writ - Thorium Grenade
22615, -- Craftsman's Writ - Gnomish Battle Chicken
22616, -- Craftsman's Writ - Thorium Tube
22617, -- Craftsman's Writ - Major Mana Potion
22618, -- Craftsman's Writ - Major Healing Potion
22620, -- Craftsman's Writ - Greater Arcane Protection Potion
22621, -- Craftsman's Writ - Flask of Petrification
22622, -- Craftsman's Writ - Stonescale Eel
22623, -- Craftsman's Writ - Plated Armorfish
22624, -- Craftsman's Writ - Lightning Eel
22719, -- Omarion's Handbook
22723, -- A Letter from the Keeper of the Rolls
22727, -- Frame of Atiesh
22970, -- A Bloodstained Envelope
22972, -- A Careworn Note
22973, -- A Crumpled Missive
22974, -- A Ragged Page
22975, -- A Smudged Document
22977, -- A Torn Letter
23179, -- Flame of Orgrimmar
23180, -- Flame of Thunder Bluff
23181, -- Flame of the Undercity
23182, -- Flame of Stormwind
23183, -- Flame of Ironforge
23184, -- Flame of Darnassus
--Turtle WoW Quest Start Items--
985, -- Tome of Khadgar's Unlocking
1567, -- Tome of Khadgar's Unlocking II
4158, -- Tome of Khadgar's Unlocking III
6075, -- Vime's Report
8881, -- Tome of Khadgar's Unlocking IV
9572, -- Glyphic Rune
51855, -- Dirty Old Ring
70027, -- Broken Spear
81275, -- Intact Pounder Machine - Drops Off Crowd Pummeler 9-60
},
},
["QUESTUSEITEMS"] = {
["texture"] = "INV_gizmo_09",
["description"] = AUTOBAR_CLASS_QUESTUSEITEMS,