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.
68 lines
1.9 KiB
68 lines
1.9 KiB
|
|
--------------------------------------------------------------------------------
|
|
-- Module declaration
|
|
--
|
|
|
|
local mod, CL = BigWigs:NewBoss("General Pa'valak", 1011, 692)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(61485)
|
|
mod.engageId = 1447
|
|
mod.respawnTime = 30
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Locals
|
|
--
|
|
|
|
local nextReinforcementsWarning = 70
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
124283, -- Blade Rush
|
|
{119875, "HEALER"}, -- Tempest
|
|
-5946, -- Call Reinforcements
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_CAST_START", "BladeRush", 124283)
|
|
self:Log("SPELL_CAST_START", "Tempest", 119875)
|
|
self:Log("SPELL_AURA_APPLIED", "ReinforcementsPhase", 119476) -- 119476 = Bulwark
|
|
|
|
self:RegisterUnitEvent("UNIT_HEALTH", nil, "boss1")
|
|
end
|
|
|
|
function mod:OnEngage()
|
|
nextReinforcementsWarning = 80 -- phases at 75% and 45%
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:BladeRush(args)
|
|
self:MessageOld(args.spellId, "orange", "alarm", CL.casting:format(args.spellName))
|
|
self:CastBar(args.spellId, 2)
|
|
end
|
|
|
|
function mod:Tempest(args)
|
|
self:MessageOld(args.spellId, "red", "alert", CL.casting:format(args.spellName))
|
|
end
|
|
|
|
function mod:ReinforcementsPhase()
|
|
self:MessageOld(-5946, "yellow", "info", CL.incoming:format(CL.adds), false)
|
|
end
|
|
|
|
function mod:UNIT_HEALTH(event, unit)
|
|
local hp = UnitHealth(unit) / UnitHealthMax(unit) * 100
|
|
if hp < nextReinforcementsWarning then
|
|
nextReinforcementsWarning = nextReinforcementsWarning - 30
|
|
self:MessageOld(-5946, "yellow", nil, CL.soon:format(self:SpellName(-5946)))
|
|
if nextReinforcementsWarning < 45 then
|
|
self:UnregisterUnitEvent(event, unit)
|
|
end
|
|
end
|
|
end
|
|
|