File daybreak.lua changed (mode: 100644) (index 5f94fc2..3a148de) |
... |
... |
code line sorting. |
146 |
146 |
@tparam string localizedSpellName aura name to track |
@tparam string localizedSpellName aura name to track |
147 |
147 |
@tparam string buttonName |
@tparam string buttonName |
148 |
148 |
@tparam frame parentFrame |
@tparam frame parentFrame |
|
149 |
|
@tparam string filter optional filter keywords forwarded to UnitAura function |
|
150 |
|
@tparam number size optional button artwork size pixels |
|
151 |
|
@tparam number size optional button artwork padding pixels |
149 |
152 |
@treturn frame newly allocated button frame instance |
@treturn frame newly allocated button frame instance |
150 |
153 |
]] |
]] |
151 |
|
local function createButton(column, row, localizedSpellName, buttonName, parentFrame, filter) |
|
|
154 |
|
local function createButton(column, row, localizedSpellName, buttonName, parentFrame, |
|
155 |
|
filter, size, padding) |
152 |
156 |
assert (buttonName ~= nil) |
assert (buttonName ~= nil) |
153 |
157 |
assert ('string' == type(buttonName)) |
assert ('string' == type(buttonName)) |
154 |
158 |
assert (string.len(buttonName) >= 2) |
assert (string.len(buttonName) >= 2) |
|
... |
... |
local function createButton(column, row, localizedSpellName, buttonName, parentF |
162 |
166 |
assert (string.len(localizedSpellName) <= 256) |
assert (string.len(localizedSpellName) <= 256) |
163 |
167 |
|
|
164 |
168 |
local button = CreateFrame('BUTTON', buttonName, parentFrame) |
local button = CreateFrame('BUTTON', buttonName, parentFrame) |
165 |
|
local padding = 4 |
|
166 |
|
local size = getDefaultButtonSize() |
|
|
169 |
|
if not padding then |
|
170 |
|
padding = 4 |
|
171 |
|
end |
|
172 |
|
if not size then |
|
173 |
|
size = getDefaultButtonSize() |
|
174 |
|
end |
167 |
175 |
local s = size + padding |
local s = size + padding |
168 |
176 |
button:SetSize(size, size) |
button:SetSize(size, size) |
169 |
177 |
button:SetPoint('BOTTOMLEFT', column * s, row * s) |
button:SetPoint('BOTTOMLEFT', column * s, row * s) |
|
... |
... |
Lose control indicator. |
612 |
620 |
@section cyclone |
@section cyclone |
613 |
621 |
]] |
]] |
614 |
622 |
|
|
615 |
|
local function createCycloneButton(column, row, localizedSpellName, buttonDesignation, parentFrame) |
|
616 |
|
return createButton(column, row, localizedSpellName, buttonDesignation, parentFrame, 'HARMFUL') |
|
617 |
|
end |
|
618 |
|
|
|
619 |
623 |
local function cycloneEventProcessor(self) |
local function cycloneEventProcessor(self) |
620 |
624 |
local unitDesignation = self.unit or 'player' |
local unitDesignation = self.unit or 'player' |
621 |
625 |
|
|
|
... |
... |
local function cycloneEventProcessor(self) |
627 |
631 |
end |
end |
628 |
632 |
local i = #auraTable |
local i = #auraTable |
629 |
633 |
local activeSpellName, activeSpellIcon |
local activeSpellName, activeSpellIcon |
|
634 |
|
local filter = self.filter or 'HARMFUL' |
630 |
635 |
while (i > 0) do |
while (i > 0) do |
631 |
636 |
local spellName = auraTable[i] |
local spellName = auraTable[i] |
632 |
637 |
if spellName ~= nil and 'string' == type(spellName) then |
if spellName ~= nil and 'string' == type(spellName) then |
633 |
|
local n, _, icon = UnitDebuff(unitDesignation, spellName) |
|
|
638 |
|
local n, _, icon = UnitAura(unitDesignation, spellName, nil, filter) |
634 |
639 |
if n then |
if n then |
635 |
640 |
activeSpellName = n |
activeSpellName = n |
636 |
641 |
activeSpellIcon = icon |
activeSpellIcon = icon |
|
... |
... |
local function cycloneEventProcessor(self) |
643 |
648 |
self.spell = activeSpellName |
self.spell = activeSpellName |
644 |
649 |
self:SetNormalTexture(activeSpellIcon) |
self:SetNormalTexture(activeSpellIcon) |
645 |
650 |
self:SetScript('OnUpdate', applyOverlayUpdate) |
self:SetScript('OnUpdate', applyOverlayUpdate) |
|
651 |
|
self:Show() |
646 |
652 |
else |
else |
647 |
653 |
self.spell = nil |
self.spell = nil |
648 |
654 |
self:SetNormalTexture(nil) |
self:SetNormalTexture(nil) |
649 |
655 |
self:SetScript('OnUpdate', nil) |
self:SetScript('OnUpdate', nil) |
650 |
656 |
self:SetText(nil) |
self:SetText(nil) |
|
657 |
|
self:Hide() |
651 |
658 |
end |
end |
652 |
659 |
end |
end |
653 |
660 |
|
|
|
661 |
|
local function createCycloneButton(column, row, buttonDesignation, parentFrame, auraTable) |
|
662 |
|
assert (auraTable ~= nil) |
|
663 |
|
assert ('table' == type(auraTable)) |
|
664 |
|
|
|
665 |
|
local size = 40 |
|
666 |
|
local padding = 8 |
|
667 |
|
local b = createButton(column, row, 'Cyclone', buttonDesignation, parentFrame, |
|
668 |
|
'HARMFUL', size, padding) |
|
669 |
|
|
|
670 |
|
b.unit = 'player' |
|
671 |
|
b.auraTable = auraTable |
|
672 |
|
|
|
673 |
|
b:UnregisterAllEvents() |
|
674 |
|
b:SetScript('OnEvent', cycloneEventProcessor) |
|
675 |
|
b:RegisterEvent('UNIT_AURA') |
|
676 |
|
|
|
677 |
|
return b |
|
678 |
|
end |
|
679 |
|
|
654 |
680 |
--[[-- |
--[[-- |
655 |
681 |
Initialize character lose control indicators. |
Initialize character lose control indicators. |
656 |
682 |
@function initCyclone |
@function initCyclone |
|
... |
... |
Initialize character lose control indicators. |
659 |
685 |
]] |
]] |
660 |
686 |
local function initCyclone(rootFrame) |
local function initCyclone(rootFrame) |
661 |
687 |
local p = CreateFrame('FRAME', 'DaybreakCycloneFrame', rootFrame) |
local p = CreateFrame('FRAME', 'DaybreakCycloneFrame', rootFrame) |
662 |
|
local size = 32 |
|
|
688 |
|
local size = 40 |
663 |
689 |
local padding = 8 |
local padding = 8 |
664 |
|
p:SetSize((padding + size), (padding + size) * 4) |
|
|
690 |
|
local paddedSize = size + padding |
|
691 |
|
p:SetSize(paddedSize, paddedSize * 4) |
665 |
692 |
p:SetPoint('CENTER', 0, 0) |
p:SetPoint('CENTER', 0, 0) |
666 |
693 |
|
|
667 |
|
local fontHandle = DaybreakFont or NumberFont_Outline_Large |
|
668 |
|
local text |
|
669 |
|
|
|
670 |
|
local q = CreateFrame('BUTTON', 'DaybreakCycloneFrame4', p) |
|
671 |
|
q.unit = 'player' |
|
672 |
|
q.filter = 'HARMFUL' |
|
673 |
|
|
|
674 |
|
text = q:CreateFontString(q:GetName() .. 'Text', 'OVERLAY') |
|
675 |
|
text:SetFontObject(fontHandle) |
|
676 |
|
text:SetAllPoints() |
|
677 |
|
|
|
678 |
|
q:SetFontString(text) |
|
679 |
|
q:SetText(nil) |
|
680 |
|
|
|
681 |
|
q:SetSize(size, size) |
|
682 |
|
q:SetPoint('BOTTOMLEFT', 0, (q:GetHeight() + padding) * 3) |
|
683 |
|
q.auraTable = { |
|
|
694 |
|
createCycloneButton(0, 3, 'DaybreakCycloneFrame4', p, { |
684 |
695 |
--[[ Magic ]]-- |
--[[ Magic ]]-- |
685 |
696 |
--[[ Disorient ]]-- |
--[[ Disorient ]]-- |
686 |
697 |
'Death Coil', |
'Death Coil', |
|
... |
... |
local function initCyclone(rootFrame) |
694 |
705 |
'Hammer of Justice', |
'Hammer of Justice', |
695 |
706 |
'Ring of Frost', |
'Ring of Frost', |
696 |
707 |
'Fire Blast', |
'Fire Blast', |
|
708 |
|
'Intimidation', |
697 |
709 |
--[[ Poison ]]-- |
--[[ Poison ]]-- |
698 |
|
--[[ Curse ]]-- |
|
699 |
|
'Hex', |
|
|
710 |
|
'Wyvern Sting', |
700 |
711 |
--[[ Physical ]]-- |
--[[ Physical ]]-- |
701 |
712 |
--[[ Disorient ]]-- |
--[[ Disorient ]]-- |
|
713 |
|
'Scattering Shot', |
702 |
714 |
'Head Butt', |
'Head Butt', |
703 |
715 |
'Blind', |
'Blind', |
704 |
716 |
'Gouge', |
'Gouge', |
705 |
717 |
'Holy Word: Chastise', |
'Holy Word: Chastise', |
706 |
718 |
'Intimidating Shout', |
'Intimidating Shout', |
707 |
719 |
'Sap', |
'Sap', |
|
720 |
|
--[[ Curse ]]-- |
|
721 |
|
'Hex', |
708 |
722 |
--[[ Stun ]]-- |
--[[ Stun ]]-- |
709 |
723 |
'Maim', |
'Maim', |
710 |
724 |
'Mutilate', |
'Mutilate', |
711 |
725 |
'Cheap Shot', |
'Cheap Shot', |
712 |
726 |
'Concussion Blow', |
'Concussion Blow', |
713 |
|
'Cyclone', |
|
714 |
727 |
'Gnaw', |
'Gnaw', |
715 |
728 |
'Intercept', |
'Intercept', |
|
729 |
|
'Feral Charge', |
716 |
730 |
'Kidney Shot', |
'Kidney Shot', |
717 |
731 |
'Shockwave', |
'Shockwave', |
718 |
732 |
'Throwdown', |
'Throwdown', |
719 |
|
} |
|
720 |
|
q:SetScript('OnEvent', cycloneEventProcessor) |
|
721 |
|
q:RegisterEvent('UNIT_AURA') |
|
722 |
|
|
|
723 |
|
local r = CreateFrame('BUTTON', 'DaybreakCycloneFrame3', p) |
|
724 |
|
r.unit = 'player' |
|
725 |
|
r.filter = 'HARMFUL' |
|
726 |
|
|
|
727 |
|
text = r:CreateFontString(r:GetName() .. 'Text', 'OVERLAY') |
|
728 |
|
text:SetFontObject(fontHandle) |
|
729 |
|
text:SetAllPoints() |
|
730 |
|
|
|
731 |
|
r:SetFontString(text) |
|
732 |
|
r:SetText(nil) |
|
|
733 |
|
'Bash', |
|
734 |
|
'Pounce', |
|
735 |
|
'Maim', |
|
736 |
|
'Cyclone', |
|
737 |
|
}) |
733 |
738 |
|
|
734 |
|
r:SetSize(size, size) |
|
735 |
|
r:SetPoint('BOTTOMLEFT', 0, (r:GetHeight() + padding) * 2) |
|
736 |
|
r.auraTable = { |
|
|
739 |
|
createCycloneButton(0, 2, 'DaybreakCycloneFrame3', p, { |
|
740 |
|
--[[ Magic removable ]]-- |
737 |
741 |
'Counterspell', |
'Counterspell', |
738 |
742 |
'Silence', |
'Silence', |
739 |
743 |
'Spell Lock', |
'Spell Lock', |
740 |
744 |
'Strangulate', |
'Strangulate', |
|
745 |
|
--[[ Unremovable ]]-- |
|
746 |
|
'Garrote - Silence', |
741 |
747 |
'Gag Order', |
'Gag Order', |
742 |
748 |
'Solar Beam', |
'Solar Beam', |
743 |
|
} |
|
744 |
|
r:SetScript('OnEvent', cycloneEventProcessor) |
|
745 |
|
r:RegisterEvent('UNIT_AURA') |
|
|
749 |
|
'Pummel', |
|
750 |
|
'Dark Simulacrum', |
|
751 |
|
}) |
746 |
752 |
|
|
747 |
|
local s = CreateFrame('BUTTON', 'DaybreakCycloneFrame2', p) |
|
748 |
|
s.unit = 'player' |
|
749 |
|
s.filter = 'HARMFUL' |
|
750 |
|
|
|
751 |
|
text = s:CreateFontString(s:GetName() .. 'Text', 'OVERLAY') |
|
752 |
|
text:SetFontObject(fontHandle) |
|
753 |
|
text:SetAllPoints() |
|
754 |
|
|
|
755 |
|
s:SetFontString(text) |
|
756 |
|
s:SetText(nil) |
|
757 |
|
|
|
758 |
|
s:SetSize(size, size) |
|
759 |
|
s:SetPoint('BOTTOMLEFT', 0, (s:GetHeight() + padding) * 1) |
|
760 |
|
s.auraTable = { |
|
|
753 |
|
createCycloneButton(0, 1, 'DaybreakCycloneFrame2', p, { |
|
754 |
|
--[[ Removable unit magic root ]]-- |
761 |
755 |
'Frost Nova', |
'Frost Nova', |
762 |
756 |
'Entangling Roots', |
'Entangling Roots', |
763 |
|
'Earth Trap', |
|
|
757 |
|
'Earth Grab', |
|
758 |
|
--[[ Removable unit magic slow ]]-- |
|
759 |
|
'Frost Shock', |
764 |
760 |
'Slow', |
'Slow', |
765 |
761 |
'Cone of Cold', |
'Cone of Cold', |
766 |
762 |
'Earthbind Totem', |
'Earthbind Totem', |
|
763 |
|
'Thunderstrom', |
|
764 |
|
--[[ Removable unit poison slow ]]-- |
767 |
765 |
'Crippling Poison', |
'Crippling Poison', |
|
766 |
|
'Infected Wounds', |
|
767 |
|
--[[ Physical unit slow ]]-- |
768 |
768 |
'Dazed', |
'Dazed', |
769 |
769 |
'Daze', |
'Daze', |
770 |
770 |
'Hamstring', |
'Hamstring', |
|
771 |
|
--[[ Environmental slow ]]-- |
771 |
772 |
'Desecration', |
'Desecration', |
772 |
773 |
'Ice Trap', |
'Ice Trap', |
773 |
|
} |
|
774 |
|
s:SetScript('OnEvent', cycloneEventProcessor) |
|
775 |
|
s:RegisterEvent('UNIT_AURA') |
|
776 |
|
|
|
777 |
|
local t = CreateFrame('BUTTON', 'DaybreakCycloneFrame1', p) |
|
778 |
|
t.unit = 'player' |
|
779 |
|
t.filter = 'HARMFUL' |
|
|
774 |
|
--[[ Seal of justice lowest priority |
|
775 |
|
-- because it does not actively slow a unit ]]-- |
|
776 |
|
'Seal of Justice', |
|
777 |
|
}) |
780 |
778 |
|
|
781 |
|
text = t:CreateFontString(t:GetName() .. 'Text', 'OVERLAY') |
|
782 |
|
text:SetFontObject(fontHandle) |
|
783 |
|
text:SetAllPoints() |
|
784 |
|
|
|
785 |
|
t:SetFontString(text) |
|
786 |
|
t:SetText(nil) |
|
787 |
|
|
|
788 |
|
t:SetSize(size, size) |
|
789 |
|
t:SetPoint('BOTTOMLEFT', 0, (t:GetHeight() + padding) * 0) |
|
790 |
|
t.auraTable = { |
|
|
779 |
|
createCycloneButton(0, 0, 'DaybreakCycloneFrame1', p, { |
791 |
780 |
'Wound Poison', |
'Wound Poison', |
792 |
781 |
'Necrotic Strike', |
'Necrotic Strike', |
793 |
782 |
'Mortal Strike', |
'Mortal Strike', |
794 |
783 |
'Aimed Shot', |
'Aimed Shot', |
795 |
784 |
'Curse of Tongues', |
'Curse of Tongues', |
|
785 |
|
'Colossus Smash', |
796 |
786 |
'Skull Bash', |
'Skull Bash', |
797 |
|
} |
|
798 |
|
t:SetScript('OnEvent', cycloneEventProcessor) |
|
799 |
|
t:RegisterEvent('UNIT_AURA') |
|
800 |
|
|
|
801 |
|
--[[ Ass ]]-- |
|
802 |
|
--createCycloneButton(2, 4, 'Cyclone', 'DaybreakCycloneCyclone', p) |
|
803 |
|
|
|
804 |
|
--[[ Stun ]]-- |
|
805 |
|
--createCycloneButton(2, 1, 'Charge', 'DaybreakCycloneCharge', p) |
|
806 |
|
--createCycloneButton(2, 1, 'Cheap Shot', 'DaybreakCycloneCheapShot', p) |
|
807 |
|
--createCycloneButton(2, 1, 'Concussion Blow', 'DaybreakCycloneConcussionBlow', p) |
|
808 |
|
--createCycloneButton(2, 1, 'Fire Blast', 'DaybreakCycloneFireBlast', p) |
|
809 |
|
--createCycloneButton(2, 1, 'Gnaw', 'DaybreakCycloneGnaw', p) |
|
810 |
|
--createCycloneButton(2, 1, 'Intercept', 'DaybreakCycloneIntercept', p) |
|
811 |
|
--createCycloneButton(2, 1, 'Kidney Shot', 'DaybreakCycloneKidenyShot', p) |
|
812 |
|
--createCycloneButton(2, 1, 'Shockwave', 'DaybreakCycloneShockwave', p) |
|
813 |
|
--createCycloneButton(2, 1, 'Throwdown', 'DaybreakCycloneThrowdown', p) |
|
814 |
|
--createCycloneButton(2, 4, 'Deep Freeze', 'DaybreakCycloneDeepFreeze', p) |
|
815 |
|
--createCycloneButton(2, 4, 'Hammer of Justice', 'DaybreakCycloneHammerOfJustice', p) |
|
816 |
|
|
|
817 |
|
--[[ Disorient ]]-- |
|
818 |
|
--createCycloneButton(1, 1, 'Blind', 'DaybreakCycloneBlind', p) |
|
819 |
|
--createCycloneButton(1, 1, 'Gouge', 'DaybreakCycloneGouge', p) |
|
820 |
|
--createCycloneButton(1, 1, 'Sap', 'DaybreakCycloneSap', p) |
|
821 |
|
--createCycloneButton(1, 2, 'Hex', 'DaybreakCycloneHex', p) |
|
822 |
|
--createCycloneButton(1, 4, 'Death Coil', 'DaybreakCycloneFear', p) |
|
823 |
|
--createCycloneButton(1, 4, 'Dragon Breath', 'DaybreakCycloneDragonBreath', p) |
|
824 |
|
--createCycloneButton(1, 4, 'Fear', 'DaybreakCycloneFear', p) |
|
825 |
|
--createCycloneButton(1, 4, 'Feezing Trap', 'DaybreakCycloneFreezingTrap', p) |
|
826 |
|
--createCycloneButton(1, 4, 'Holy Word: Chastise', 'DaybreakCycloneHolyWordChastise', p) |
|
827 |
|
--createCycloneButton(1, 4, 'Howl of Terror', 'DaybreakCycloneFear', p) |
|
828 |
|
--createCycloneButton(1, 4, 'Intimidating Shout', 'DaybreakCycloneIntimidatingShout', p) |
|
829 |
|
--createCycloneButton(1, 4, 'Polymorph', 'DaybreakCycloneFear', p) |
|
830 |
|
--createCycloneButton(1, 4, 'Ring of Frost', 'DaybreakCycloneRingOfFrost', p) |
|
831 |
|
|
|
832 |
|
--[[ Silence ]]-- |
|
833 |
|
--createCycloneButton(1, 1, 'Gag Order', 'DaybreakCycloneGagOrder', p) |
|
834 |
|
--createCycloneButton(1, 4, 'Counterspell', 'DaybreakCycloneCounterspell', p) |
|
835 |
|
--createCycloneButton(1, 4, 'Silence', 'DaybreakCycloneSilence', p) |
|
836 |
|
--createCycloneButton(1, 4, 'Spell Lock', 'DaybreakCycloneSpellLock', p) |
|
837 |
|
--createCycloneButton(1, 4, 'Strangulate', 'DaybreakCycloneFear', p) |
|
838 |
|
|
|
839 |
|
--[[ Root ]]-- |
|
840 |
|
--createCycloneButton(0, 4, 'Frost Nova', 'DaybreakCycloneFrostNova', p) |
|
841 |
|
--createCycloneButton(0, 4, 'Entangling Roots', 'DaybreakCycloneEntanglingRoots', p) |
|
842 |
|
|
|
843 |
|
--[[ Slow ]]-- |
|
844 |
|
--createCycloneButton(0, 1, 'Chains of Ice', 'DaybreakCycloneChainsOfIce', p) |
|
845 |
|
--createCycloneButton(0, 1, 'Hamstring', 'DaybreakCycloneHamstring', p) |
|
846 |
|
--createCycloneButton(0, 3, 'Crippling Poison', 'DaybreakCycloneCripplingPoison', p) |
|
847 |
|
--createCycloneButton(0, 4, 'Cone of Cold', 'DaybreakCycloneConeOfCold', p) |
|
848 |
|
--createCycloneButton(0, 4, 'Earthbind Totem', 'DaybreakCycloneEarthbindTotem', p) |
|
849 |
|
--createCycloneButton(0, 4, 'Slow', 'DaybreakCycloneSlow', p) |
|
850 |
|
|
|
851 |
|
--[[ Healing reduction ]]-- |
|
852 |
|
--createCycloneButton(3, 1, 'Aimed Shot', 'DaybreakCycloneAimedShot', p) |
|
853 |
|
--createCycloneButton(3, 1, 'Mortal Strike', 'DaybreakCycloneMortalStrike', p) |
|
854 |
|
--createCycloneButton(3, 1, 'Necrotic Strike', 'DaybreakCycloneNecroticStrike', p) |
|
855 |
|
--createCycloneButton(3, 3, 'Wound Poison', 'DaybreakCycloneWoundPoison', p) |
|
856 |
|
--createCycloneButton(3, 2, 'Curse of Tongues', 'DaybreakCycloneCurseOfTongues', p) |
|
|
787 |
|
}) |
857 |
788 |
|
|
858 |
789 |
return p |
return p |
859 |
790 |
end |
end |
|
... |
... |
local function initDaybreak(rootFrame) |
1152 |
1083 |
createButton(11, 0, 'Resistance Aura', 'DaybreakOverlayPaladinResistanceAura', rootFrame, 'PLAYER HELPFUL') |
createButton(11, 0, 'Resistance Aura', 'DaybreakOverlayPaladinResistanceAura', rootFrame, 'PLAYER HELPFUL') |
1153 |
1084 |
createButton(11, 0, 'Retribution Aura', 'DaybreakOverlayPaladinRetributionAura', rootFrame, 'PLAYER HELPFUL') |
createButton(11, 0, 'Retribution Aura', 'DaybreakOverlayPaladinRetributionAura', rootFrame, 'PLAYER HELPFUL') |
1154 |
1085 |
|
|
|
1086 |
|
local auraFrame = CreateFrame('FRAME', 'DaybreakAuraHeader', rootFrame) |
|
1087 |
|
auraFrame:SetSize(16*5, 16*5) |
|
1088 |
|
auraFrame:SetPoint('BOTTOMLEFT', 128 + 64, 0) |
|
1089 |
|
createButton(12, 0, 'Concentration Aura', 'DaybreakOverlayPaladinConcentrationAura2', auraFrame, 'HELPFUL', 14, 2) |
|
1090 |
|
createButton(13, 0, 'Crusader Aura', 'DaybreakOverlayPaladinCrusaderAura2', auraFrame, 'HELPFUL', 14, 2) |
|
1091 |
|
createButton(14, 0, 'Devotion Aura', 'DaybreakOverlayPaladinDevotionAura2', auraFrame, 'HELPFUL', 14, 2) |
|
1092 |
|
createButton(12, 1, 'Resistance Aura', 'DaybreakOverlayPaladinResistanceAura2', auraFrame, 'HELPFUL', 14, 2) |
|
1093 |
|
createButton(13, 1, 'Retribution Aura', 'DaybreakOverlayPaladinRetributionAura2', auraFrame, 'HELPFUL', 14, 2) |
|
1094 |
|
|
1155 |
1095 |
createButton(11, 1, 'Seal of Insight', 'DaybreakOverlayPaladinSealOfInsight', rootFrame, 'PLAYER HELPFUL') |
createButton(11, 1, 'Seal of Insight', 'DaybreakOverlayPaladinSealOfInsight', rootFrame, 'PLAYER HELPFUL') |
1156 |
1096 |
createButton(11, 1, 'Seal of Justice', 'DaybreakOverlayPaladinSealOfJustice', rootFrame, 'PLAYER HELPFUL') |
createButton(11, 1, 'Seal of Justice', 'DaybreakOverlayPaladinSealOfJustice', rootFrame, 'PLAYER HELPFUL') |
1157 |
1097 |
createButton(11, 1, 'Seal of Righteousness', 'DaybreakOverlayPaladinSealOfRighteousness', rootFrame, 'PLAYER HELPFUL') |
createButton(11, 1, 'Seal of Righteousness', 'DaybreakOverlayPaladinSealOfRighteousness', rootFrame, 'PLAYER HELPFUL') |
1158 |
1098 |
createButton(11, 1, 'Seal of Truth', 'DaybreakOverlayPaladinSealOfTruth', rootFrame, 'PLAYER HELPFUL') |
createButton(11, 1, 'Seal of Truth', 'DaybreakOverlayPaladinSealOfTruth', rootFrame, 'PLAYER HELPFUL') |
1159 |
1099 |
|
|
1160 |
|
createButton(11, 2, 'Blessing of Might', 'DaybreakOverlayPaladinBlessingOfMight', rootFrame, 'PLAYER HELPFUL') |
|
1161 |
|
createButton(11, 2, 'Blessing of Kings', 'DaybreakOverlayPaladinBlessingOfKings', rootFrame, 'PLAYER HELPFUL') |
|
|
1100 |
|
createButton(11, 2, 'Blessing of Kings', 'DaybreakOverlayPaladinBlessingOfKings', rootFrame, 'HELPFUL') |
|
1101 |
|
createButton(11, 2, 'Mark of the Wild', 'DaybreakOverlayPaladinMarkOfTheWild', rootFrame, 'HELPFUL') |
|
1102 |
|
createButton(11, 3, 'Blessing of Might', 'DaybreakOverlayPaladinBlessingOfMight', rootFrame, 'HELPFUL') |
1162 |
1103 |
|
|
1163 |
1104 |
--[[ Effects that may be applied by other players place on the right side ]]-- |
--[[ Effects that may be applied by other players place on the right side ]]-- |
1164 |
1105 |
createButton(9, 0, 'Hand of Freedom', 'DaybreakOverlayPaladinHandOfFreedom', rootFrame) |
createButton(9, 0, 'Hand of Freedom', 'DaybreakOverlayPaladinHandOfFreedom', rootFrame) |