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.
120 lines
3.3 KiB
120 lines
3.3 KiB
|
4 years ago
|
-------------------------------------------------------------------------------
|
||
|
|
-- Module Declaration
|
||
|
|
--
|
||
|
|
|
||
|
|
local mod, CL = BigWigs:NewBoss("Talon King Ikiss", 556, 543)
|
||
|
|
if not mod then return end
|
||
|
|
mod:RegisterEnableMob(18473)
|
||
|
|
mod.engageId = 1902
|
||
|
|
-- mod.respawnTime = 0 -- resets, doesn't respawn
|
||
|
|
|
||
|
|
-------------------------------------------------------------------------------
|
||
|
|
-- Locals
|
||
|
|
--
|
||
|
|
|
||
|
|
local explosionWarnings = 1
|
||
|
|
|
||
|
|
-------------------------------------------------------------------------------
|
||
|
|
-- Initialization
|
||
|
|
--
|
||
|
|
|
||
|
|
function mod:GetOptions()
|
||
|
|
return {
|
||
|
|
38197, -- Arcane Explosion
|
||
|
|
38245, -- Polymorph
|
||
|
|
35032, -- Slow
|
||
|
|
}
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:OnBossEnable()
|
||
|
|
self:RegisterUnitEvent("UNIT_HEALTH", nil, "boss1")
|
||
|
|
self:Log("SPELL_CAST_SUCCESS", "ArcaneExplosion", 38197, 40425) -- normal, heroic
|
||
|
|
self:Log("SPELL_AURA_APPLIED", "Polymorph", 38245, 43309) -- normal, heroic
|
||
|
|
self:Log("SPELL_AURA_REMOVED", "PolymorphRemoved", 38245, 43309)
|
||
|
|
self:Log("SPELL_CAST_SUCCESS", "SlowCast", 35032)
|
||
|
|
self:Log("SPELL_AURA_APPLIED", "Slow", 35032)
|
||
|
|
self:Log("SPELL_AURA_REMOVED", "SlowRemoved", 35032)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:OnEngage()
|
||
|
|
explosionWarnings = 1
|
||
|
|
if not self:Normal() then
|
||
|
|
self:CDBar(35032, 12.8) -- Slow
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
-------------------------------------------------------------------------------
|
||
|
|
-- Event Handlers
|
||
|
|
--
|
||
|
|
|
||
|
|
function mod:ArcaneExplosion(args)
|
||
|
|
self:MessageOld(38197, "orange", "warning", CL.casting:format(args.spellName))
|
||
|
|
self:CastBar(38197, 5)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:Polymorph(args)
|
||
|
|
self:TargetMessageOld(38245, args.destName, "yellow")
|
||
|
|
self:TargetBar(38245, 6, args.destName)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:PolymorphRemoved(args)
|
||
|
|
self:StopBar(args.spellName, args.destName)
|
||
|
|
end
|
||
|
|
|
||
|
|
do
|
||
|
|
local playerList, isOnMe = {}, nil
|
||
|
|
local function announce(self)
|
||
|
|
-- this applies to the whole group but can be immuned
|
||
|
|
if self:Dispeller("magic") then -- the only case where we care who exactly got the debuff
|
||
|
|
self:TargetMessageOld(35032, self:ColorName(playerList), "red", "alarm", nil, nil, true)
|
||
|
|
else
|
||
|
|
playerList = {}
|
||
|
|
if isOnMe then
|
||
|
|
self:TargetMessageOld(35032, isOnMe, "red", "alarm")
|
||
|
|
else
|
||
|
|
self:MessageOld(35032, "red")
|
||
|
|
end
|
||
|
|
end
|
||
|
|
isOnMe = nil
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:Slow(args)
|
||
|
|
if self:Me(args.destGUID) then
|
||
|
|
isOnMe = args.destName
|
||
|
|
self:TargetBar(args.spellId, 8, args.destName)
|
||
|
|
end
|
||
|
|
playerList[#playerList + 1] = args.destName
|
||
|
|
if #playerList == 1 then
|
||
|
|
self:ScheduleTimer(announce, 0.3, self)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:SlowRemoved(args)
|
||
|
|
self:StopBar(args.spellName, args.destName)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:SlowCast(args)
|
||
|
|
self:CDBar(args.spellId, 18.2) -- 18.2 - 19.4, can be further delayed by Arcane Explosions
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
do
|
||
|
|
local warnAt = { 85, 55, 30 }
|
||
|
|
function mod:UNIT_HEALTH(event, unit)
|
||
|
|
local hp = UnitHealth(unit) / UnitHealthMax(unit) * 100
|
||
|
|
if hp < warnAt[explosionWarnings] then
|
||
|
|
explosionWarnings = explosionWarnings + 1
|
||
|
|
self:MessageOld(38197, "orange", nil, CL.soon:format(self:SpellName(38197))) -- Arcane Explosion
|
||
|
|
|
||
|
|
while explosionWarnings <= #warnAt and hp < warnAt[explosionWarnings] do
|
||
|
|
-- account for high-level characters hitting multiple thresholds
|
||
|
|
explosionWarnings = explosionWarnings + 1
|
||
|
|
end
|
||
|
|
|
||
|
|
if explosionWarnings > #warnAt then
|
||
|
|
self:UnregisterUnitEvent(event, unit)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|