Files
coa-dbm/DBM-Karazhan/Nightbane.lua
T
Andrew6810 39c0ed874e init
2022-10-21 06:50:13 -07:00

110 lines
3.3 KiB
Lua

local mod = DBM:NewMod("Nightbane", "DBM-Karazhan")
local L = mod:GetLocalizedStrings()
mod:SetRevision(("$Revision: 176 $"):sub(12, -3))
mod:SetCreatureID(17225)
--mod:RegisterCombat("yell", L.DBM_NB_YELL_PULL)
mod:RegisterCombat("combat")
mod:RegisterEvents(
"SPELL_CAST_START",
"SPELL_CAST_SUCCESS",
"SPELL_AURA_APPLIED",
"CHAT_MSG_MONSTER_YELL",
"CHAT_MSG_MONSTER_EMOTE",
"SPELL_AURA_APPLIED_DOSE"
)
local warningBone = mod:NewSpellAnnounce(37098, 3)
local warningFearSoon = mod:NewSoonAnnounce(36922, 2)
local warningFear = mod:NewSpellAnnounce(36922, 3)
local warningAsh = mod:NewTargetAnnounce(30130, 2, nil, false)
local WarnAir = mod:NewAnnounce("DBM_NB_AIR_WARN", 2, "Interface\\AddOns\\DBM-Core\\textures\\CryptFiendBurrow.blp")
local WarnNBDown1 = mod:NewAnnounce("DBM_NB_DOWN_WARN", 2, nil, nil, false)
local WarnNBDown2 = mod:NewAnnounce("DBM_NB_DOWN_WARN2", 3, nil, nil, false)
local warnCharred = mod:NewSpellAnnounce(30129, 2)
local warnFinalHour = mod:NewSpellAnnounce(85370, 2)
local warnBreath = mod:NewAnnounce(L.SmolderingBreath, 3, 85245)
local specWarnCharred = mod:NewSpecialWarningMove(30129)
local timerNightbane = mod:NewTimer(34, "timerNightbane", "Interface\\Icons\\Ability_Mount_Undeadhorse")
local timerAirPhase = mod:NewTimer(51, "timerAirPhase", "Interface\\AddOns\\DBM-Core\\textures\\CryptFiendBurrow.blp")
local timerFearCD = mod:NewNextTimer(31.5, 36922)
local timerFear = mod:NewCastTimer(1.5, 36922)
local timerCharred = mod:NewNextTimer(18, 30129)
local timerFinalHour = mod:NewBuffActiveTimer(60, 85370, 60)
mod:AddBoolOption("PrewarnGroundPhase", true, "announce")
function mod:OnCombatStart(delay)
timerFear:Start(47-delay)
timerCharred:Start(15-delay)
end
function mod:CHAT_MSG_MONSTER_EMOTE(msg)
if msg == L.DBM_NB_EMOTE_PULL then
timerNightbane:Start()
end
end
function mod:SPELL_CAST_START(args)
if args:IsSpellID(36922) then
warningFearSoon:Cancel()
warningFear:Show()
timerFear:Start()
timerFearCD:Start()
warningFearSoon:Schedule(29)
elseif args:IsSpellID(30129, 85246) then
warnCharred:Show()
timerCharred:Start()
end
end
function mod:SPELL_CAST_SUCCESS(args)
if args:IsSpellID(37098) then
warningBone:Show()
elseif args:IsSpellID(85370) then -- heroic exclusive
warnFinalHour:Show()
if mod:IsDifficulty("heroic25") then
timerFinalHour:Start(180)
else
timerFinalHour:Start()
end
end
end
function mod:SPELL_AURA_APPLIED(args)
if args:IsSpellID(30129) and args:IsPlayer() then
specWarnCharred:Show()
elseif args:IsSpellID(30130) then
warningAsh:Show(args.destName)
elseif args:IsSpellID(85245) then
warnBreath:Show("Smoldering Breath", args.destName, args.amount or 1)
end
end
function mod:SPELL_AURA_APPLIED_DOSE(args)
if args:IsSpellID(85245) then
warnBreath:Show("Smoldering Breath", args.destName, args.amount or 1)
end
end
function mod:CHAT_MSG_MONSTER_YELL(msg)
if msg == L.DBM_NB_YELL_AIR then
WarnAir:Show()
timerAirPhase:Start()
timerCharred:Stop()
timerFear:Stop()
if self.Options.PrewarnGroundPhase then
WarnNBDown1:Cancel()
WarnNBDown2:Cancel()
WarnNBDown1:Schedule(36)
WarnNBDown2:Schedule(46)
end
elseif msg == L.DBM_NB_YELL_GROUND or msg == L.DBM_NB_YELL_GROUND2 then
timerCharred:Start(27)
timerFearCD:Start(48)
end
end