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.
58 lines
1.4 KiB
58 lines
1.4 KiB
|
|
--------------------------------------------------------------------------------
|
|
-- Module declaration
|
|
--
|
|
|
|
local mod, CL = BigWigs:NewBoss("Skadi the Ruthless", 575, 643)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(26693)
|
|
mod.engageId = 2029
|
|
mod.respawnTime = 30
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
{59322, "SAY"}, -- Whirlwind
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_AURA_APPLIED", "Whirlwind", 59322, 50228)
|
|
self:Log("SPELL_DAMAGE", "WhirlwindDamage", 59323, 50229)
|
|
self:Log("SPELL_MISSED", "WhirlwindDamage", 59323, 50229)
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
do
|
|
local function printTarget(self, player, guid)
|
|
self:TargetMessageOld(59322, player, "orange", "info", nil, nil, true)
|
|
if self:Me(guid) then
|
|
self:Say(59322)
|
|
end
|
|
end
|
|
|
|
function mod:Whirlwind(args)
|
|
self:GetBossTarget(printTarget, 0.4, args.sourceGUID)
|
|
self:Bar(59322, 10, CL.cast:format(args.spellName))
|
|
self:CDBar(59322, 23)
|
|
end
|
|
end
|
|
|
|
do
|
|
local prev = 0
|
|
function mod:WhirlwindDamage(args)
|
|
if self:Me(args.destGUID) then
|
|
local t = GetTime()
|
|
if t-prev > 1.5 then
|
|
prev = t
|
|
self:MessageOld(59322, "blue", "alarm", CL.underyou:format(args.spellName))
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|