This repository was archived by the owner on Mar 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
2503 lines (2495 loc) · 212 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<base target="_blank"/>
<head>
<meta charset="UTF-8">
<title>Buff Cap Calculator</title>
<link href="https://stackpath.bootstrapcdn.com/bootswatch/4.4.1/slate/bootstrap.min.css" rel="stylesheet" integrity="sha384-G9YbB4o4U6WS4wCthMOpAeweY4gQJyyx0P3nZbEBHyz+AtNoeasfRChmek1C2iqV" crossorigin="anonymous">
<link rel="stylesheet" href="main.css" />
<script>// noinspection JSUnusedGlobalSymbols
let whTooltips = {colorLinks: true, iconizeLinks: false, iconSize: "small", hide: {droppedby: true, dropchance: true, sellprice: true, maxstack: true, ilvl: true}};</script>
<script src="https://wow.zamimg.com/widgets/power.js"></script>
</head>
<body>
<nav class="navbar fixed-top navbar-expand-md bg-dark">
<div class="container">
<h2>
Buff Cap Calculator
<span class="badge badge-success" id="buff-count-container">
<span id="total-buff-count">0</span>
<span id="buff-count-warning" class="hidden d-none d-sm-inline" data-color-blind-help>ⓘ</span>
<span id="buff-count-danger" class="hidden d-none d-sm-inline" data-color-blind-help>⚠</span>
</span>
</h2>
<!--suppress HtmlFormInputWithoutLabel -->
<input type="hidden" id="clipboard-input" />
<button class="btn btn-primary d-none d-md-inline" id="clipboard-button">Share</button>
<button class="btn btn-primary" id="clear-all">Clear All</button>
<button class="btn btn-secondary d-none d-md-inline" data-toggle="modal" data-target="#about-modal">About</button>
</div>
</nav>
<main class="container">
<div class="row bc-buff-section">
<div class="col-lg">
<!--World Buffs-->
<div class="border bc-cell" data-primary-category>
<div class="bc-cell-header m-sm-1">
<span class="h4">World Buffs <span data-category-count></span></span>
<button class="btn-sm btn-secondary d-lg-none float-right ml-3" data-toggle="collapse" data-target="#world-buffs" aria-expanded="true">
<span class="collapse-icon-open">–</span>
<span class="collapse-icon-closed">+</span>
</button>
<button class="btn-sm btn-secondary float-right" data-clear-button>Clear</button>
</div>
<div id="world-buffs" class="collapse show">
<div>
<input type="checkbox" id="spell-22888"/>
<a href="https://classic.wowhead.com/spell=22888/rallying-cry-of-the-dragonslayer" data-wowhead="buff"><img src="img/inv_misc_head_dragon_01.jpg" alt="Rallying Cry of the Dragonslayer"/></a>
<label for="spell-22888">Rallying Cry of the Dragonslayer</label>
</div>
<div>
<input type="checkbox" id="spell-16609"/>
<a href="https://classic.wowhead.com/spell=16609/warchiefs-blessing" data-wowhead="buff"><img src="img/spell_arcane_teleportorgrimmar.jpg" alt="Warchief's Blessing"/></a>
<label for="spell-16609">Warchief's Blessing</label>
</div>
<div>
<input type="checkbox" id="spell-22817"/>
<a href="https://classic.wowhead.com/spell=22817/fengus-ferocity" data-wowhead="buff"><img src="img/spell_nature_undyingstrength.jpg" alt="Fengus' Ferocity"/></a>
<label for="spell-22817">Fengus' Ferocity</label>
</div>
<div>
<input type="checkbox" id="spell-22818"/>
<a href="https://classic.wowhead.com/spell=22818/moldars-moxie" data-wowhead="buff"><img src="img/spell_nature_massteleport.jpg" alt="Mol'dar's Moxie"/></a>
<label for="spell-22818">Mol'dar's Moxie</label>
</div>
<div>
<input type="checkbox" id="spell-22820"/>
<a href="https://classic.wowhead.com/spell=22820/slipkiks-savvy" data-wowhead="buff"><img src="img/spell_holy_lesserheal02.jpg" alt="Slip'kik's Savvy"/></a>
<label for="spell-22820">Slip'kik's Savvy</label>
</div>
<div>
<input type="checkbox" id="spell-15366"/>
<a href="https://classic.wowhead.com/spell=15366/songflower-serenade" data-wowhead="buff"><img src="img/spell_holy_mindvision.jpg" alt="Songflower Serenade"/></a>
<label for="spell-15366">Songflower Serenade</label>
</div>
<div>
<input type="checkbox" id="spell-24425"/>
<a href="https://classic.wowhead.com/spell=24425/spirit-of-zandalar" data-wowhead="buff"><img src="img/ability_creature_poison_05.jpg" alt="Spirit of Zandalar"/></a>
<label for="spell-24425">Spirit of Zandalar</label>
</div>
<div>
<input type="checkbox" id="spell-29534"/>
<a href="https://classic.wowhead.com/spell=29534/traces-of-silithyst" data-wowhead="buff"><img src="img/spell_nature_timestop.jpg" alt="Traces of Silithyst"/></a>
<label for="spell-29534">Traces of Silithyst</label>
</div>
<div>
<input type="checkbox" id="spell-30754"/>
<a href="https://classic.wowhead.com/spell=30754/cenarion-favor" data-wowhead="buff"><img src="img/spell_nature_rockbiter.jpg" alt="Cenarion Favor"/></a>
<label for="spell-30754">Cenarion Favor</label>
<a href="#cenarion-favor" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="cenarion-favor">
Zone-wide in Silithus, AQ20 and AQ40.<br />
Get by winning the world PVP objective in Silithus.
</small>
</div>
<div>
<input type="checkbox" id="spell-1386"/>
<a href="https://classic.wowhead.com/spell=1386/echoes-of-lordaeron" data-wowhead="buff"><img src="img/inv_bannerpvp_02.jpg" alt="Echoes of Lordaeron"/></a>
<label for="spell-1386">Echoes of Lordaeron</label>
</div>
<div class="has-buff-count">
<span class="buff-count" data-toggle="tooltip" data-html="true" title="Some members of this group stack.<br />Click the ▼ to expand this group.<br />Click this box to clear all marked members of this group."> </span>
<img src="img/spell_shadow_shadowworddominate.jpg" alt="Mind Control Buffs" /> Mind Control Buffs
<a href="#mind-control-buffs" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3 sub-section" id="mind-control-buffs">
<li>
<input type="checkbox" id="spell-15123"/>
<a href="https://classic.wowhead.com/spell=15123/resist-fire" data-wowhead="buff"><img src="img/spell_fire_firearmor.jpg" alt="Resist Fire"/></a>
<label for="spell-15123">Resist Fire</label>
<a href="#resist-fire" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="resist-fire">
Gives 81-83 fire resistance.<br />
Stacks with <a href="https://classic.wowhead.com/spell=10535/fire-resistance" data-wowhead="buff" data-info>totem</a>/<a href="https://classic.wowhead.com/spell=19900/fire-resistance-aura" data-wowhead="buff" data-info>aura</a>
and <a href="https://classic.wowhead.com/item=12455/juju-ember" data-info>Juju Ember</a>.<br />
Mind control a <a href="https://classic.wowhead.com/npc=9098/scarshield-spellbinder" data-info>Scarshield Spellbinder</a> in UBRS.
</small>
</li>
<li>
<input type="checkbox" id="spell-17175"/>
<a href="https://classic.wowhead.com/spell=17175/resist-arcane" data-wowhead="buff&lvl=55"><img src="img/spell_arcane_blink.jpg" alt="Resist Arcane"/></a>
<label for="spell-17175">Resist Arcane</label>
<a href="#resist-arcane" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="resist-arcane">
Gives 81 arcane resistance.<br />
Mind control a <a href="https://classic.wowhead.com/npc=10605/scarlet-medic" data-info>Scarlet Medic</a> in WPL.
</small>
</li>
<li>
<input type="checkbox" id="spell-15288"/>
<a href="https://classic.wowhead.com/spell=15288/fury-of-ragnaros" data-wowhead="buff"><img src="img/spell_holy_mindsooth.jpg" alt="Fury of Ragnaros"/></a>
<label for="spell-15288">Fury of Ragnaros</label>
<a href="#fury-of-ragnaros" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="fury-of-ragnaros">
Mind control a <a href="https://classic.wowhead.com/npc=8913/twilight-emissary" data-info>Twilight Emissary</a> in BRD.<br/>
Doesn't stack with <a href="https://classic.wowhead.com/item=13454/greater-arcane-elixir" data-info>Greater Arcane Elixir</a>.
</small>
</li>
<li>
<input type="checkbox" id="spell-16587"/>
<a href="https://classic.wowhead.com/spell=16587/dark-whispers" data-wowhead="buff"><img src="img/spell_shadow_haunting.jpg" alt="Dark Whispers"/></a>
<label for="spell-16587">Dark Whispers</label>
<a href="#dark-whispers" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="dark-whispers">
Mind control a <a href="https://classic.wowhead.com/npc=8548/vile-tutor" data-info>Vile Tutor</a> in EPL.
</small>
</li>
<li>
<input type="checkbox" id="spell-17150"/>
<a href="https://classic.wowhead.com/spell=17150/arcane-might" data-wowhead="buff"><img src="img/spell_holy_mindsooth.jpg" alt="Arcane Might"/></a>
<label for="spell-17150">Arcane Might</label>
<a href="#arcane-might" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="arcane-might">
MC a <a href="https://classic.wowhead.com/npc=10422/crimson-sorcerer" data-info>Crimson Sorcerer</a> in Strat Live.<br/>
Doesn't stack with <a href="https://classic.wowhead.com/item=13454/greater-arcane-elixir" data-info>Greater Arcane Elixir</a>.<br />
Priest Mind Control <b>DOES NOT WORK</b>.<br />
Use an <a href="https://classic.wowhead.com/item=10726/gnomish-mind-control-cap">MC cap</a>.<br />
<a class="small-inline exclusion-modal-link" data-toggle="modal" data-target="#arcane-might-explanation">Click for more info.</a>
</small>
</li>
</ul>
<div class="buff-summary"></div>
</div>
<div>
<input type="checkbox" id="spell-21163"/>
<a href="https://classic.wowhead.com/spell=21163/polished-armor" data-wowhead="buff"><img src="img/inv_shield_10.jpg" alt="Polished Armor"/></a>
<label for="spell-21163">Polished Armor</label>
<a href="#polished-armor" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="polished-armor">
Complete <a href="https://classic.wowhead.com/quest=6781/more-armor-scraps">More Armor Scraps</a> in Alterac Valley.<br />
Buff persists after leaving the battleground.
</small>
</div>
<div class="has-buff-count">
<span class="buff-count" data-toggle="tooltip" data-html="true" title="Some members of this group stack.<br />Click the ▼ to expand this group.<br />Click this box to clear all marked members of this group."> </span>
<img src="img/inv_misc_gem_ruby_01.jpg" alt="Mangletooth Buffs" /> Mangletooth Buffs
<a href="#mangletooth" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3 sub-section" id="mangletooth">
<li>
<input type="checkbox" id="spell-17013"/>
<a href="https://classic.wowhead.com/spell=17013/agamaggans-agility" data-wowhead="buff"><img src="img/spell_nature_windfury.jpg" alt="Agamaggan's Agility"/></a>
<label for="spell-17013">Agamaggan's Agility</label>
</li>
<li>
<input type="checkbox" id="spell-16612"/>
<a href="https://classic.wowhead.com/spell=16612/agamaggans-strength" data-wowhead="buff"><img src="img/spell_nature_strength.jpg" alt="Agamaggan's Strength"/></a>
<label for="spell-16612">Agamaggan's Strength</label>
</li>
<li>
<input type="checkbox" id="spell-16610"/>
<a href="https://classic.wowhead.com/spell=16610/razorhide" data-wowhead="buff"><img src="img/spell_nature_thorns.jpg" alt="Razorhide"/></a>
<label for="spell-16610">Razorhide</label>
<a href="#razorhide" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="razorhide">
Grants +25% armor and 7 thorns damage.
</small>
</li>
<li>
<input type="checkbox" id="spell-10767"/>
<a href="https://classic.wowhead.com/spell=10767/rising-spirit" data-wowhead="buff"><img src="img/spell_nature_manaregentotem.jpg" alt="Rising Spirit"/></a>
<label for="spell-10767">Rising Spirit</label>
</li>
<li>
<input type="checkbox" id="spell-16618"/>
<a href="https://classic.wowhead.com/spell=16618/spirit-of-the-wind" data-wowhead="buff"><img src="img/spell_nature_earthbind.jpg" alt="Spirit of the Wind"/></a>
<label for="spell-16618">Spirit of the Wind</label>
<a href="#spirit-of-the-wind" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="spirit-of-the-wind">
Grants +30% move speed. Does not stack with other forms of movement speed increase.
</small>
</li>
<li>
<input type="checkbox" id="spell-7764"/>
<a href="https://classic.wowhead.com/spell=7764/wisdom-of-agamaggan" data-wowhead="buff"><img src="img/spell_arcane_blink.jpg" alt="Wisdom of Agamaggan"/></a>
<label for="spell-7764">Wisdom of Agamaggan</label>
</li>
</ul>
<div class="buff-summary"></div>
</div>
</div>
</div>
<!--Holiday-->
<div class="border bc-cell" data-primary-category>
<div class="bc-cell-header m-sm-1">
<span class="h4">Holiday <span data-category-count></span></span>
<button class="btn-sm btn-secondary d-lg-none float-right ml-3" data-toggle="collapse" data-target="#holiday" aria-expanded="true">
<span class="collapse-icon-open">–</span>
<span class="collapse-icon-closed">+</span>
</button>
<button class="ml-3 btn-sm btn-secondary float-right" data-clear-button>Clear</button>
</div>
<div id="holiday" class="collapse show">
<div>
<input type="checkbox" id="spell-26522"/>
<a href="https://classic.wowhead.com/spell=26522/lunar-fortune" data-wowhead="buff"><img src="img/inv_misc_missilelargecluster_white.jpg" alt="Lucky Rocket Cluster"/></a>
<label for="spell-26522">Lucky Rocket Cluster</label>
</div>
<div>
<input type="checkbox" id="spell-26393"/>
<a href="https://classic.wowhead.com/spell=26393/elunes-blessing" data-wowhead="buff"><img src="img/inv_misc_gem_pearl_02.jpg" alt="Elune's Blessing"/></a>
<label for="spell-26393">Elune's Blessing</label>
</div>
<div class="has-buff-count">
<span class="buff-count" data-toggle="tooltip" data-html="true" title="Members of this group stack.<br />Click the ▼ to expand this group.<br />Click this box to clear all marked members of this group."> </span>
<img src="img/inv_valentinesboxofchocolates01.jpg" alt="Valentine's Day Candy" /> Valentine's Day
<a href="#valentines-candy" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3 sub-section" id="valentines-candy">
<li>
<input type="checkbox" id="spell-27669" data-exclusive="non-profession"/>
<a href="https://classic.wowhead.com/spell=27669/orgrimmar-gift-of-friendship" data-wowhead="buff"><img src="img/inv_misc_gift_01.jpg" alt="Valentine's Day Collection"/></a>
<label for="spell-27669">Valentine's Day Collection</label>
<a href="#valentines-collection" data-info data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3" id="valentines-collection">
<li><small>In the <a data-info class="small-inline exclusion-modal-link" data-toggle="modal" data-target="#non-profession-exclusion-modal">non-profession consumable<br/>exclusion category.</a></small></li>
<li><a data-info href="https://classic.wowhead.com/spell=27669/orgrimmar-gift-of-friendship" data-wowhead="buff"><img src="img/inv_misc_gift_01.jpg" alt="Orgrimmar Gift of Friendship"/> Orgrimmar Gift of Friendship</a></li>
<li><a data-info href="https://classic.wowhead.com/spell=27671/undercity-gift-of-friendship" data-wowhead="buff"><img src="img/INV_Misc_Gift_04.png" alt="Undercity Gift of Friendship"/> Undercity Gift of Friendship</a></li>
<li><a data-info href="https://classic.wowhead.com/spell=27670/thunder-bluff-gift-of-friendship" data-wowhead="buff"><img src="img/INV_Misc_Gift_05.png" alt="Thunder Bluff Gift of Friendship"/> Thunder Bluff Gift of Friendship</a></li>
<li><a data-info href="https://classic.wowhead.com/spell=27665/ironforge-gift-of-friendship" data-wowhead="buff"><img src="img/inv_misc_gift_01.jpg" alt="Ironforge Gift of Friendship"/> Ironforge Gift of Friendship</a></li>
<li><a data-info href="https://classic.wowhead.com/spell=27664/stormwind-gift-of-friendship" data-wowhead="buff"><img src="img/INV_Misc_Gift_03.png" alt="Stormwind Gift of Friendship"/> Stormwind Gift of Friendship</a></li>
<li><a data-info href="https://classic.wowhead.com/spell=27666/darnassus-gift-of-friendship" data-wowhead="buff"><img src="img/INV_Misc_Gift_02.png" alt="Darnassus Gift of Friendship"/> Darnassus Gift of Friendship</a></li>
</ul>
</li>
<li>
<input type="checkbox" id="spell-22239"/>
<a href="https://classic.wowhead.com/item=22239/sweet-surprise"><img src="img/inv_valentineschocolate03.jpg" alt="Sweet Surprise"/></a>
<label for="spell-22239">Sweet Surprise</label>
</li>
<li>
<input type="checkbox" id="spell-22238"/>
<a href="https://classic.wowhead.com/item=22238/very-berry-cream"><img src="img/inv_valentineschocolate02.jpg" alt="Very Berry Cream"/></a>
<label for="spell-22238">Very Berry Cream</label>
</li>
<li>
<input type="checkbox" id="spell-22236"/>
<a href="https://classic.wowhead.com/item=22236/buttermilk-delight"><img src="img/inv_valentineschocolate01.jpg" alt="Buttermilk Delight"/></a>
<label for="spell-22236">Buttermilk Delight</label>
</li>
<li>
<input type="checkbox" id="spell-22237"/>
<a href="https://classic.wowhead.com/item=22237/dark-desire"><img src="img/inv_valentineschocolate04.jpg" alt="Dark Desire"/></a>
<label for="spell-22237">Dark Desire</label>
</li>
<li>
<input type="checkbox" id="spell-26664"/>
<a href="https://classic.wowhead.com/spell=26664/the-power-of-friendship" data-wowhead="buff"><img src="img/inv_jewelry_ring_03.jpg" alt="The Power of Friendship"/></a>
<label for="spell-26664">The Power of Friendship</label>
<a href="#the-power-of-friendship" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="the-power-of-friendship">Grants +200 max HP.</small>
</li>
<li>
<input type="checkbox" id="spell-27572"/>
<a href="https://classic.wowhead.com/spell=27572/smitten" data-wowhead="buff"><img src="img/inv_ammo_arrow_02.jpg" alt="Smitten"/></a>
<label for="spell-27572">Smitten</label>
<a href="#smitten" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="smitten">This buff can no longer be stacked (hotfixed on or about 2020/06/22.)</small>
</li>
</ul>
<div class="buff-summary"></div>
</div>
<div class="has-buff-count">
<span class="buff-count" data-toggle="tooltip" data-html="true" title="Members of this group stack.<br />Click the ▼ to expand this group.<br />Click this box to clear all marked members of this group."> </span>
<img src="img/inv_misc_summerfest_brazierorange.jpg" alt="Midsummer Fire Festival"/> Fire Festival Buffs
<a href="#fire-festival" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3 sub-section" id="fire-festival">
<li>
<input type="checkbox" id="spell-29338"/>
<a href="https://classic.wowhead.com/spell=29338/fire-festival-fury" data-wowhead="buff"><img src="img/inv_misc_summerfest_brazierorange.jpg" alt="Fire Festival Fury"/></a>
<label for="spell-29338">Fire Festival Fury</label>
<a href="#fire-festival-fury" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="fire-festival-fury">Throw a <a data-info href="https://classic.wowhead.com/item=23247/burning-blossom">Burning Blossom</a> into a bonfire.</small>
</li>
<li>
<input type="checkbox" id="spell-29175"/>
<a href="https://classic.wowhead.com/spell=29175/ribbon-dance" data-wowhead="buff"><img src="img/inv_summerfest_symbol_medium.jpg" alt="Ribbon Dance"/></a>
<label for="spell-29175">Ribbon Dance</label>
<a href="#ribbon-dance" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="ribbon-dance">Dance with at least one other person around a Ribbon Pole.</small>
</li>
<li>
<input type="checkbox" id="spell-29235"/>
<a href="https://classic.wowhead.com/spell=29235/fire-festival-fortitude" data-wowhead="buff"><img src="img/inv_summerfest_firespirit.jpg" alt="Fire Festival Fortitude"/></a>
<label for="spell-29235">Fire Festival Fortitude</label>
<a href="#fire-festival-fortitude" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="fire-festival-fortitude">Zone-wide buff from turning in a <a href="https://classic.wowhead.com/quest=9330/stealing-stormwinds-flame" data-info>Stealing ___'s Flame</a> quest.</small>
</li>
<li>
<input type="checkbox" id="spell-29388"/>
<a href="https://classic.wowhead.com/spell=29388/breath-of-fire" data-wowhead="buff"><img src="img/inv_summerfest_firedrink.jpg" alt="Fiery Festival Brew"/></a>
<label for="spell-29388">Fiery Festival Brew</label>
</li>
<li>
<input type="checkbox" id="spell-29332"/>
<a href="https://classic.wowhead.com/spell=29332/fire-toasted-bun" data-wowhead="buff"><img src="img/inv_misc_food_11.jpg" alt="Fire-toasted Bun"/></a>
<label for="spell-29332">Fire-toasted Bun</label>
</li>
<li>
<input type="checkbox" id="spell-29335"/>
<a href="https://classic.wowhead.com/spell=29335/elderberry-pie" data-wowhead="buff"><img src="img/inv_misc_food_10.jpg" alt="Elderberry Pie"/></a>
<label for="spell-29335">Elderberry Pie</label>
</li>
<li>
<input type="checkbox" id="spell-29333"/>
<a href="https://classic.wowhead.com/spell=29333/midsummer-sausage" data-wowhead="buff"><img src="img/inv_misc_food_53.jpg" alt="Midsummer Sausage"/></a>
<label for="spell-29333">Midsummer Sausage</label>
</li>
<li>
<input type="checkbox" id="spell-29334"/>
<a href="https://classic.wowhead.com/spell=29334/toasted-smorc" data-wowhead="buff"><img src="img/inv_summerfest_smorc.jpg" alt="Toasted Smorc"/></a>
<label for="spell-29334">Toasted Smorc</label>
</li>
</ul>
<div class="buff-summary"></div>
</div>
<div class="has-buff-count">
<span class="buff-count" data-toggle="tooltip" data-html="true" title="Members of this group stack.<br />Click the ▼ to expand this group.<br />Click this box to clear all marked members of this group."> </span>
<img src="img/inv_drink_04.jpg" alt="Party Buffs"/> Party Buffs
<a href="#party-buffs" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3 sub-section" id="party-buffs">
<li>
<small>
Available in capital cities for New Years, Lunar New Years, and July 4th.
</small>
</li>
<li>
<input type="checkbox" id="spell-26035"/>
<a href="https://classic.wowhead.com/spell=26035/celebrate-good-times" data-wowhead="buff"><img src="img/spell_nature_strength.jpg" alt="Celebrate Good Times!"/></a>
<label for="spell-26035">Celebrate Good Times!</label>
<a href="#celebrate-good-times" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="celebrate-good-times">
Only increases base stats.<br />
<code>/dance</code> with a <a href="https://classic.wowhead.com/npc=15908/orgrimmar-reveler">Reveler</a> in a capital city.
</small>
</li>
<li>
<input type="checkbox" id="spell-25947"/>
<a href="https://classic.wowhead.com/spell=25947/infatuation" data-wowhead="buff"><img src="img/spell_holy_silence.jpg" alt="Infatuation"/></a>
<label for="spell-25947">Infatuation</label>
<a href="#infatuation" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="infatuation">
<code>/kiss</code> a <a href="https://classic.wowhead.com/npc=15908/orgrimmar-reveler" data-info>Reveler</a> in a capital city.<br />
Only works if the NPC mentions wanting a kiss in his/her gossip.
</small>
</li>
<li>
<input type="checkbox" id="spell-26008"/>
<a href="https://classic.wowhead.com/spell=26008/toast" data-wowhead="buff"><img src="img/inv_misc_pocketwatch_01.jpg" alt="Toast"/></a>
<label for="spell-26008">Toast</label>
<a href="#toast" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="toast">
Have another player use a <a href="https://classic.wowhead.com/item=21267/toasting-goblet" data-info>Toasting Goblet</a> on you.
</small>
</li>
<li>
<input type="checkbox" id="spell-25851"/>
<a href="https://classic.wowhead.com/spell=25851/lightheaded" data-wowhead="buff"><img src="img/inv_drink_04.jpg" alt="Lightheaded"/></a>
<label for="spell-25851">Lightheaded</label>
<a href="#lightheaded" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="lightheaded">
Grants slow fall.<br />
Use a <a href="https://classic.wowhead.com/item=21171/filled-festive-mug" data-info>Filled Festive Mug.</a>
</small>
</li>
</ul>
<div class="buff-summary"></div>
</div>
<div>
<input type="checkbox" id="spell-24705"/>
<a href="https://classic.wowhead.com/spell=24705/invocation-of-the-wickerman" data-wowhead="buff"><img src="img/inv_waepon_bow_zulgrub_d_02.jpg" alt="Invocation of the Wickerman"/></a>
<label for="spell-24705">Invocation of the Wickerman</label>
</div>
<div>
<input type="checkbox" id="spell-26004"/>
<a href="https://classic.wowhead.com/spell=26004/mistletoe" data-wowhead="buff"><img src="img/spell_nature_healingtouch.jpg" alt="Mistletoe"/></a>
<label for="spell-26004">Mistletoe</label>
<a href="#mistletoe" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="mistletoe">
Have another player use a <a href="https://classic.wowhead.com/item=21519/mistletoe" data-info>Mistletoe</a> on you.
</small>
</div>
<div>
<input type="checkbox" id="spell-23768"/>
<img src="img/inv_misc_orb_02.jpg" alt="Sayge's Dark Fortunes"/>
<label for="spell-23768">Sayge's Dark Fortune...</label>
<a href="#darkmoon-faire" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3" id="darkmoon-faire">
<li><small>You can only have one of these at one time.</small></li>
<li>
<a href="https://classic.wowhead.com/spell=23768/sayges-dark-fortune-of-damage" data-wowhead="buff"><img src="img/inv_misc_orb_02.jpg" alt="Sayge's Dark Fortune of Damage"/> ... of Damage</a>
<small>Slay the man :: Execute painfully</small>
</li>
<li>
<a href="https://classic.wowhead.com/spell=23769/sayges-dark-fortune-of-resistance" data-wowhead="buff"><img src="img/inv_misc_orb_02.jpg" alt="Sayge's Dark Fortune of Resistance"/> ... of Resistance</a>
<small>Slay the man :: Execute painlessly</small>
</li>
<li>
<a href="https://classic.wowhead.com/spell=23767/sayges-dark-fortune-of-armor" data-wowhead="buff"><img src="img/inv_misc_orb_02.jpg" alt="Sayge's Dark Fortune of Armor"/> ... of Armor</a>
<small>Slay the man :: Let your friend go</small>
</li>
<li>
<a href="https://classic.wowhead.com/spell=23738/sayges-dark-fortune-of-spirit" data-wowhead="buff"><img src="img/inv_misc_orb_02.jpg" alt="Sayge's Dark Fortune of Spirit"/> ... of Spirit</a>
<small>Turn him over :: Confront the diplomat</small>
</li>
<li>
<a href="https://classic.wowhead.com/spell=23766/sayges-dark-fortune-of-intelligence" data-wowhead="buff"><img src="img/inv_misc_orb_02.jpg" alt="Sayge's Dark Fortune of Intelligence"/> ... of Intelligence</a>
<small>Turn him over :: Show not so quiet defiance</small>
</li>
<li>
<a href="https://classic.wowhead.com/spell=23737/sayges-dark-fortune-of-stamina" data-wowhead="buff"><img src="img/inv_misc_orb_02.jpg" alt="Sayge's Dark Fortune of Stamina"/> ... of Stamina</a>
<small>Confiscate the corn :: Speak against your brother</small>
</li>
<li>
<a href="https://classic.wowhead.com/spell=23735/sayges-dark-fortune-of-strength" data-wowhead="buff"><img src="img/inv_misc_orb_02.jpg" alt="Sayge's Dark Fortune of Strength"/> ... of Strength</a>
<small>Confiscate the corn :: Help your brother in</small>
</li>
<li>
<a href="https://classic.wowhead.com/spell=23736/sayges-dark-fortune-of-agility" data-wowhead="buff"><img src="img/inv_misc_orb_02.jpg" alt="Sayge's Dark Fortune of Agility"/> ... of Agility</a>
<small>Confiscate the corn :: Keep your brother out</small>
</li>
</ul>
</div>
</div>
</div>
<!--Equipment Buffs-->
<div class="border bc-cell" data-primary-category>
<div class="bc-cell-header m-sm-1">
<span class="h4">Gear Buffs <span data-category-count></span></span>
<button class="btn-sm btn-secondary d-lg-none float-right ml-3" data-toggle="collapse" data-target="#equipment-buffs" aria-expanded="true">
<span class="collapse-icon-open">–</span>
<span class="collapse-icon-closed">+</span>
</button>
<button class="ml-3 btn-sm btn-secondary float-right" data-clear-button>Clear</button>
</div>
<div id="equipment-buffs" class="collapse show">
<div class="stacking-buff">
<span class="stacking-count"> </span>
<input type="hidden" id="spell-20007" value="0"/>
<a href="https://classic.wowhead.com/spell=20007/holy-strength" data-wowhead="buff"><img src="img/spell_holy_blessingofstrength.jpg" alt="Crusader"/></a>
<label for="spell-20007">Crusader</label>
<a href="#crusader" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="crusader">Main hand and off-hand procs are separate and stack.<br/>3+ procs are possible with weapon swapping.</small>
</div>
<div>
<input type="checkbox" id="spell-25123"/>
<img src="img/inv_potion_100.jpg" alt="Weapon Oils"/>
<label for="spell-25123">Weapon Oils</label>
<a href="#weapon-oils" data-toggle="collapse">▼</a>
<ul class="collapse" id="weapon-oils" data-info>
<li><a href="https://classic.wowhead.com/item=20748/brilliant-mana-oil"><img src="img/inv_potion_100.jpg" alt="Brilliant Mana Oil"/> Brilliant Mana Oil</a></li>
<li><a href="https://classic.wowhead.com/item=20749/brilliant-wizard-oil"><img src="img/inv_potion_105.jpg" alt="Brilliant Wizard Oil"/> Brilliant Wizard Oil</a></li>
</ul>
</div>
<div>
<input type="checkbox" id="spell-22850"/>
<a href="https://classic.wowhead.com/item=18348/quelserrar"><img src="img/inv_sword_01.jpg" alt="Weapon Proc (Main Hand)"/></a>
<label for="spell-22850">Weapon Proc (Main Hand)</label>
</div>
<div>
<input type="checkbox" id="spell-8348"/>
<a href="https://classic.wowhead.com/item=6660/julies-dagger"><img src="img/inv_weapon_shortblade_07.jpg" alt="Weapon Proc (Off Hand)"/></a>
<label for="spell-8348">Weapon Proc (Off Hand)</label>
</div>
<div>
<input type="checkbox" id="spell-8512"/>
<a href="https://classic.wowhead.com/spell=8512/windfury-totem"><img src="img/spell_nature_cyclone.jpg" alt="Windfury Proc"/></a>
<label for="spell-8512">Windfury Proc</label>
</div>
<div>
<input type="checkbox" id="spell-16623"/>
<a href="https://classic.wowhead.com/item=12645/thorium-shield-spike"><img src="img/inv_misc_armorkit_20.jpg" alt="Shield Spike"/></a>
<label for="spell-16623">Shield Spike</label>
</div>
<div>
<input type="checkbox" id="spell-9783"/>
<a href="https://classic.wowhead.com/item=7969/mithril-spurs"><img src="img/ability_rogue_sprint.jpg" alt="Mithril Spurs"/></a>
<label for="spell-9783">Mithril Spurs</label>
</div>
<div class="stacking-buff">
<span class="stacking-count"> </span>
<input type="hidden" id="spell-24427" value="0" data-maximum="4"/>
<a href="https://classic.wowhead.com/item=20130/diamond-flask"><img src="img/inv_drink_01.jpg" alt="On-Use Trinket"/></a>
<label for="spell-24427">On-Use Trinket</label>
<a href="#on-use-trinket" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="on-use-trinket">
<a href="https://classic.wowhead.com/item=21670/badge-of-the-swarmguard">Some trinkets</a> have more than one buff.<br />
Up to four on-use trinket buffs can be applied.
</small>
</div>
<div>
<input type="checkbox" id="spell-12418"/>
<a href="https://classic.wowhead.com/spell=12418/stealth-detection"><img src="img/inv_helmet_47.jpg" alt="Catseye Ultra Goggles"/></a>
<label for="spell-12418">Catseye Ultra Goggles</label>
</div>
<div>
<input type="checkbox" id="spell-18787"/>
<a href="https://classic.wowhead.com/spell=18787/heavens-blessing" data-wowhead="buff"><img src="img/inv_pants_04.jpg" alt="Cloudkeeper Legplates"/></a>
<label for="spell-18787">Cloudkeeper Legplates</label>
<a href="#ckl" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="ckl">Puts <a href="https://classic.wowhead.com/item=20130/diamond-flask">Diamond Flask</a> on cooldown and vice versa.</small>
</div>
<div>
<input type="checkbox" id="spell-25907"/>
<a href="https://classic.wowhead.com/spell=25907/spell-blasting" data-wowhead="buff"><img src="img/inv_jewelry_ring_40.jpg" alt="Wrath of Cenarius"/></a>
<label for="spell-25907">Wrath of Cenarius</label>
</div>
<div>
<input type="checkbox" id="spell-29112"/>
<a href="https://classic.wowhead.com/spell=29112/champion-of-the-dawn"><img src="img/inv_misc_token_argentdawn2.jpg" alt="Champion of the Dawn"/></a>
<label for="spell-29112">Champion of the Dawn</label>
</div>
<div>
<input type="checkbox" id="spell-17670"/>
<a href="https://classic.wowhead.com/spell=17670/argent-dawn-commission" data-wowhead="buff"><img src="img/inv_jewelry_talisman_07.jpg" alt="Argent Dawn Commission"/></a>
<label for="spell-17670">Argent Dawn Commission</label>
<a href="#argent-dawn-commission" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="argent-dawn-commission">
Applied on equipping the various Argent Dawn trinkets. <br />
Can be removed with the command: <br />
<code>/cancelaura Argent Dawn Commission</code>
</small>
</div>
</div>
</div>
</div>
<div class="col-lg">
<!--Consumables-->
<div class="border bc-cell" data-primary-category>
<div class="bc-cell-header m-sm-1">
<span class="h4">Consumables <span data-category-count></span></span>
<button class="btn-sm btn-secondary d-lg-none float-right ml-3" data-toggle="collapse" data-target="#consumables" aria-expanded="true">
<span class="collapse-icon-open">–</span>
<span class="collapse-icon-closed">+</span>
</button>
<button class="ml-3 btn-sm btn-secondary float-right" data-clear-button>Clear</button>
</div>
<div id="consumables" class="collapse show">
<!--Flask-->
<div>
<input type="checkbox" id="spell-17626"/>
<img src="img/inv_potion_62.jpg" alt="Flasks"/>
<label for="spell-17626">Flask of...</label>
<a href="#flasks" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3" id="flasks">
<li><small>Only one of these may be active at one time.</small></li>
<li><small>Persists on death.</small></li>
<li><a href="https://classic.wowhead.com/item=13510/flask-of-the-titans"><img src="img/inv_potion_62.jpg" alt="Flask of the Titans"/> ... the Titans</a></li>
<li><a href="https://classic.wowhead.com/item=13512/flask-of-supreme-power"><img src="img/inv_potion_41.jpg" alt="Flask of Supreme Power"/> ... Supreme Power</a></li>
<li><a href="https://classic.wowhead.com/item=13511/flask-of-distilled-wisdom"><img src="img/inv_potion_97.jpg" alt="Flask of Distilled Wisdom"/> ... Distilled Wisdom</a></li>
<li><a href="https://classic.wowhead.com/item=13513/flask-of-chromatic-resistance"><img src="img/inv_potion_48.jpg" alt="Flask of Chromatic Resistance"/> ... Chromatic Resistance</a></li>
<li><a href="https://classic.wowhead.com/item=13506/flask-of-petrification"><img src="img/inv_potion_26.jpg" alt="Flask of Petrification"/> ... Petrification</a></li>
</ul>
</div>
<!--Zanza-->
<div>
<input type="checkbox" id="spell-24382" data-exclusive="non-profession"/>
<img src="img/inv_misc_coin_08.jpg" alt="Zanza Potion" />
<label for="spell-24382">Zanza Potion</label>
<a href="#zanza" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3" id="zanza">
<li><small>In the <a class="small-inline exclusion-modal-link" data-toggle="modal" data-target="#non-profession-exclusion-modal">non-profession consumable<br/>exclusion category.</a></small></li>
<li><a href="https://classic.wowhead.com/item=20079/spirit-of-zanza"><img src="img/inv_potion_30.jpg" alt="Spirit of Zanza"/> Spirit of Zanza</a></li>
<li><a href="https://classic.wowhead.com/item=20081/swiftness-of-zanza"><img src="img/inv_potion_31.jpg" alt="Swiftness of Zanza"/> Swiftness of Zanza</a></li>
<li><a href="https://classic.wowhead.com/item=20080/sheen-of-zanza"><img src="img/inv_potion_29.jpg" alt="Sheen of Zanza"/> Sheen of Zanza</a></li>
</ul>
</div>
<!--Blasted Lands-->
<div>
<input type="checkbox" id="spell-10667" data-exclusive="non-profession"/>
<img src="img/inv_stone_15.jpg" alt="Blasted Lands Consumable"/>
<label for="spell-10667">Blasted Lands Consumable</label>
<a href="#blasted-lands" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3" id="blasted-lands">
<li><small>In the <a class="small-inline exclusion-modal-link" data-toggle="modal" data-target="#non-profession-exclusion-modal">non-profession consumable<br/>exclusion category.</a></small></li>
<li><a href="https://classic.wowhead.com/item=8410/r-o-i-d-s#shared-cooldown"><img src="img/inv_stone_15.jpg" alt="R.O.I.D.S."/> R.O.I.D.S</a></li>
<li><a href="https://classic.wowhead.com/item=8412/ground-scorpok-assay"><img src="img/inv_misc_dust_02.jpg" alt="Ground Scorpok Assay"/> Ground Scorpok Assay</a></li>
<li><a href="https://classic.wowhead.com/item=8411/lung-juice-cocktail"><img src="img/inv_drink_12.jpg" alt="Lung Juice Cocktail"/> Lung Juice Cocktail</a></li>
<li><a href="https://classic.wowhead.com/item=8423/cerebral-cortex-compound"><img src="img/inv_potion_32.jpg" alt="Cerebral Cortex Compound"/> Cerebral Cortex Compound</a></li>
<li><a href="https://classic.wowhead.com/item=8424/gizzard-gum"><img src="img/inv_misc_food_30.jpg" alt="Gizzard Gum"/> Gizzard Gum</a></li>
</ul>
</div>
<!--Agility-->
<div>
<input type="checkbox" id="spell-17538"/>
<img src="img/inv_potion_32.jpg" alt="Agility"/>
<label for="spell-17538">Agility</label>
<a href="#agility" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3" id="agility">
<li><a href="https://classic.wowhead.com/item=13452/elixir-of-the-mongoose"><img src="img/inv_potion_32.jpg" alt="Elixir of the Mongoose"/> Elixir of the Mongoose</a></li>
<li><a href="https://classic.wowhead.com/item=9187/elixir-of-greater-agility"><img src="img/inv_potion_94.jpg" alt="Elixir of Greater Agility"/> Elixir of Greater Agility</a></li>
<li><a href="https://classic.wowhead.com/item=10309/scroll-of-agility-iv"><img src="img/inv_scroll_02.jpg" alt="Scroll of Agility IV"/> Scroll of Agility IV</a></li>
</ul>
</div>
<!--Strength-->
<div>
<input type="checkbox" id="spell-16323"/>
<img src="img/inv_misc_monsterscales_11.jpg" alt="Strength Consumable"/>
<label for="spell-16323">Strength</label>
<a href="#strength" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3" id="strength">
<li><a href="https://classic.wowhead.com/item=12451/juju-power"><img src="img/inv_misc_monsterscales_11.jpg" alt="Juju Power"/> Juju Power</a></li>
<li><a href="https://classic.wowhead.com/item=9206/elixir-of-giants"><img src="img/inv_potion_61.jpg" alt="Elixir of Giants"/> Elixir of Giants</a></li>
<li><a href="https://classic.wowhead.com/item=10310/scroll-of-strength-iv"><img src="img/inv_scroll_02.jpg" alt="Scroll of Strength IV"/> Scroll of Strength IV</a></li>
</ul>
</div>
<!--Attack Power-->
<div>
<input type="checkbox" id="spell-16329"/>
<img src="img/inv_misc_monsterscales_07.jpg" alt="Attack Power Consumable" />
<label for="spell-16329">Attack Power</label>
<a href="#attack-power" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3" id="attack-power">
<li><a href="https://classic.wowhead.com/item=12460/juju-might"><img src="img/inv_misc_monsterscales_07.jpg" alt="Juju Might" /> Juju Might</a></li>
<li><a href="https://classic.wowhead.com/item=12820/winterfall-firewater"><img src="img/inv_potion_92.jpg" alt="Winterfall Firewater" /> Winterfall Firewater</a></li>
</ul>
</div>
<div class="has-buff-count">
<span class="buff-count" data-toggle="tooltip" data-html="true" title="Members of this group stack.<br />Click the ▼ to expand this group.<br />Click this box to clear all marked members of this group."> </span>
<img src="img/inv_potion_25.jpg" alt="Spell Power Buffs" /> Spell Power Buffs <a href="#spell-power" data-toggle="collapse">▼</a>
<ul class="collapse sub-section" id="spell-power">
<li>
<input type="checkbox" id="spell-17539"/>
<a href="https://classic.wowhead.com/item=13454/greater-arcane-elixir" data-info><img src="img/inv_potion_25.jpg" alt="Greater Arcane Elixir" /></a>
<label for="spell-17539">Greater Arcane Elixir</label>
</li>
<li>
<input type="checkbox" id="spell-11474"/>
<a href="https://classic.wowhead.com/item=9264/elixir-of-shadow-power"><img src="img/inv_potion_46.jpg" alt="Elixir of Shadow Power" /></a>
<label for="spell-11474">Elixir of Shadow Power</label>
</li>
<li>
<input type="checkbox" id="spell-26276"/>
<a href="https://classic.wowhead.com/item=21546/elixir-of-greater-firepower"><img src="img/inv_potion_60.jpg" alt="Elixir of Greater Firepower" /></a>
<label for="spell-26276">Elixir of Greater Firepower</label>
</li>
<li>
<input type="checkbox" id="spell-21920"/>
<a href="https://classic.wowhead.com/item=17708/elixir-of-frost-power"><img src="img/inv_potion_03.jpg" alt="Elixir of Frost Power" /></a>
<label for="spell-21920">Elixir of Frost Power</label>
</li>
</ul>
<div class="buff-summary"></div>
</div>
<div>
<input type="checkbox" id="spell-24363"/>
<a href="https://classic.wowhead.com/item=20007/mageblood-potion"><img src="img/inv_potion_45.jpg" alt="Mageblood Potion"/></a>
<label for="spell-24363">Mageblood Potion</label>
</div>
<div>
<input type="checkbox" id="spell-3593"/>
<a href="https://classic.wowhead.com/item=3825/elixir-of-fortitude"><img src="img/inv_potion_43.jpg" alt="Elixir of Fortitude"/></a>
<label for="spell-3593">Elixir of Fortitude</label>
</div>
<!--Armor Consumable-->
<div>
<input type="checkbox" id="spell-11348"/>
<img src="img/inv_potion_66.jpg" alt="Long-term Armor" />
<label for="spell-11348">Long-term Armor</label>
<a href="#armor-consumable" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3" id="armor-consumable">
<li><a href="https://classic.wowhead.com/item=13445/elixir-of-superior-defense"><img src="img/inv_potion_66.jpg" alt="Elixir of Superior Defense" /> Elixir of Superior Defense</a></li>
<li><a href="https://classic.wowhead.com/item=8951/elixir-of-greater-defense"><img src="img/inv_potion_65.jpg" alt="Elixir of Greater Defense" /> Elixir of Greater Defense</a></li>
<li><a href="https://classic.wowhead.com/item=10305/scroll-of-protection-iv"><img src="img/inv_scroll_07.jpg" alt="Scroll of Protection IV" /> Scroll of Protection IV</a></li>
<li>
<a href="https://classic.wowhead.com/item=11564/crystal-ward"><img src="img/inv_misc_gem_ruby_02.jpg" alt="Crystal Ward" /> Crystal Ward</a>
<small>On the secondary consumable cooldown.</small>
</li>
</ul>
</div>
<!--Health Regeneration-->
<div>
<input type="checkbox" id="spell-24361"/>
<img src="img/inv_potion_80.jpg" alt="Health Regeneration" />
<label for="spell-24361">Health Regeneration</label>
<a href="#health-regeneration" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3" id="health-regeneration">
<li><a href="https://classic.wowhead.com/item=20004/major-trolls-blood-potion"><img src="img/inv_potion_80.jpg" alt="Major Troll's Blood Potion" /> Major Troll's Blood Potion</a></li>
<li><a href="https://classic.wowhead.com/item=3826/mighty-trolls-blood-potion"><img src="img/inv_potion_79.jpg" alt="Mighty Troll's Blood Potion" /> Mighty Troll's Blood Potion</a></li>
<li><a href="https://classic.wowhead.com/item=3388/strong-trolls-blood-potion"><img src="img/inv_potion_78.jpg" alt="Strong Troll's Blood Potion" /> Strong Troll's Blood Potion</a></li>
<li><a href="https://classic.wowhead.com/item=3382/weak-trolls-blood-potion"><img src="img/inv_potion_77.jpg" alt="Weak Troll's Blood Potion" /> Weak Troll's Blood Potion</a></li>
</ul>
</div>
<div>
<input type="checkbox" id="spell-11371"/>
<a href="https://classic.wowhead.com/item=9088/gift-of-arthas"><img src="img/inv_potion_28.jpg" alt="Gift of Arthas"/></a>
<label for="spell-11371">Gift of Arthas</label>
</div>
<!-- Juju Resistance -->
<div>
<input type="checkbox" id="spell-16326"/>
<img src="img/inv_misc_monsterscales_15.jpg" alt="Juju Resistance" />
<label for="spell-16326">Juju Resistance</label>
<a href="#juju-resistance" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3" id="juju-resistance">
<li><a href="https://classic.wowhead.com/item=12455/juju-ember"><img src="img/inv_misc_monsterscales_15.jpg" alt="Juju Ember" /> Juju Ember</a></li>
<li><a href="https://classic.wowhead.com/item=12457/juju-chill"><img src="img/inv_misc_monsterscales_09.jpg" alt="Juju Chill" /> Juju Chill</a></li>
</ul>
</div>
<div>
<input type="checkbox" id="spell-16322"/>
<a href="https://classic.wowhead.com/spell=16322/juju-flurry" data-wowhead="buff"><img src="img/inv_misc_monsterscales_17.jpg" alt="Juju Flurry"/></a>
<label for="spell-16322">Juju Flurry</label>
</div>
<div>
<input type="checkbox" id="spell-15279"/>
<a href="https://classic.wowhead.com/item=11567/crystal-spire"><img src="img/inv_misc_gem_stone_01.jpg" alt="Crystal Spire"/></a>
<label for="spell-15279">Crystal Spire</label>
<a href="#crystal-spire" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="crystal-spire">Does not stack with <a href="https://classic.wowhead.com/spell=9910/thorns" data-wowhead="buff">Thorns</a>.</small>
</div>
<div>
<input type="checkbox" id="spell-5665"/>
<a href="https://classic.wowhead.com/item=5206/bogling-root"><img src="img/inv_misc_herb_07.jpg" alt="Bogling Root"/></a>
<label for="spell-5665">Bogling Root</label>
</div>
<!--Elemental Absorption-->
<div class="has-buff-count">
<span class="buff-count" data-toggle="tooltip" data-html="true" title="Members of this group stack.<br />Click the ▼ to expand this group.<br />Click this box to clear all marked members of this group."> </span>
<img src="img/inv_potion_24.jpg" alt="Elemental Absorption"/> Elemental Absorption <a href="#elemental-absorption" data-toggle="collapse">▼</a>
<ul class="collapse sub-section" id="elemental-absorption">
<li>
<input type="checkbox" id="spell-17549"/>
<a href="https://classic.wowhead.com/item=13461/greater-arcane-protection-potion"><img src="img/inv_potion_83.jpg" alt="Greater Arcane Protection Potion" /></a>
<label for="spell-17549">Greater Arcane Protection Potion</label>
</li>
<li>
<input type="checkbox" id="spell-17543"/>
<a href="https://classic.wowhead.com/item=13457/greater-fire-protection-potion"><img src="img/inv_potion_24.jpg" alt="Greater Fire Protection Potion" /></a>
<label for="spell-17543">Greater Fire Protection Potion</label>
</li>
<li>
<input type="checkbox" id="spell-17544"/>
<a href="https://classic.wowhead.com/item=13456/greater-frost-protection-potion"><img src="img/inv_potion_20.jpg" alt="Greater Frost Protection Potion" /></a>
<label for="spell-17544">Greater Frost Protection Potion</label>
</li>
<li>
<input type="checkbox" id="spell-17546"/>
<a href="https://classic.wowhead.com/item=13458/greater-nature-protection-potion"><img src="img/inv_potion_22.jpg" alt="Greater Nature Protection Potion" /></a>
<label for="spell-17546">Greater Nature Protection Potion</label>
</li>
<li>
<input type="checkbox" id="spell-17548"/>
<a href="https://classic.wowhead.com/item=13459/greater-shadow-protection-potion"><img src="img/inv_potion_23.jpg" alt="Greater Shadow Protection Potion" /></a>
<label for="spell-17548">Greater Shadow Protection Potion</label>
</li>
</ul>
<div class="buff-summary"></div>
</div>
<div>
<input type="checkbox" id="spell-18125"/>
<img src="img/spell_misc_food.jpg" alt="Food Buff"/>
<label for="spell-18125">Well Fed / Food Buff</label>
</div>
<div class="has-buff-count">
<span class="buff-count" data-toggle="tooltip" data-html="true" title="Members of this group stack.<br />Click the ▼ to expand this group.<br />Click this box to clear all marked members of this group."> </span>
<img src="img/inv_drink_04.jpg" alt="Alcohol"/> Alcohol <a href="#alcohol" data-toggle="collapse">▼</a>
<ul class="collapse sub-section" id="alcohol">
<li>
<input type="checkbox" id="spell-22790"/>
<a href="https://classic.wowhead.com/spell=22790/kreegs-stout-beatdown" data-wowhead="buff"><img src="img/inv_drink_05.jpg" alt="Kreeg's Stout Beatdown" /></a>
<label for="spell-22790">Kreeg's Stout Beatdown</label>
</li>
<li>
<input type="checkbox" id="spell-25804" data-exclusive="stam-alcohol"/>
<a href="https://classic.wowhead.com/spell=25804/rumsey-rum-black-label" data-wowhead="buff"><img src="img/inv_drink_04.jpg" alt="Rumsey Rum Black Label" /></a>
<label for="spell-25804">Rumsey Rum Black Label</label>
</li>
<li>
<input type="checkbox" id="spell-22789" data-exclusive="stam-alcohol"/>
<a href="https://classic.wowhead.com/spell=22789/gordok-green-grog"><img src="img/inv_drink_03.jpg" alt="Gordok Green Grog" /></a>
<label for="spell-22789">Gordok Green Grog</label>
</li>
</ul>
</div>
<div>
<input type="checkbox" id="spell-17528"/>
<img src="img/inv_potion_41.jpg" alt="Primary Potion"/>
<label for="spell-17528">Primary Potion</label>
<a href="#primary-potion" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3" id="primary-potion">
<li>
<a href="https://classic.wowhead.com/item=9036/magic-resistance-potion"><img src="img/inv_potion_16.jpg" alt="Magic Resistance Potion" /> Magic Resistance Potion</a>
<small>Does not stack with <a class="small-inline" href="https://classic.wowhead.com/spell=21850/gift-of-the-wild" data-wowhead="buff">Gift of the Wild</a></small>
<small class="indent">or <a class="small-inline" href="https://classic.wowhead.com/spell=10535/fire-resistance" data-wowhead="buff">player resistance buffs.</a></small>
<a href="https://classic.wowhead.com/item=9030/restorative-potion"><img src="img/inv_potion_01.jpg" alt="Restorative Potion" /> Restorative Potion</a>
<a href="https://classic.wowhead.com/item=13442/mighty-rage-potion"><img src="img/inv_potion_41.jpg" alt="Mighty Rage Potion" /> Mighty Rage Potion</a>
<a href="https://classic.wowhead.com/item=3387/limited-invulnerability-potion"><img src="img/inv_potion_62.jpg" alt="Limited Invulnerability Potion" /> Limited Invulnerability Potion</a>
<a href="https://classic.wowhead.com/item=20008/living-action-potion"><img src="img/inv_potion_07.jpg" alt="Living Action Potion" /> Living Action Potion</a>
<a href="https://classic.wowhead.com/item=12190/dreamless-sleep-potion"><img src="img/inv_potion_83.jpg" alt="Dreamless Sleep Potion" /> Dreamless Sleep Potion</a>
<a href="https://classic.wowhead.com/item=5634/free-action-potion"><img src="img/inv_potion_04.jpg" alt="Free Action Potion" /> Free Action Potion</a>
<a href="https://classic.wowhead.com/item=2459/swiftness-potion"><img src="img/inv_potion_95.jpg" alt="Swiftness Potion" /> Swiftness Potion</a>
<a href="https://classic.wowhead.com/item=13455/greater-stoneshield-potion"><img src="img/inv_potion_69.jpg" alt="Greater Stoneshield Potion" /> Greater Stoneshield Potion</a>
</li>
</ul>
</div>
<div>
<input type="checkbox" id="spell-17540"/>
<img src="img/inv_potion_69.jpg" alt="Additional Primary Potion"/>
<label for="spell-17540">Additional Primary Potion</label>
<a href="#additional-primary-potion" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<div class="collapse mb-sm-3" id="additional-primary-potion">
<small class="indent">Primary potion cooldowns elapse while logged off.</small>
<small class="indent">This trick can let you stack primary potions</small>
<small class="indent">despite their cooldown.</small>
</div>
</div>
<div>
<input type="checkbox" id="spell-11350"/>
<a href="https://classic.wowhead.com/item=8956/oil-of-immolation"><img src="img/inv_potion_11.jpg" alt="Oil of Immolation"/></a>
<label for="spell-11350">Oil of Immolation</label>
</div>
<div>
<input type="checkbox" id="spell-10592"/>
<a href="https://classic.wowhead.com/item=10592/catseye-elixir"><img src="img/inv_potion_36.jpg" alt="Catseye Elixir"/></a>
<label for="spell-10592">Catseye Elixir</label>
</div>
<div>
<input type="checkbox" id="spell-7396"/>
<a href="https://classic.wowhead.com/spell=7396/fishliver-oil" data-wowhead="buff"><img src="img/inv_misc_fish_06.jpg" alt="Fishliver Oil"/></a>
<label for="spell-7396">Fishliver Oil</label>
</div>
<div>
<input type="checkbox" id="spell-15852"/>
<a href="https://classic.wowhead.com/item=12217/dragonbreath-chili"><img src="img/inv_drink_17.jpg" alt="Dragonbreath Chili"/></a>
<label for="spell-15852">Dragonbreath Chili</label>
<a href="#dragonbreath-chili" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="dragonbreath-chili">Stacks with food buff, but only if<br/>you eat chili second.</small>
</div>
<div>
<input type="checkbox" id="spell-15851"/>
<a href="https://classic.wowhead.com/spell=15852/dragonbreath-chili"><img src="img/spell_fire_incinerate.jpg" alt="Dragonbreath Chili Proc"/></a>
<label for="spell-15851">Dragonbreath Chili Proc</label>
</div>
<div>
<input type="checkbox" id="spell-18610"/>
<a href="https://classic.wowhead.com/item=14530/heavy-runecloth-bandage"><img src="img/spell_holy_heal.jpg" alt="First Aid"/></a>
<label for="spell-18610">First Aid</label>
</div>
<div>
<input type="checkbox" id="spell-6657"/>
<img src="img/inv_misc_monsterhead_04.jpg" alt="Cosmetic Item"/>
<label for="spell-6657">Cosmetic Item</label>
<a href="#cosmetics" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3" id="cosmetics">
<li><a href="https://classic.wowhead.com/item=6657/savory-deviate-delight"><img src="img/inv_misc_monsterhead_04.jpg" alt="Savory Deviate Delight" /> Savory Deviate Delight</a></li>
<li><a href="https://classic.wowhead.com/item=5462/dartols-rod-of-transformation"><img src="img/inv_wand_01.jpg" alt="Dartol's Rod of Transformation" /> Dartol's Rod of Transformation</a></li>
<li><a href="https://classic.wowhead.com/item=18258/gordok-ogre-suit"><img src="img/inv_chest_chain_14.jpg" alt="Gordok Ogre Suit" /> Gordok Ogre Suit</a></li>
<li><a href="https://classic.wowhead.com/item=1973/orb-of-deception"><img src="img/inv_misc_orb_02.jpg" alt="Orb of Deception" /> Orb of Deception</a></li>
<li><a href="https://classic.wowhead.com/item=20413/hallowed-wand-random"><img src="img/inv_wand_12.jpg" alt="Hallowed Wand" /> Hallowed Wand</a></li>
<li><a href="https://classic.wowhead.com/item=21213/preserved-holly"><img src="img/inv_misc_branch_01.jpg" alt="Preserved Holly" /> Preserved Holly</a></li>
<li><a href="https://classic.wowhead.com/spell=21848/snowman" data-wowhead="buff"><img src="img/spell_frost_frostward.jpg" alt="Winter Veil Disguise Kit" /> Winter Veil Disguise Kit</a></li>
</ul>
</div>
<div class="has-buff-count">
<span class="buff-count" data-toggle="tooltip" data-html="true" title="Members of this group stack.<br />Click the ▼ to expand this group.<br />Click this box to clear all marked members of this group."> </span>
<img src="img/inv_potion_83.jpg" alt="Noggenfogger Effects"/> Noggenfogger Elixir <a href="#noggenfogger" data-toggle="collapse">▼</a>
<ul class="collapse sub-section" id="noggenfogger">
<li>
<input type="checkbox" id="spell-16593"/>
<a href="https://classic.wowhead.com/spell=16593/noggenfogger-elixir" data-wowhead="buff"><img src="img/spell_magic_featherfall.jpg" alt="Slow Fall" /></a>
<label for="spell-16593">Slow Fall</label>
</li>
<li>
<input type="checkbox" id="spell-16591"/>
<a href="https://classic.wowhead.com/spell=16591/noggenfogger-elixir" data-wowhead="buff"><img src="img/spell_shadow_raisedead.jpg" alt="Underwater Breathing" /></a>
<label for="spell-16591">Underwater Breathing</label>
</li>
<li>
<input type="checkbox" id="spell-16595"/>
<a href="https://classic.wowhead.com/spell=16595/noggenfogger-elixir" data-wowhead="buff"><img src="img/spell_shadow_grimward.jpg" alt="Shrink" /></a>
<label for="spell-16595">Shrink</label>
</li>
</ul>
<div class="buff-summary"></div>
</div>
<div>
<input type="checkbox" id="spell-5816"/>
<a href="https://classic.wowhead.com/item=5816/light-of-elune"><img src="img/inv_potion_13.jpg" alt="Light of Elune"/></a>
<label for="spell-5816">Light of Elune</label>
</div>
</div>
</div>
</div>
<div class="col-lg">
<!--Raid Buffs-->
<div class="border bc-cell" data-primary-category>
<div class="bc-cell-header m-sm-1">
<span class="h4">Raid Buffs <span data-category-count></span></span>
<button class="btn-sm btn-secondary d-lg-none float-right ml-3" data-toggle="collapse" data-target="#raid-buffs" aria-expanded="true">
<span class="collapse-icon-open">–</span>
<span class="collapse-icon-closed">+</span>
</button>
<button class="ml-3 btn-sm btn-secondary float-right" data-clear-button>Clear</button>
</div>
<div id="raid-buffs" class="collapse show">
<div>
<input type="checkbox" id="spell-11551"/>
<a href="https://classic.wowhead.com/spell=11551/battle-shout" data-wowhead="buff"><img src="img/ability_warrior_battleshout.jpg" alt="Battle Shout"/></a>
<label for="spell-11551" class="warrior-color">Battle Shout</label>
</div>
<!--Druid Buffs-->
<div class="has-buff-count">
<span class="buff-count" data-toggle="tooltip" data-html="true" title="Click the ▼ to expand this group.<br />Click this box to clear all marked members of this group."> </span>
<img src="img/classicon_druid.jpg" alt="Druid Buffs" /> <span class="druid-color">Druid Buffs</span> <a href="#druid-buffs" data-toggle="collapse">▼</a>
<ul class="collapse mb-sm-3 sub-section" id="druid-buffs">
<li>
<input type="checkbox" id="spell-21850"/>
<a href="https://classic.wowhead.com/spell=21850/gift-of-the-wild" data-wowhead="buff"><img src="img/spell_nature_regeneration.jpg" alt="Gift of the Wild"/></a>
<label for="spell-21850" class="druid-color">Gift of the Wild</label>
</li>
<li>
<input type="checkbox" id="spell-24932"/>
<a href="https://classic.wowhead.com/spell=24932/leader-of-the-pack" data-wowhead="buff"><img src="img/spell_nature_unyeildingstamina.jpg" alt="Leader of the Pack"/></a>
<label for="spell-24932" class="druid-color">Leader of the Pack</label>
</li>
<li>
<input type="checkbox" id="spell-24907"/>
<a href="https://classic.wowhead.com/spell=24907/moonkin-aura" data-wowhead="buff"><img src="img/spell_nature_moonglow.jpg" alt="Moonkin Aura"/></a>
<label for="spell-24907" class="druid-color">Moonkin Aura</label>
</li>
<li>
<input type="checkbox" id="spell-9910"/>
<a href="https://classic.wowhead.com/spell=9910/thorns" data-wowhead="buff"><img src="img/spell_nature_thorns.jpg" alt="Thorns"/></a>
<label for="spell-9910" class="druid-color">Thorns</label>
<a href="#thorns" data-toggle="collapse"><img src="img/Information.png" alt="More Info" data-info/></a>
<small class="collapse mb-sm-3" id="thorns">Does not stack with <a href="https://classic.wowhead.com/item=11567/crystal-spire" data-info>Crystal Spire</a>.</small>
</li>
<li>
<input type="checkbox" id="spell-9841"/>
<a href="https://classic.wowhead.com/spell=9841/rejuvenation" data-wowhead="buff"><img src="img/spell_nature_rejuvenation.jpg" alt="Rejuvenation"/></a>
<label for="spell-9841" class="druid-color">Rejuvenation</label>
</li>
<li>
<input type="checkbox" id="spell-9858"/>
<a href="https://classic.wowhead.com/spell=9858/regrowth" data-wowhead="buff"><img src="img/spell_nature_resistnature.jpg" alt="Regrowth"/></a>
<label for="spell-9858" class="druid-color">Regrowth</label>
</li>
<li>
<input type="checkbox" id="spell-9863"/>
<a href="https://classic.wowhead.com/spell=9863/tranquility" data-wowhead="buff"><img src="img/spell_nature_tranquility.jpg" alt="Tranquility"/></a>
<label for="spell-9863" class="druid-color">Tranquility</label>
</li>
<li>
<input type="checkbox" id="spell-29166"/>
<a href="https://classic.wowhead.com/spell=29166/innervate" data-wowhead="buff"><img src="img/spell_nature_lightning.jpg" alt="Innervate"/></a>
<label for="spell-29166" class="druid-color">Innervate</label>
</li>
<li>
<input type="checkbox" id="spell-2893"/>
<a href="https://classic.wowhead.com/spell=2893/abolish-poison" data-wowhead="buff"><img src="img/spell_nature_nullifypoison_02.jpg" alt="Abolish Poison"/></a>
<label for="spell-2893" class="druid-color">Abolish Poison</label>
</li>
<li>
<input type="checkbox" id="spell-28750"/>
<a href="https://classic.wowhead.com/spell=28750/blessing-of-the-claw" data-wowhead="buff"><img src="img/spell_holy_blessingofagility.jpg" alt="T3 6pc Proc (Blessing of the Claw)"/></a>
<label for="spell-28750" class="druid-color">T3 6pc Proc</label>
</li>
</ul>
<div class="buff-summary"></div>