This repository has been archived by the owner on Apr 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathProtected Items.xml
1161 lines (1081 loc) · 54.5 KB
/
Protected Items.xml
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
<ProtectedItems>
<!-- ProtectedItems element
A somewhat complete list of items with which to populate your ProtectedItems.xml file.
We recommend that you use Notepad++ (http://notepad-plus-plus.org) to edit XML
as proper colorization greatly aids in the location of problems.
If you decide you don't need certain sections of this file, we recommend you comment them
out, rather than actually delete the lines. We've tried to keep the items in each subsection
sorted appropriately, such that commenting out is easy to do. Please recall that XML does
*not* allow nesting comments.
Latest copy of this Profile is available at:
http://www.thebuddyforum.com/mediawiki/index.php?title=Honorbuddy:_A_prototypical_ProtectedItems_Element
LICENSE:
This Buddy Wiki contribution from Bossland GmbH is licensed under
the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/
or send a letter to
Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.
Version History (reverse chronological):
v.1.11, 8-Jun-2011, chinajade - Wow, what an oversight! All these months
and nobody mentioned that metal bars were missing.
Now repaired.
v1.10, 22-May-2011, chinajade - Added Mysterious Egg and Cracked Egg.
Thanks to Kickazz006 for pointing out the omission.
v1.9, 3-May-2011, chinajade - Added Coarse Stone. Thanks go to tjwow2011
for pointing it out the omission. Also, removed
mage conjured items, as Honorbuddy
automatically protects these now.
v1.8, 29-Apr-2011, chinajade - Added DeepSea Scales to leatherworking goods.
Thanks to Iceoner for the save.
v1.7, 18-Jan-2011, bobby53 - added Archaeology keystones. Protected
against vendoring due to value in leveling
Archaeology as well as on the AH
v1.6, 16-Dec-2010, chinajade - added Tabards.
Tabards are not a mistake, as many yield reputation
boosts. If they are in our backpack, its because
we've taken the trouble to acquire them.
We don't want Honorbuddy selling them off.
v1.5, 7-Dec-2010, chinajade - added all Harvests as ProtectedItems.
If a Profile Writer fails to include a current
<ForceMail> block, we prefer the valuable Harvests to
clog our backpack instead of being sold by Honorbuddy.
Recall that if an item is on both the <ProtectedItems>
list and <ForceMail> list, Honorbuddy will mail
the item. Thus, putting the items on this list
is the conservative thing to do.
v1.4, 4-Dec-2010, chinajade - attempted to align with new Cata items.
We may have missed some things, but tried to pull as much
info from sources as we could.
v1.3, 28-Nov-2010, Kickazz006 - removed the "Basic Items: Ammo, Arrows" section
as these items are no longer useful, and we sure
don't want the stuff clogging our inventory.
v1.2, 20-Sep-2010, chinajade - added items that advance reputation with factions
(like Obsidian Warbeads, Deadwood Headdress Feathers,
etc). Also, added farmed Minipets. Did all this in
case a Profile forgets to include some important
stuff in the ProtectedItems or ForcedMail lists.
If the user doesn't want these items, its easy
enough to add them to LootFilter.
v1.1, 7-Sep-2010, chinajade - added "Simple Wood" since some people use it
to start cooking fires
v1.0, 29-Aug-2010, chinajade - initial release
-->
<!-- ========== Basic Items (alphabetically) ========== -->
<Item Name="Hearthstone" Entry="6948" />
<!-- Basic Items: Bandages (ordered by skill to make) -->
<Item Name="Linen Bandage" Entry="1251" />
<Item Name="Heavy Linen Bandage" Entry="2581" />
<Item Name="Wool Bandage" Entry="3530" />
<Item Name="Heavy Wool Bandage" Entry="3531" />
<Item Name="Silk Bandage" Entry="6450" />
<Item Name="Arathi Basin Silk Bandage" Entry="20067" />
<Item Name="Defiler's Silk Bandage" Entry="20235" />
<Item Name="Highlander's Silk Bandage" Entry="20244" />
<Item Name="Warsong Gulch Silk Bandage" Entry="19068" />
<Item Name="Manual: Heavy Silk Bandage" Entry="16112" />
<Item Name="Heavy Silk Bandage" Entry="6451" />
<Item Name="Manual: Mageweave Bandage" Entry="16113" />
<Item Name="Mageweave Bandage" Entry="8544" />
<Item Name="Arathi Basin Mageweave Bandage" Entry="20065" />
<Item Name="Defiler's Mageweave Bandage" Entry="20232" />
<Item Name="Highlander's Mageweave Bandage" Entry="20237" />
<Item Name="Warsong Gulch Mageweave Bandage" Entry="19067" />
<Item Name="Heavy Mageweave Bandage" Entry="8545" />
<Item Name="Runecloth Bandage" Entry="14529" />
<Item Name="Arathi Basin Runecloth Bandage" Entry="20066" />
<Item Name="Defiler's Runecloth Bandage" Entry="20234" />
<Item Name="Highlander's Runecloth Bandage" Entry="20243" />
<Item Name="Warsong Gulch Runecloth Bandage" Entry="19066" />
<Item Name="Heavy Runecloth Bandage" Entry="14530" />
<Item Name="Alterac Heavy Runecloth Bandage" Entry="19307" />
<Item Name="Manual: Netherweave Bandage" Entry="21992" />
<Item Name="Netherweave Bandage" Entry="21990" />
<Item Name="Manual: Heavy Netherweave Bandage" Entry="21993" />
<Item Name="Heavy Netherweave Bandage" Entry="21991" />
<Item Name="Frostweave Bandage" Entry="34721" />
<Item Name="Manual: Heavy Frostweave Bandage" Entry="39152" />
<Item Name="Heavy Frostweave Bandage" Entry="34722" />
<Item Name="Dense Frostweave Bandage" Entry="38640" />
<Item Name="Thick Frostweave Bandage" Entry="38643" />
<Item Name="Baradin's Wardens Bandage" Entry="63391" />
<Item Name="Hellscream's Reach Bandage" Entry="64995" />
<Item Name="Embersilk Bandage" Entry="74556" />
<Item Name="Heavy Embersilk Bandage" Entry="74557" />
<Item Name="Dense Embersilk Bandage" Entry="88893" />
<Item Name="Field Bandage: Dense Embersilk" Entry="74558" />
<!-- Basic Items: Drink (ordered by level) -->
<!-- There are far too many drink items to list them all, and most are never used.
We only list the 'mainstream' items here, sorted by level. If a "Stat food" is
needed, please place it in the "Basic Items: Drink & Food with Stats (ordered by level)"
section below.
We keep the food & drink sections separated, as warrior and rogues
could care less about drinks, and healing classes could care less about food.
-->
<Item Name="Refreshing Spring Water" Entry="159" />
<Item Name="Ice Cold Milk" Entry="1179" />
<Item Name="Melon Juice" Entry="1205" />
<Item Name="Sweet Nectar" Entry="1708" />
<Item Name="Moonberry Juice" Entry="1645" />
<Item Name="Morning Glory Dew" Entry="8766" />
<Item Name="Footman's Waterskin" Entry="24007" />
<Item Name="Grunt's Waterskin" Entry="24006" />
<Item Name="Filtered Draenic Water" Entry="28399" />
<Item Name="Purified Draenic Water" Entry="27860" />
<Item Name="Star's Lament" Entry="32455" />
<Item Name="Star's Tears" Entry="32453" />
<Item Name="Sweetened Goat's Milk" Entry="35954" />
<Item Name="Pungent Seal Whey" Entry="33444" />
<Item Name="Honeymint Tea" Entry="33445" />
<Item Name="Mei's Masterful Brew" Entry="63251" />
<Item Name="Greasy Whale Milk" Entry="59029" />
<Item Name="Sparkling Oasis Water" Entry="58256" />
<Item Name="Highland Spring Water" Entry="58257" />
<!-- Basic Items: Drink & Food with Stats (ordered by level to use) -->
<Item Name="Alterac Manna Biscuit" Entry="19301" />
<Item Name="Enriched Manna Biscuit" Entry="13724" />
<Item Name="Fisherman's Feast" Entry="33052" />
<Item Name="Fish Feast" Entry="43015" />
<Item Name="Jillian's Gourmet Fish Feast" Entry="45279" />
<!-- Basic Items: Food (ordered by level) -->
<!-- There are far too many food items to list them all, and most are never used.
We only list the 'mainstream' items here, sorted by level. If a "Stat food" is
needed, please place it in the "Basic Items: Drink & Food with Stats (ordered by level)"
section.
We keep the food & drink sections separated, as warrior and rogues
could care less about drinks, and healing classes could care less about food.
-->
<Item Name="Freshly Baked Bread" Entry="4541" />
<Item Name="Haunch of Meat" Entry="2287" />
<Item Name="Shiny Red Apple" Entry="4536" />
<Item Name="Tel'Abim Banana" Entry="4537" />
<Item Name="Tough Hunk of Bread" Entry="4540" />
<Item Name="Tough Jerky" Entry="117" />
<Item Name="Moist Cornbread" Entry="4542" />
<Item Name="Mutton Chop" Entry="3770" />
<Item Name="Snapvine Watermelon" Entry="4538" />
<Item Name="Goldenbark Apple" Entry="4539" />
<Item Name="Mulgore Spice Bread" Entry="4544" />
<Item Name="Wild Hog Shank" Entry="3771" />
<Item Name="Cured Ham Steak" Entry="4599" />
<Item Name="Moon Harvest Pumpkin" Entry="4602" />
<Item Name="Soft Banana Bread" Entry="4601" />
<Item Name="Alterac Swiss" Entry="8932" />
<Item Name="Deep Fried Plantains" Entry="8953" />
<Item Name="Homemade Cherry Pie" Entry="8950" />
<Item Name="Roasted Quail" Entry="8952" />
<Item Name="Garadar Sharp" Entry="27857" />
<Item Name="Mag'har Grainbread" Entry="27855" />
<Item Name="Skethyl Berries" Entry="27856" />
<Item Name="Smoked Talbuk Venison" Entry="27854" />
<Item Name="Bladespire Bagel" Entry="29449" />
<Item Name="Clefthoof Ribs" Entry="29451" />
<Item Name="Crusty Flatbread" Entry="33449" />
<Item Name="Mag'har Mild Cheese" Entry="29448" />
<Item Name="Salted Venison" Entry="33454" />
<Item Name="Sour Goat Cheese" Entry="33443" />
<Item Name="Telaari Grapes" Entry="29450" />
<Item Name="Tundra Berries" Entry="35949" />
<Item Name="Briny Hardcheese" Entry="35952" />
<Item Name="Mead Basted Caribou" Entry="35953" />
<Item Name="Savory Snowplum" Entry="35948" />
<Item Name="Sweet Potato Bread" Entry="35950" />
<Item Name="Violet Morel" Entry="58266" />
<Item Name="Sour Green Apple" Entry="58264" />
<Item Name="Smoked String Cheese" Entry="58258" />
<Item Name="Sliced Raw Billfish" Entry="58262" />
<Item Name="Roasted Beef" Entry="58268" />
<Item Name="Pine Nut Bread" Entry="58260" />
<Item Name="Scarlet Polypore" Entry="58267" />
<Item Name="Baked Rockfish" Entry="62661" />
<Item Name="Massive Turkey Leg" Entry="58269" />
<Item Name="Highland Sheep Cheese" Entry="58259" />
<Item Name="Highland Pomegranate" Entry="58265" />
<Item Name="Grilled Shark" Entry="58263" />
<Item Name="Buttery Wheat Roll" Entry="58261" />
<!-- Basic Items: Food, Hunter's Exotic Pet (ordered by level to use) -->
<Item Name="Kibler's Bits" Entry="33874" />
<Item Name="Sporeling Snack" Entry="27656" />
<!-- Basic Items: Potions, Flasks (alphabetical) -->
<Item Name="Flask of Battle" Entry="65455" />
<Item Name="Flask of Blinding Light" Entry="22861" />
<Item Name="Flask of Chromatic Resistance" Entry="13513" />
<Item Name="Flask of Chromatic Wonder" Entry="33208" />
<Item Name="Flask of Distilled Wisdom" Entry="13511" />
<Item Name="Flask of Endless Rage" Entry="46377" />
<Item Name="Flask of Flowing Water" Entry="67438" />
<Item Name="Flask of Fortification" Entry="22851" />
<Item Name="Flask of the Frost Wyrm" Entry="46376" />
<Item Name="Flask of Mighty Restoration" Entry="22853" />
<Item Name="Flask of Petrification" Entry="13506" />
<Item Name="Flask of Pure Death" Entry="22866" />
<Item Name="Flask of Pure Mojo" Entry="46378" />
<Item Name="Flask of Relentless Assault" Entry="22854" />
<Item Name="Flask of Steelskin" Entry="58085" />
<Item Name="Flask of Stoneblood" Entry="46379" />
<Item Name="Flask of Supreme Power" Entry="13512" />
<Item Name="Flask of the Draconic Mind" Entry="58086" />
<Item Name="Flask of the North" Entry="47499" />
<Item Name="Flask of the Titans" Entry="13510" />
<Item Name="Flask of the Winds" Entry="58087" />
<Item Name="Flask of Titanic Strength" Entry="58088" />
<Item Name="Shattrath Flask of Blinding Light" Entry="35717" />
<Item Name="Shattrath Flask of Fortification" Entry="32898" />
<Item Name="Shattrath Flask of Mighty Restoration" Entry="32899" />
<Item Name="Shattrath Flask of Pure Death" Entry="35716" />
<Item Name="Shattrath Flask of Relentless Assault" Entry="32901" />
<Item Name="Shattrath Flask of Supreme Power" Entry="32900" />
<Item Name="Unstable Flask of the Bandit" Entry="32599" />
<Item Name="Unstable Flask of the Beast" Entry="32598" />
<Item Name="Unstable Flask of the Elder" Entry="32596" />
<Item Name="Unstable Flask of the Physician" Entry="32600" />
<Item Name="Unstable Flask of the Soldier" Entry="32597" />
<Item Name="Unstable Flask of the Sorcerer" Entry="32601" />
<!-- Basic Items: Potions, Health (ordered by level to use) -->
<Item Name="Minor Healing Potion" Entry="118" />
<Item Name="Lesser Healing Potion" Entry="858" />
<Item Name="Discolored Healing Potion" Entry="4596" />
<Item Name="Healing Potion" Entry="929" />
<Item Name="Greater Healing Potion" Entry="1710" />
<Item Name="Superior Healing Potion" Entry="3928" />
<Item Name="Combat Healing Potion" Entry="18839" />
<Item Name="Superior Healing Draught" Entry="17349" />
<Item Name="Major Healing Potion" Entry="13446" />
<Item Name="Major Healing Draught" Entry="17348" />
<Item Name="Super Healing Potion" Entry="22829" />
<Item Name="Argent Healing Potion" Entry="43531" />
<Item Name="Auchenai Healing Potion" Entry="32947" />
<Item Name="Bottled Nethergon Vapor" Entry="32905" />
<Item Name="Crystal Healing Potion" Entry="33934" />
<Item Name="Healing Potion Injector" Entry="33092" />
<Item Name="Rulkster's Secret Sauce" Entry="32763" />
<Item Name="Volatile Healing Potion" Entry="28100" />
<Item Name="Fel Regeneration Potion" Entry="31676" />
<Item Name="Major Combat Healing Potion" Entry="31838" />
<Item Name="Major Combat Healing Potion" Entry="31839" />
<Item Name="Major Combat Healing Potion" Entry="31852" />
<Item Name="Major Combat Healing Potion" Entry="31853" />
<Item Name="Endless Healing Potion" Entry="43569" />
<Item Name="Resurgent Healing Potion" Entry="39671" />
<Item Name="Runic Healing Potion" Entry="33447" />
<Item Name="Runic Healing Injector" Entry="41166" />
<Item Name="Mythical Healing Potion" Entry="57191" />
<!-- Basic Items: Potions, Mana (ordered by level to use) -->
<Item Name="Minor Mana Potion" Entry="2455" />
<Item Name="Lesser Mana Potion" Entry="3385" />
<Item Name="Mana Potion" Entry="3827" />
<Item Name="Greater Mana Potion" Entry="6149" />
<Item Name="Superior Mana Draught" Entry="17352" />
<Item Name="Superior Mana Potion" Entry="13443" />
<Item Name="Combat Mana Potion" Entry="18841" />
<Item Name="Major Mana Draught" Entry="17351" />
<Item Name="Major Mana Potion" Entry="13444" />
<Item Name="Super Mana Potion" Entry="22832" />
<Item Name="Argent Mana Potion" Entry="43530" />
<Item Name="Auchenai Mana Potion" Entry="32948" />
<Item Name="Bottled Nethergon Energy" Entry="32902" />
<Item Name="Crystal Mana Potion" Entry="33935" />
<Item Name="Mana Potion Injector" Entry="33093" />
<Item Name="Rulkster's Brain Juice" Entry="32762" />
<Item Name="Unstable Mana Potion" Entry="28101" />
<Item Name="Fel Mana Potion" Entry="31677" />
<Item Name="Major Combat Mana Potion" Entry="31840" />
<Item Name="Major Combat Mana Potion" Entry="31841" />
<Item Name="Major Combat Mana Potion" Entry="31854" />
<Item Name="Major Combat Mana Potion" Entry="31855" />
<Item Name="Endless Mana Potion" Entry="43570" />
<Item Name="Icy Mana Potion" Entry="40067" />
<Item Name="Runic Mana Potion" Entry="33448" />
<Item Name="Runic Mana Injector" Entry="42545" />
<Item Name="Mythical Battle Draught" Entry="67416" />
<Item Name="Mythical Mana Potion" Entry="57192" />
<!-- Basic Items: Potions, Mana Oil (ordered by level to use) -->
<Item Name="Minor Mana Oil" Entry="20745" />
<Item Name="Lesser Mana Oil" Entry="20747" />
<Item Name="Brilliant Mana Oil" Entry="20748" />
<Item Name="Superior Mana Oil" Entry="22521" />
<Item Name="Exceptional Mana Oil" Entry="36899" />
<!-- Basic Items: Potions, Rejuvenation [Health & Mana] (ordered by level to use) -->
<Item Name="Minor Rejuvenation Potion" Entry="2456" />
<Item Name="Dreamless Sleep Potion" Entry="12190" />
<Item Name="Wildvine Potion" Entry="9144" />
<Item Name="Major Rejuvenation Potion" Entry="18253" />
<Item Name="Greater Dreamless Sleep Potion" Entry="20002" />
<Item Name="Noth's Special Brew" Entry="39327" />
<Item Name="Mad Alchemist's Potion" Entry="34440" />
<Item Name="Major Dreamless Sleep Potion" Entry="22836" />
<Item Name="Potion of Nightmares" Entry="40081" />
<Item Name="Super Rejuvenation Potion" Entry="22850" />
<Item Name="Powerful Rejuvenation Potion" Entry="40087" />
<Item Name="Mighty Rejuvenation Potion" Entry="57193" />
<!-- Basic Items: Potions, Utility (ordered alphabetically) -->
<Item Name="Big Cauldron of Battle" Entry="92688" />
<Item Name="Cauldron of Battle" Entry="92643" />
<Item Name="Draught of War" Entry="67415" />
<Item Name="Earthen Potion" Entry="58090" />
<Item Name="Firelord's Draught" Entry="67944" />
<Item Name="Golemblood Potion" Entry="58146" />
<Item Name="Mysterious Potion" Entry="57099" />
<Item Name="Potion of Concentration" Entry="57194" />
<Item Name="Potion of Deepholm" Entry="58487" />
<Item Name="Potion of Illusion" Entry="58489" />
<Item Name="Potion of the Tol'vir" Entry="58145" />
<Item Name="Potion of Treasure Finding" Entry="58488" />
<Item Name="Rogue's Draught" Entry="63300" />
<Item Name="Volcanic Potion" Entry="58091" />
<!-- ========== Classes (alphabetically) ========== -->
<!-- Class: Death Knight -->
<Item Name="Corpse Dust" Entry="37201" />
<!-- Class: Druid -->
<!-- Class: Druid, reagents (alphabetical) -->
<Item Name="Ashwood Seed" Entry="17036" />
<Item Name="Flintweed Seed" Entry="22147" />
<Item Name="Hornbeam Seed" Entry="17037" />
<Item Name="Ironwood Seed" Entry="17038" />
<Item Name="Maple Seed" Entry="17034" />
<Item Name="Starleaf Seed" Entry="44614" />
<Item Name="Stranglethorn Seed" Entry="17035" />
<Item Name="Wild Berries" Entry="17021" />
<Item Name="Wild Quillvine" Entry="22148" />
<Item Name="Wild Spineleaf" Entry="44605" />
<Item Name="Wild Thornroot" Entry="17026" />
<!-- Class: Mage -->
<!-- Class: Mage, reagents (alphabetical) -->
<Item Name="Arcane Powder" Entry="17020" />
<Item Name="Light Feather" Entry="17056" />
<Item Name="Rune of Portals" Entry="17032" />
<Item Name="Rune of Teleportation" Entry="17031" />
<!-- Class: Mage, Conjured items
All conjured items are now protected by Honorbuddy automatically.
So, they no longer exist in this list.
-->
<!-- Class: Paladin -->
<!-- Class: Paladin, reagents (alphabetical) -->
<Item Name="Symbol of Divinity" Entry="17033" />
<Item Name="Symbol of Kings" Entry="21177" />
<!-- Class: Priest -->
<Item Name="Devout Candle" Entry="44615" />
<Item Name="Holy Candle" Entry="17028" />
<Item Name="Sacred Candle" Entry="17029" />
<!-- Class Rogue -->
<!-- Class: Rogue, poisons (alphabetical) -->
<Item Name="Anesthetic Poison" Entry="21835" />
<Item Name="Anesthetic Poison II" Entry="43237" />
<Item Name="Crippling Poison" Entry="3775" />
<Item Name="Crippling Poison II" Entry="3776" />
<Item Name="Deadly Poison" Entry="2892" />
<Item Name="Deadly Poison II" Entry="2893" />
<Item Name="Deadly Poison III" Entry="8984" />
<Item Name="Deadly Poison IV" Entry="8985" />
<Item Name="Deadly Poison V" Entry="20844" />
<Item Name="Deadly Poison VI" Entry="22053" />
<Item Name="Deadly Poison VII" Entry="22054" />
<Item Name="Deadly Poison VIII" Entry="43232" />
<Item Name="Deadly Poison IX" Entry="43233" />
<Item Name="Instant Poison" Entry="6947" />
<Item Name="Instant Poison II" Entry="6949" />
<Item Name="Instant Poison III" Entry="6950" />
<Item Name="Instant Poison IV" Entry="8926" />
<Item Name="Instant Poison V" Entry="8927" />
<Item Name="Instant Poison VI" Entry="8928" />
<Item Name="Instant Poison VII" Entry="21927" />
<Item Name="Instant Poison VIII" Entry="43230" />
<Item Name="Instant Poison IX" Entry="43231" />
<Item Name="Mind-numbing Poison" Entry="5237" />
<Item Name="Mind-numbing Poison II" Entry="6951" />
<Item Name="Mind-numbing Poison III" Entry="9186" />
<Item Name="Wound Poison" Entry="10918" />
<Item Name="Wound Poison II" Entry="10920" />
<Item Name="Wound Poison III" Entry="10921" />
<Item Name="Wound Poison IV" Entry="10922" />
<Item Name="Wound Poison V" Entry="22055" />
<Item Name="Wound Poison VI" Entry="43234" />
<Item Name="Wound Poison VII" Entry="43235" />
<!-- Class: Shaman -->
<!-- Class: Shaman reagents (alphabetical) -->
<Item Name="Ankh" Entry="17030" />
<Item Name="Fish Oil" Entry="17058" />
<Item Name="Shiny Fish Scales" Entry="17057" />
<!-- Class: Shaman, Totems (alphabetical) -->
<Item Name="Air Totem" Entry="5178" />
<Item Name="Earth Totem" Entry="5175" />
<Item Name="Fire Totem" Entry="5176" />
<Item Name="Water Totem" Entry="5177" />
<!-- Class: Warlock -->
<!-- Class: Warlock, consumables (alphabetical) -->
<Item Name="Demonic Figurine" Entry="16583" />
<Item Name="Infernal Stone" Entry="5565" />
<Item Name="Soulshard" Entry="43836" />
<!-- ========== Harvests (alphabetically) ========== -->
<!-- Harvests: Cloth & Spider's Silk (ordered by level, then alphabetically) -->
<Item Name="Linen Cloth" Entry="2589" />
<Item Name="Wool Cloth" Entry="2592" />
<Item Name="Spider's Silk" Entry="3182" />
<Item Name="Silk Cloth" Entry="4306" />
<Item Name="Thick Spider's Silk" Entry="4337" />
<Item Name="Mageweave Cloth" Entry="4338" />
<Item Name="Shadow Silk" Entry="10285" />
<Item Name="Felcloth" Entry="14256" />
<Item Name="Ironweb Spider Silk" Entry="14227" />
<Item Name="Runecloth" Entry="14047" />
<Item Name="Mooncloth" Entry="14342" />
<Item Name="Netherweave Cloth" Entry="21877" />
<Item Name="Netherweb Spider Silk" Entry="21881" />
<Item Name="Primal Mooncloth" Entry="21845" />
<Item Name="Frostweave Cloth" Entry="33470" />
<Item Name="Shadowcloth" Entry="24272" />
<Item Name="Spellcloth" Entry="24271" />
<Item Name="Iceweb Spider Silk" Entry="42253" />
<Item Name="Ebonweave" Entry="41593" />
<Item Name="Moonshroud" Entry="41594" />
<Item Name="Spellweave" Entry="41595" />
<Item Name="Embersilk Cloth" Entry="53010" />
<Item Name="Dreamcloth" Entry="54440" />
<!-- Harvests: Elementals (ordered by level, then alphabetically) -->
<Item Name="Elemental Air" Entry="7069" />
<Item Name="Elemental Earth" Entry="7067" />
<Item Name="Elemental Fire" Entry="7068" />
<Item Name="Elemental Water" Entry="7070" />
<Item Name="Breath of Wind" Entry="7081" />
<Item Name="Core of Earth" Entry="7075" />
<Item Name="Globe of Water" Entry="7079" />
<Item Name="Heart of Fire" Entry="7077" />
<Item Name="Heart of the Wild" Entry="10286" />
<Item Name="Ichor of Undeath" Entry="7972" />
<Item Name="Essence of Air" Entry="7082" />
<Item Name="Essence of Earth" Entry="7076" />
<Item Name="Essence of Fire" Entry="7078" />
<Item Name="Essence of Undeath" Entry="12808" />
<Item Name="Essence of Water" Entry="7080" />
<Item Name="Living Essence" Entry="12803" />
<Item Name="Mote of Air" Entry="22572" />
<Item Name="Mote of Earth" Entry="22573" />
<Item Name="Mote of Fire" Entry="22574" />
<Item Name="Mote of Life" Entry="22575" />
<Item Name="Mote of Mana" Entry="22576" />
<Item Name="Mote of Shadow" Entry="22577" />
<Item Name="Mote of Water" Entry="22578" />
<Item Name="Primal Air" Entry="22451" />
<Item Name="Primal Earth" Entry="22452" />
<Item Name="Primal Fire" Entry="21884" />
<Item Name="Primal Life" Entry="21886" />
<Item Name="Primal Mana" Entry="22457" />
<Item Name="Primal Shadow" Entry="22456" />
<Item Name="Primal Water" Entry="21885" />
<Item Name="Crystallized Air" Entry="37700" />
<Item Name="Crystallized Earth" Entry="37701" />
<Item Name="Crystallized Fire" Entry="37702" />
<Item Name="Crystallized Life" Entry="37704" />
<Item Name="Crystallized Shadow" Entry="37703" />
<Item Name="Crystallized Water" Entry="37705" />
<Item Name="Eternal Air" Entry="35623" />
<Item Name="Eternal Earth" Entry="35624" />
<Item Name="Eternal Fire" Entry="36860" />
<Item Name="Eternal Life" Entry="35625" />
<Item Name="Eternal Might" Entry="40248" />
<Item Name="Eternal Shadow" Entry="35627" />
<Item Name="Eternal Water" Entry="35622" />
<Item Name="Primal Might" Entry="23571" />
<Item Name="Chaos Orb" Entry="52078" />
<Item Name="Volatile Air" Entry="52328" />
<Item Name="Volatile Earth" Entry="52327" />
<Item Name="Volatile Fire" Entry="52325" />
<Item Name="Volatile Life" Entry="52329" />
<Item Name="Volatile Water" Entry="52326" />
<!-- Harvests: Gems (ordered by level, then alphabetically) -->
<Item Name="Blood Shard" Entry="5075" />
<Item Name="Malachite" Entry="774" />
<Item Name="Tigerseye" Entry="818" />
<Item Name="Shadowgem" Entry="1210" />
<Item Name="Moss Agate" Entry="1206" />
<Item Name="Lesser Moonstone" Entry="1705" />
<Item Name="Jade" Entry="1529" />
<Item Name="Citrine" Entry="3864" />
<Item Name="Aquamarine" Entry="7909" />
<Item Name="Black Diamond" Entry="11754" />
<Item Name="Blood of the Mountain" Entry="11382" />
<Item Name="Souldarite" Entry="19774" />
<Item Name="Star Ruby" Entry="7910" />
<Item Name="Blue Sapphire" Entry="12361" />
<Item Name="Large Opal" Entry="12799" />
<Item Name="Arcane Crystal" Entry="12363" />
<Item Name="Azerothian Diamond" Entry="12800" />
<Item Name="Huge Emerald" Entry="12364" />
<Item Name="Azure Moonstone" Entry="23117" />
<Item Name="Blood Garnet" Entry="23077" />
<Item Name="Deep Peridot" Entry="23079" />
<Item Name="Flame Spessarite" Entry="21929" />
<Item Name="Golden Draenite" Entry="23112" />
<Item Name="Shadow Draenite" Entry="23107" />
<Item Name="Dawnstone" Entry="23440" />
<Item Name="Living Ruby" Entry="23436" />
<Item Name="Netherwing Egg" Entry="32506" />
<Item Name="Nightseye" Entry="23441" />
<Item Name="Noble Topaz" Entry="23439" />
<Item Name="Star of Elune" Entry="23438" />
<Item Name="Talasite" Entry="23437" />
<Item Name="Bloodstone" Entry="36917" />
<Item Name="Chalcedony" Entry="36923" />
<Item Name="Dark Jade" Entry="36932" />
<Item Name="Huge Citrine" Entry="36929" />
<Item Name="Shadow Crystal" Entry="36926" />
<Item Name="Sun Crystal" Entry="36920" />
<Item Name="Autumn's Glow" Entry="36921" />
<Item Name="Forest Emerald" Entry="36933" />
<Item Name="Monarch Topaz" Entry="36930" />
<Item Name="Scarlet Ruby" Entry="36918" />
<Item Name="Sky Sapphire" Entry="36924" />
<Item Name="Twilight Opal" Entry="36927" />
<Item Name="Ametrine" Entry="36931" />
<Item Name="Cardinal Ruby" Entry="36919" />
<Item Name="Dreadstone" Entry="36928" />
<Item Name="Eye of Zul" Entry="36934" />
<Item Name="King's Amber" Entry="36922" />
<Item Name="Majestic Zircon" Entry="36925" />
<Item Name="Alicite" Entry="52179" />
<Item Name="Carnelian" Entry="52177" />
<Item Name="Hessonite" Entry="52181" />
<Item Name="Jasper" Entry="52182" />
<Item Name="Nightstone" Entry="52180" />
<Item Name="Zephyrite" Entry="52178" />
<Item Name="Amberjewel" Entry="52195" />
<Item Name="Demonseye" Entry="52194" />
<Item Name="Dream Emerald" Entry="52192" />
<Item Name="Ember Topaz" Entry="52193" />
<Item Name="Inferno Ruby" Entry="52190" />
<Item Name="Ocean Sapphire" Entry="52191" />
<Item Name="Chimera's Eye" Entry="52196" />
<!-- Harvests: Herbs (ordered by level) -->
<Item Name="Bloodthistle" Entry="22710" />
<Item Name="Peacebloom" Entry="2447" />
<Item Name="Silverleaf" Entry="765" />
<Item Name="Earthroot" Entry="2449" />
<Item Name="Mageroyal" Entry="785" />
<Item Name="Briarthorn" Entry="2450" />
<Item Name="Swiftthistle" Entry="2452" />
<Item Name="Bruiseweed" Entry="2453" />
<Item Name="Stranglekelp" Entry="3820" />
<Item Name="Grave Moss" Entry="3369" />
<Item Name="Wild Steelbloom" Entry="3355" />
<Item Name="Kingsblood" Entry="3356" />
<Item Name="Liferoot" Entry="3357" />
<Item Name="Fadeleaf" Entry="3818" />
<Item Name="Goldthorn" Entry="3821" />
<Item Name="Khadgar's Whisker" Entry="3358" />
<Item Name="Wintersbite" Entry="3819" />
<Item Name="Wildvine" Entry="8153" />
<Item Name="Firebloom" Entry="4625" />
<Item Name="Purple Lotus" Entry="8831" />
<Item Name="Arthas' Tears" Entry="8836" />
<Item Name="Sungrass" Entry="8838" />
<Item Name="Blindweed" Entry="8839" />
<Item Name="Ghost Mushroom" Entry="8845" />
<Item Name="Gromsblood" Entry="8846" />
<Item Name="Golden Sansam" Entry="13464" />
<Item Name="Dreamfoil" Entry="13463" />
<Item Name="Flame Cap" Entry="22788" />
<Item Name="Mountain Silversage" Entry="13465" />
<Item Name="Plaguebloom" Entry="13466" />
<Item Name="Icecap" Entry="13467" />
<Item Name="Black Lotus" Entry="13468" />
<Item Name="Bloodvine" Entry="19726" />
<Item Name="Dreaming Glory" Entry="22786" />
<Item Name="Felweed" Entry="22785" />
<Item Name="Nightmare Seed" Entry="22797" />
<Item Name="Terocone" Entry="22789" />
<Item Name="Ragveil" Entry="22787" />
<Item Name="Ancient Lichen" Entry="22790" />
<Item Name="Fel Lotus" Entry="22794" />
<Item Name="Mana Thistle" Entry="22793" />
<Item Name="Netherbloom" Entry="22791" />
<Item Name="Nightmare Vine" Entry="22792" />
<Item Name="Deadnettle" Entry="37921" />
<Item Name="Goldclover" Entry="36901" />
<Item Name="Talandra's Rose" Entry="36907" />
<Item Name="Tiger Lily" Entry="36904" />
<Item Name="Adder's Tongue" Entry="36903" />
<Item Name="Stormvine" Entry="202748" />
<Item Name="Lichbloom" Entry="36905" />
<Item Name="Cinderbloom" Entry="202747" />
<Item Name="Azshara's Veil" Entry="202749" />
<Item Name="Icethorn" Entry="36906" />
<Item Name="Frost Lotus" Entry="36908" />
<Item Name="Heartblossom" Entry="202750" />
<Item Name="Whiptail" Entry="202752" />
<Item Name="Twilight Jasmine" Entry="202751" />
<!-- Harvests: Leather & Pelts-mainstream (ordered by level) -->
<Item Name="Ruined Leather Scraps" Entry="2934" />
<Item Name="Light Hide" Entry="783" />
<Item Name="Light Leather" Entry="2318" />
<Item Name="Medium Hide" Entry="4232" />
<Item Name="Medium Leather" Entry="2319" />
<Item Name="Heavy Hide" Entry="4235" />
<Item Name="Heavy Leather" Entry="4234" />
<Item Name="Deeprock Salt" Entry="8150" />
<Item Name="Thick Hide" Entry="8169" />
<Item Name="Thick Leather" Entry="4304" />
<Item Name="Rugged Hide" Entry="8171" />
<Item Name="Rugged Leather" Entry="8170" />
<Item Name="Enchanted Leather" Entry="12810" />
<Item Name="Crystal Infused Leather" Entry="25699" />
<Item Name="Knothide Leather" Entry="21887" />
<Item Name="Knothide Leather Scraps" Entry="25649" />
<Item Name="Thick Clefthoof Leather" Entry="25708" />
<Item Name="Heavy Knothide Leather" Entry="23793" />
<Item Name="Borean Leather" Entry="33568" />
<Item Name="Borean Leather Scraps" Entry="33567" />
<Item Name="Arctic Fur" Entry="44128" />
<Item Name="Heavy Borean Leather" Entry="38425" />
<Item Name="Savage Leather" Entry="52976" />
<Item Name="Heavy Savage Leather" Entry="56516" />
<Item Name="Pristine Hide" Entry="52980" />
<!-- Harvests: Leather & Pelts-exotics (ordered by level) -->
<Item Name="Black Whelp Scale" Entry="7286" />
<Item Name="Deviate Scale" Entry="6470" />
<Item Name="Green Whelp Scale" Entry="7392" />
<Item Name="Perfect Deviate Scale" Entry="6471" />
<Item Name="Thin Kodo Leather" Entry="5082" />
<Item Name="Slimy Murloc Scale" Entry="5784" />
<Item Name="Raptor Hide" Entry="4461" />
<Item Name="Thick Murloc Scale" Entry="5785" />
<Item Name="Turtle Scale" Entry="8167" />
<Item Name="Scorpid Scale" Entry="8154" />
<Item Name="Worn Dragonscale" Entry="8165" />
<Item Name="Blue Dragonscale" Entry="15415" />
<Item Name="Devilsaur Leather" Entry="15417" />
<Item Name="Green Dragonscale" Entry="15412" />
<Item Name="Warbear Leather" Entry="15419" />
<Item Name="Black Dragonscale" Entry="15416" />
<Item Name="Heavy Scorpid Scale" Entry="15408" />
<Item Name="Heavy Silithid Carapace" Entry="20501" />
<Item Name="Light Silithid Carapace" Entry="20500" />
<Item Name="Silithid Chitin" Entry="20498" />
<Item Name="Refined Scale of Onyxia" Entry="17967" />
<Item Name="Scale of Onyxia" Entry="15410" />
<Item Name="Cobra Scales" Entry="29539" />
<Item Name="Core Leather" Entry="17012" />
<Item Name="Fel Scales" Entry="25700" />
<Item Name="Nether Dragonscales" Entry="29548" />
<Item Name="Primal Bat Leather" Entry="19767" />
<Item Name="Primal Tiger Leather" Entry="19768" />
<Item Name="Red Dragonscale" Entry="15414" />
<Item Name="Wind Scales" Entry="29547" />
<Item Name="Dreamscale" Entry="20381" />
<Item Name="Fel Hide" Entry="25707" />
<Item Name="Nerubian Chitin" Entry="38558" />
<Item Name="Icy Dragonscale" Entry="38557" />
<Item Name="Jormungar Scale" Entry="38561" />
<Item Name="Blackened Dragonscale" Entry="52979" />
<Item Name="Deepsea Scale" Entry="52982" />
<!-- Harvests: Ore-mainstream (ordered by level) -->
<Item Name="Copper Ore" Entry="2770" />
<Item Name="Tin Ore" Entry="2771" />
<Item Name="Silver Ore" Entry="2775" />
<Item Name="Iron Ore" Entry="2772" />
<Item Name="Gold Ore" Entry="2776" />
<Item Name="Mithril Ore" Entry="3858" />
<Item Name="Truesilver Ore" Entry="7911" />
<Item Name="Thorium Ore" Entry="10620" />
<Item Name="Dark Iron Ore" Entry="11370" />
<Item Name="Fel Iron Ore" Entry="23424" />
<Item Name="Elementium Ore" Entry="18562" />
<Item Name="Adamantite Ore" Entry="23425" />
<Item Name="Eternium Ore" Entry="23427" />
<Item Name="Cobalt Ore" Entry="36909" />
<Item Name="Khorium Ore" Entry="23426" />
<Item Name="Saronite Ore" Entry="36912" />
<Item Name="Titanium Ore" Entry="36910" />
<Item Name="Obsidium Ore" Entry="53038" />
<Item Name="Elementium Ore" Entry="52185" />
<Item Name="Pyrite Ore" Entry="52183" />
<!-- Harvests: Ore-mainstream bar-form (ordered by level) -->
<Item Name="Copper Bar" Entry="2840" />
<Item Name="Tin Bar" Entry="3576" />
<Item Name="Bronze Bar" Entry="2841" />
<Item Name="Silver Bar" Entry="2842" />
<Item Name="Iron Bar" Entry="3575" />
<Item Name="Gold Bar" Entry="3577" />
<Item Name="Steel Bar" Entry="3859" />
<Item Name="Mithril Bar" Entry="3860" />
<Item Name="Truesilver Bar" Entry="6037" />
<Item Name="Thorium Bar" Entry="12359" />
<Item Name="Dark Iron Bar" Entry="11371" />
<Item Name="Enchanted Thorium Bar" Entry="12655" />
<Item Name="Fel Iron Bar" Entry="23445" />
<Item Name="Enchanted Elementium Bar" Entry="17771" />
<Item Name="Adamantite Bar" Entry="23446" />
<Item Name="Felsteel Bar" Entry="23448" />
<Item Name="Cobalt Bar" Entry="36916" />
<Item Name="Khorium Bar" Entry="23449" />
<Item Name="Hardened Khorium Bar" Entry="35128" />
<Item Name="Hardened Adamantite Bar" Entry="23573" />
<Item Name="Saronite Bar" Entry="36913" />
<Item Name="Obsidium Bar" Entry="54849" />
<Item Name="Titanium Bar" Entry="41163" />
<Item Name="Titansteel Bar" Entry="37663" />
<Item Name="Elementium Bar" Entry="52186" />
<Item Name="Hardened Elementium Bar" Entry="53039" />
<Item Name="Pyrium Bar" Entry="51950" />
<!-- Harvests: Ore-exotics (alphabetical) -->
<Item Name="Incendite Ore" Entry="3340" />
<Item Name="Lesser Bloodstone Ore" Entry="4278" />
<Item Name="Nethercite Ore" Entry="32464" />
<Item Name="Rathban Ore" Entry="2798" />
<!-- Harvests: Stone (ordered by level) -->
<Item Name="Rough Stone" Entry="2835" />
<Item Name="Coarse Stone" Entry="2836" />
<Item Name="Heavy Stone" Entry="2838" />
<Item Name="Solid Stone" Entry="7912" />
<Item Name="Dense Stone" Entry="12365" />
<!-- ========== Reputation Items (alphabetical by Faction) ==========
If you don't want these items in your backpack, we suggest setting up
Lootfilter to delete the unwanted ones.
-->
<!-- Reputation: Argent Dawn (alphabetical) -->
<Item Name="Argent Dawn Valor Token" Entry="12844" />
<Item Name="Bone Fragments" Entry="22526" />
<Item Name="Core of Elements" Entry="22527" />
<Item Name="Corruptor's Scourgestone" Entry="12843" />
<Item Name="Crypt Fiend Parts" Entry="22525" />
<Item Name="Dark Iron Scraps" Entry="22528" />
<Item Name="Invader's Scourgestone" Entry="12841" />
<Item Name="Minion's Scourgestone" Entry="12840" />
<Item Name="Savage Frond" Entry="22529" />
<!-- Reputation: Booty Bay/Everlook/Gadgetzan/Ratchet (alphabetical) -->
<Item Name="Miniaturization Residue" Entry="18956" />
<Item Name="Water Elemental Core" Entry="18958" />
<!-- Reputation: Cenarion Expedition (alphabetical) -->
<Item Name="Coilfang Armaments" Entry="24368" />
<Item Name="Nesingwary Lackey Ear" Entry="35188" />
<Item Name="Uncatalogued Species" Entry="24407" />
<Item Name="Unidentified Plant Parts" Entry="24401" />
<!-- Reputation: Darkmoon Faire (alphabetical) -->
<Item Name="Coarse Weightstone" Entry="3240" />
<Item Name="Copper Modulator" Entry="4363" />
<Item Name="Dense Grinding Stone" Entry="12644" />
<Item Name="Evil Bat Eye" Entry="11404" />
<Item Name="Glowing Scorpid Blood" Entry="19933" />
<Item Name="Green Firework" Entry="9313" />
<Item Name="Heavy Grinding Stone" Entry="3486" />
<Item Name="Mechanical Repair Kit" Entry="11590" />
<Item Name="Rugged Armor Kit" Entry="15564" />
<Item Name="Small Furry Paw" Entry="5134" />
<Item Name="Soft Bushy Tail" Entry="4582" />
<Item Name="Thorium Widget" Entry="15994" />
<Item Name="Torn Bear Pelt" Entry="11407" />
<Item Name="Vibrant Plume" Entry="5117" />
<Item Name="Whirring Bronze Gizmo" Entry="4375" />
<!-- Reputation: Gadgetzan (alphabetical) -->
<Item Name="Wastewander Water Pouch" Entry="8483" />
<!-- Reputation: Kurenai/Mag'har (alphabetical) -->
<Item Name="Obsidian Warbeads" Entry="25433" />
<!-- Reputation: Netherwing (alphabetical) -->
<Item Name="Fel Gland" Entry="32502" />
<Item Name="Netherwing Crystal" Entry="32427" />
<Item Name="Netherwing Egg" Entry="32506" />
<Item Name="Netherwing Relic" Entry="32509" />
<Item Name="Nethermine Cargo" Entry="32723" />
<Item Name="Nethermine Flayer Hide" Entry="32470" />
<Item Name="Nethercite Ore" Entry="32464" />
<Item Name="Netherdust Pollen" Entry="32468" />
<!-- Reputation: Oracles (alphabetical) -->
<Item Name="Energized Polished Crystal" Entry="39748" />
<Item Name="Shiny Treasures" Entry="38575" />
<!-- Reputation: Ravenholdt (alphabetical) -->
<Item Name="Heavy Junkbox" Entry="16885" />
<Item Name="Syndicate Emblem" Entry="17124" />
<!-- Reputation: Sons of Hodir (alphabetical) -->
<Item Name="Everfrost Chip" Entry="44724" />
<Item Name="Everfrost Chip" Entry="44725" />
<Item Name="Frozen Iron Scrap" Entry="42252" />
<Item Name="Relic of Ulduar" Entry="42780" />
<Item Name="Viscous Oil" Entry="42640" />
<!-- Reputation: Sporeggar (alphabetical) -->
<Item Name="Bog Lord Tendril" Entry="24291" />
<Item Name="Fertile Spores" Entry="24449" />
<Item Name="Glowcap" Entry="24245" />
<Item Name="Mature Spore Sac" Entry="24290" />
<Item Name="Sanguine Hibiscus" Entry="24246" />
<!-- Reputation: The Aldor (alphabetical) -->
<Item Name="Dreadfang Venom Sac" Entry="25802" />
<Item Name="Fel Armament" Entry="29740" />
<Item Name="Mark of Kil'jaeden" Entry="29425" />
<Item Name="Mark of Sargeras" Entry="30809" />
<!-- Reputation: The Consortium (alphabetical) -->
<Item Name="Ethereum Prison Key" Entry="29460" />
<Item Name="Ethereum Prisoner I.D. Tag" Entry="31957" />
<Item Name="Oshu'gun Crystal Fragment" Entry="25416" />
<Item Name="Pair of Ivory Tusks" Entry="25463" />
<Item Name="Zaxxis Insignia" Entry="29209" />
<!-- Reputation: The Scryers (alphabetical) -->
<Item Name="Arcane Tome" Entry="29739" />
<Item Name="Dampscale Basilisk Eye" Entry="25744" />
<Item Name="Firewing Signet" Entry="29426" />
<Item Name="Sunfury Signet" Entry="30810" />
<!-- Reputation: Thorium Brotherhood (alphabetical) -->
<Item Name="Blood of the Mountain" Entry="11382" />
<Item Name="Core Leather" Entry="17012" />
<Item Name="Dark Iron Ore" Entry="11370" />
<Item Name="Dark Iron Residue" Entry="18945" />
<Item Name="Fiery Core" Entry="17010" />
<Item Name="Incendosaur Scale" Entry="18944" />
<Item Name="Lava Core" Entry="17011" />
<!-- Reputation: Timbermaw Hold (alphabetical) -->
<Item Name="Deadwood Headdress Feather" Entry="21377" />
<Item Name="Winterfall Spirit Beads" Entry="21383" />
<!-- Reputation: Zandalar Tribe (alphabetical) -->
<Item Name="Arcanum of Focus" Entry="18330" />
<Item Name="Arcanum of Protection" Entry="18331" />
<Item Name="Arcanum of Rapidity" Entry="18329" />
<Item Name="Bloodscalp Coin" Entry="19706" />
<Item Name="Gurubashi Coin" Entry="19701" />
<Item Name="Hakkari Coin" Entry="19700" />
<Item Name="Primal Hakkari Idol" Entry="22637" />
<Item Name="Razzashi Coin" Entry="19699" />
<Item Name="Sandfury Coin" Entry="19704" />
<Item Name="Skullsplitter Coin" Entry="19705" />
<Item Name="Vilebranch Coin" Entry="19702" />
<Item Name="Witherbark Coin" Entry="19703" />
<Item Name="Zandalar Honor Token" Entry="19858" />
<Item Name="Zulian Coin" Entry="19698" />
<!-- Reputation: Wintersaber Trainers (alphabetical) -->
<Item Name="Shardtooth Meat" Entry="12622" />
<Item Name="Chillwind Meat" Entry="12623" />
<!-- ========== Tabards (alphabetical) ==========
If you don't want these items in your backpack, we suggest you explicitly
sell or bank them.
-->
<Item Name="Aldor Tabard" Entry="31779" />
<Item Name="Arathor Battle Tabard" Entry="20132" />
<Item Name="Argent Crusader's Tabard" Entry="46874" />
<Item Name="Baradin's Wardens Tabard" Entry="63379" />
<Item Name="Battle Tabard of the Defilers" Entry="20131" />
<Item Name="Bilgewater Cartel Tabard" Entry="64884" />
<Item Name="Blood Knight Tabard" Entry="25549" />
<Item Name="Borrowed Silver Covenant Tabard" Entry="49913" />
<Item Name="Borrowed Tabard" Entry="49648" />
<Item Name="Borrowed Tabard" Entry="49680" />
<Item Name="Cenarion Expedition Tabard" Entry="31804" />
<Item Name="Competitor's Tabard" Entry="36941" />
<Item Name="Consortium Tabard" Entry="31776" />
<Item Name="Contest Winner's Tabard" Entry="19160" />
<Item Name="Crusader Bridenbrad's Tabard" Entry="44789" />
<Item Name="Darkspear Tabard" Entry="45582" />
<Item Name="Darnassus Tabard" Entry="45579" />
<Item Name="Enchanted Illidari Tabard" Entry="31279" />
<Item Name="Exodar Tabard" Entry="45580" />
<Item Name="Frostwolf Battle Tabard" Entry="19031" />
<Item Name="Furious Gladiator's Tabard" Entry="45983" />
<Item Name="Gilneas Tabard" Entry="64882" />
<Item Name="Gnomeregan Tabard" Entry="45578" />
<Item Name="Green Trophy Tabard of the Illidari" Entry="31404" />
<Item Name="Guild Tabard" Entry="5976" />
<Item Name="Hellscream's Reach Tabard" Entry="63378" />
<Item Name="Honor Hold Tabard" Entry="23999" />
<Item Name="Illidari Tabard" Entry="31278" />
<Item Name="Ironforge Tabard" Entry="45577" />
<Item Name="Keepers of Time Tabard" Entry="31777" />
<Item Name="Krom'gar Tabard" Entry="56246" />
<Item Name="Kurenai Tabard" Entry="31774" />
<Item Name="Lower City Tabard" Entry="31778" />
<Item Name="Mag'har Tabard" Entry="31773" />
<Item Name="Ogri'la Tabard" Entry="32828" />
<Item Name="Orgrimmar Tabard" Entry="45581" />
<Item Name="Primal Hakkari Tabard" Entry="19722" />
<Item Name="Private's Tabard" Entry="15196" />
<Item Name="Purple Trophy Tabard of the Illidari" Entry="31405" />
<Item Name="Relentless Gladiator's Tabard" Entry="49086" />
<Item Name="Scout's Tabard" Entry="15197" />
<Item Name="Scryers Tabard" Entry="31780" />
<Item Name="Sha'tar Tabard" Entry="31781" />
<Item Name="Silver Covenant Tabard" Entry="46817" />
<Item Name="Silvermoon City Tabard" Entry="45585" />
<Item Name="Silverwing Battle Tabard" Entry="19506" />
<Item Name="Skyguard Tabard" Entry="32445" />
<Item Name="Sporeggar Tabard" Entry="31775" />
<Item Name="Stormpike Battle Tabard" Entry="19032" />
<Item Name="Stormwind Tabard" Entry="45574" />
<Item Name="Sunreaver Tabard" Entry="46818" />
<Item Name="Tabard of Brilliance" Entry="38312" />
<Item Name="Tabard of Brute Force" Entry="43349" />
<Item Name="Tabard of Conquest" Entry="49054" />
<Item Name="Tabard of Conquest" Entry="49052" />
<Item Name="Tabard of Flame" Entry="23705" />
<Item Name="Tabard of Frost" Entry="23709" />
<Item Name="Tabard of Fury" Entry="38313" />
<Item Name="Tabard of Nature" Entry="38309" />
<Item Name="Tabard of Ramkahen" Entry="65904" />
<Item Name="Tabard of Stormwind" Entry="11364" />
<Item Name="Tabard of Summer Flames" Entry="35280" />
<Item Name="Tabard of Summer Skies" Entry="35279" />
<Item Name="Tabard of the Achiever" Entry="40643" />
<Item Name="Tabard of the Arcane" Entry="38310" />
<Item Name="Tabard of the Argent Crusade" Entry="43154" />
<Item Name="Tabard of the Argent Dawn" Entry="22999" />
<Item Name="Tabard of the Defender" Entry="38314" />
<Item Name="Tabard of the Dragonmaw Clan" Entry="65909" />
<Item Name="Tabard of the Earthen Ring" Entry="65905" />
<Item Name="Tabard of the Ebon Blade" Entry="43155" />
<Item Name="Tabard of the Explorer" Entry="43348" />
<Item Name="Tabard of the Guardians of Hyjal" Entry="65906" />
<Item Name="Tabard of the Hand" Entry="24344" />
<Item Name="Tabard of the Kirin Tor" Entry="43157" />
<Item Name="Tabard of the Lightbringer" Entry="52252" />
<Item Name="Tabard of the Protector" Entry="28788" />
<Item Name="Tabard of the Scarlet Crusade" Entry="23192" />
<Item Name="Tabard of the Shattered Sun" Entry="35221" />
<Item Name="Tabard of the Void" Entry="38311" />
<Item Name="Tabard of the Wildhammer Clan" Entry="65908" />
<Item Name="Tabard of the Wyrmrest Accord" Entry="43156" />
<Item Name="Tabard of Therazane" Entry="65907" />
<Item Name="Thrallmar Tabard" Entry="24004" />
<Item Name="Thunder Bluff Tabard" Entry="45584" />
<Item Name="Tranquillien Tabard" Entry="23388" />
<Item Name="Undercity Tabard" Entry="45583" />
<Item Name="Unused Tabard of Chow" Entry="3557" />
<Item Name="Upgraded Guild Tabard - Superior" Entry="62295" />
<Item Name="Warsong Battle Tabard" Entry="19505" />
<Item Name="Wrathful Gladiator's Tabard" Entry="51534" />
<!-- ========== Trade Tools (alphabetical) ========== -->