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.

64 lines
1.6 KiB

4 years ago
--------------------------------------------------------------------------------
-- Module Declaration
--
local mod, CL = BigWigs:NewBoss("Knight Captain Valyri", 1771, 2099)
if not mod then return end
mod:RegisterEnableMob(127490) -- Knight Captain Valyri
mod.engageId = 2103
mod.respawnTime = 30
--------------------------------------------------------------------------------
-- Initialization
--
function mod:GetOptions()
return {
256970, -- Ignition
256955, -- Cinderflame
257028, -- Fuselighter
}
end
function mod:OnBossEnable()
self:Log("SPELL_CAST_SUCCESS", "Ignition", 256970)
self:Log("SPELL_CAST_START", "Cinderflame", 256955)
self:Log("SPELL_CAST_SUCCESS", "Fuselighter", 257028)
self:Log("SPELL_AURA_APPLIED", "FuselighterApplied", 257028)
end
function mod:OnEngage()
self:Bar(256970, 10) -- Ignition
self:Bar(257028, 17.5) -- Fuselighter
self:Bar(256955, 18) -- Cinderflame
end
--------------------------------------------------------------------------------
-- Event Handlers
--
function mod:Ignition(args)
self:Message(args.spellId, "yellow")
self:PlaySound(args.spellId, "alert")
self:Bar(args.spellId, 47.5)
end
function mod:Cinderflame(args)
self:Message(args.spellId, "red", CL.casting:format(args.spellName))
self:PlaySound(args.spellId, "warning")
self:CastBar(args.spellId, 8)
self:Bar(args.spellId, 25)
end
function mod:Fuselighter(args)
self:Bar(args.spellId, 33)
end
function mod:FuselighterApplied(args)
self:TargetMessage(args.spellId, "yellow", args.destName)
if self:Dispeller("magic") then
self:PlaySound(args.spellId, "alarm", nil, args.destName)
end
end