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("Peroth'arn", 939, 290)
|
|
if not mod then return end
|
|
mod:RegisterEnableMob(55085)
|
|
-- mod.engageId = 1272 -- doesn't fire ENCOUNTER_END on a wipe
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Localization
|
|
--
|
|
|
|
local L = mod:GetLocale()
|
|
if L then
|
|
L.eyes, L.eyes_desc = -4092, -4092
|
|
L.eyes_icon = "inv_misc_eye_04"
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
105544, -- Fel Decay
|
|
"eyes",
|
|
105442, -- Enfeebled
|
|
105493, -- Easy Prey
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:Log("SPELL_AURA_APPLIED", "FelDecay", 105544)
|
|
self:Log("SPELL_AURA_APPLIED", "EasyPrey", 105493)
|
|
self:Log("SPELL_AURA_APPLIED", "Enfeebled", 105442)
|
|
|
|
self:RegisterUnitEvent("UNIT_SPELLCAST_SUCCEEDED", nil, "boss1")
|
|
|
|
self:RegisterEvent("INSTANCE_ENCOUNTER_ENGAGE_UNIT", "CheckBossStatus")
|
|
self:Death("Win", 55085)
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:FelDecay(args)
|
|
self:TargetMessageOld(args.spellId, args.destName, "red", "alert")
|
|
self:TargetBar(args.spellId, 10, args.destName)
|
|
end
|
|
|
|
function mod:EasyPrey(args)
|
|
self:TargetMessageOld(args.spellId, args.destName, "yellow", "long", self:SpellName(42203)) -- 42203 = "Discovered", hopefully it translates as such
|
|
end
|
|
|
|
function mod:Enfeebled(args)
|
|
self:TargetMessageOld(args.spellId, args.destName, "yellow", "long")
|
|
self:Bar(args.spellId, 15)
|
|
end
|
|
|
|
function mod:UNIT_SPELLCAST_SUCCEEDED(_, _, _, spellId)
|
|
if spellId == 105341 then -- Camouflage
|
|
self:DelayedMessage("eyes", 8, "green", L.eyes, L.eyes_icon, "info")
|
|
self:Bar("eyes", 8, L.eyes, L.eyes_icon)
|
|
self:CDBar(105442, 48) -- Enfeebled
|
|
end
|
|
end
|
|
|