You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.6 KiB
63 lines
1.6 KiB
|
4 years ago
|
|
||
|
|
--------------------------------------------------------------------------------
|
||
|
|
-- Module declaration
|
||
|
|
--
|
||
|
|
|
||
|
|
local mod, CL = BigWigs:NewBoss("Scourgelord Tyrannus", 658, 610)
|
||
|
|
if not mod then return end
|
||
|
|
mod:RegisterEnableMob(36658, 36661)
|
||
|
|
|
||
|
|
--------------------------------------------------------------------------------
|
||
|
|
-- Initialization
|
||
|
|
--
|
||
|
|
|
||
|
|
function mod:GetOptions()
|
||
|
|
return {
|
||
|
|
{69172, "ICON"}, -- Overlord's Brand
|
||
|
|
{69275, "ICON", "FLASH"}, -- Mark of Rimefang
|
||
|
|
69167, -- Unholy Power
|
||
|
|
}
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:OnBossEnable()
|
||
|
|
self:Log("SPELL_AURA_APPLIED", "Brand", 69172)
|
||
|
|
self:Log("SPELL_AURA_APPLIED", "Mark", 69275)
|
||
|
|
self:Log("SPELL_AURA_REMOVED", "MarkRemoved", 69275)
|
||
|
|
self:Log("SPELL_AURA_REMOVED", "BrandRemoved", 69172)
|
||
|
|
self:Log("SPELL_AURA_APPLIED", "Power", 69167)
|
||
|
|
self:Death("Win", 36658)
|
||
|
|
end
|
||
|
|
|
||
|
|
--------------------------------------------------------------------------------
|
||
|
|
-- Event Handlers
|
||
|
|
--
|
||
|
|
|
||
|
|
function mod:Brand(args)
|
||
|
|
self:TargetMessageOld(args.spellId, args.destName, "yellow", "alert")
|
||
|
|
self:TargetBar(args.spellId, 8, args.destName)
|
||
|
|
self:SecondaryIcon(args.spellId, args.destName)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:Mark(args)
|
||
|
|
self:TargetMessageOld(args.spellId, args.destName, "red", "alarm")
|
||
|
|
self:TargetBar(args.spellId, 7, args.destName)
|
||
|
|
if self:Me(args.destGUID) then
|
||
|
|
self:Flash(args.spellId)
|
||
|
|
end
|
||
|
|
self:PrimaryIcon(args.spellId, args.destName)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:MarkRemoved(args)
|
||
|
|
self:PrimaryIcon(args.spellId)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:BrandRemoved(args)
|
||
|
|
self:SecondaryIcon(args.spellId)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:Power(args)
|
||
|
|
self:MessageOld(args.spellId, "red")
|
||
|
|
self:Bar(args.spellId, 10)
|
||
|
|
end
|
||
|
|
|