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

39 lines
1001 B
Lua

local mod = DBM:NewMod("Firemaw", "DBM-BWL", 1)
local L = mod:GetLocalizedStrings()
mod:SetRevision(("$Revision: 168 $"):sub(12, -3))
mod:SetCreatureID(11983)
mod:RegisterCombat("combat")
mod:RegisterEvents(
"SPELL_CAST_START",
"SPELL_CAST_SUCCESS"
)
local warnWingBuffet = mod:NewCastAnnounce(23339)
local warnShadowFlame = mod:NewCastAnnounce(22539)
local warnFlameBuffet = mod:NewSpellAnnounce(23341)
local timerWingBuffet = mod:NewNextTimer(31, 23339)
local timerShadowFlame = mod:NewCastTimer(2, 22539)
--local timerFlameBuffetCD = mod:NewCDTimer(10, 23341)
function mod:OnCombatStart(delay)
timerWingBuffet:Start(-delay)
end
function mod:SPELL_CAST_START(args)
if args:IsSpellID(23339) and self:IsInCombat() then
warnWingBuffet:Show()
timerWingBuffet:Start()
elseif args:IsSpellID(22539) and self:IsInCombat() then
timerShadowFlame:Start()
warnShadowFlame:Show()
end
end
function mod:SPELL_CAST_SUCCESS(args)
if args:IsSpellID(23341) then
warnFlameBuffet:Show()
end
end