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.
55 lines
1.6 KiB
55 lines
1.6 KiB
|
|
--------------------------------------------------------------------------------
|
|
-- Module Declaration
|
|
--
|
|
|
|
local mod, CL = BigWigs:NewBoss("Soulbinder Nyami", 1182, 1186)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(76177)
|
|
mod.engageId = 1685
|
|
mod.respawnTime = 30
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
155327, -- Soul Vessel
|
|
153994, -- Torn Spirits
|
|
{154477, "DISPEL"}, -- Shadow Word: Pain
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_CAST_START", "SoulVessel", 155327)
|
|
self:Log("SPELL_CAST_START", "TornSpirits", 153994)
|
|
self:Log("SPELL_AURA_APPLIED", "ShadowWordPain", 154477)
|
|
end
|
|
|
|
function mod:OnEngage()
|
|
self:CDBar(153994, self:Normal() and 47 or 32) -- Torn Spirits
|
|
self:CDBar(155327, self:Normal() and 21 or 6) -- Soul Vessel
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:SoulVessel(args)
|
|
self:MessageOld(args.spellId, "orange", "warning", CL.incoming:format(args.spellName))
|
|
self:CDBar(args.spellId, 51)
|
|
self:Bar(args.spellId, 11.5, CL.cast:format(args.spellName))
|
|
end
|
|
|
|
function mod:TornSpirits(args)
|
|
self:MessageOld(args.spellId, "yellow", "alert", CL.incoming:format(CL.adds))
|
|
self:CDBar(args.spellId, 51)
|
|
self:Bar(args.spellId, 3, CL.adds)
|
|
end
|
|
|
|
function mod:ShadowWordPain(args)
|
|
if self:Dispeller("magic", nil, args.spellId) then
|
|
self:TargetMessageOld(args.spellId, args.destName, "red", "alarm", nil, nil, true)
|
|
end
|
|
end
|
|
|