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.
35 lines
1004 B
35 lines
1004 B
|
3 years ago
|
local mod = DBM:NewMod("Weaver", "DBM-Party-Vanilla", 12)
|
||
|
|
local L = mod:GetLocalizedStrings()
|
||
|
|
|
||
|
|
mod:SetRevision("20221029204017")
|
||
|
|
mod:SetCreatureID(5720)
|
||
|
|
mod:SetEncounterID(487)
|
||
|
|
|
||
|
|
mod:RegisterCombat("combat")
|
||
|
|
|
||
|
|
mod:RegisterEventsInCombat(
|
||
|
|
"SPELL_CAST_SUCCESS 12882 12884"
|
||
|
|
)
|
||
|
|
|
||
|
|
--TODO, Change timers to sourcename timers when not AI
|
||
|
|
local warnWingFlap = mod:NewSpellAnnounce(12882, 2)
|
||
|
|
local warnAcidBreath = mod:NewSpellAnnounce(12884, 2)
|
||
|
|
|
||
|
|
local timerWingFlapCD = mod:NewAITimer(180, 12882, nil, nil, nil, 5, nil, DBM_COMMON_L.TANK_ICON)
|
||
|
|
local timerAcidBreathCD = mod:NewAITimer(180, 12884, nil, nil, nil, 5, nil, DBM_COMMON_L.TANK_ICON)
|
||
|
|
|
||
|
|
function mod:OnCombatStart(delay)
|
||
|
|
timerWingFlapCD:Start(1-delay)
|
||
|
|
timerAcidBreathCD:Start(1-delay)
|
||
|
|
end
|
||
|
|
|
||
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
||
|
|
if args.spellId == 12882 then
|
||
|
|
warnWingFlap:Show()
|
||
|
|
timerWingFlapCD:Start()
|
||
|
|
elseif args.spellId == 12884 then
|
||
|
|
warnAcidBreath:Show()
|
||
|
|
timerAcidBreathCD:Start()
|
||
|
|
end
|
||
|
|
end
|