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.
45 lines
1.4 KiB
45 lines
1.4 KiB
local mod = DBM:NewMod(476, "DBM-Party-Vanilla", 14, 240)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20221029204017")
|
|
mod:SetCreatureID(3670)
|
|
mod:SetEncounterID(588)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_START 8040 23381",
|
|
"SPELL_AURA_APPLIED 8040"
|
|
)
|
|
|
|
local warningDruidSlumber = mod:NewTargetNoFilterAnnounce(8040, 2)
|
|
local warningHealingTouch = mod:NewCastAnnounce(23381, 2)
|
|
|
|
local specWarnDruidsSlumber = mod:NewSpecialWarningInterrupt(8040, "HasInterrupt", nil, nil, 1, 2)
|
|
|
|
local timerDruidsSlumberCD = mod:NewAITimer(180, 8040, nil, nil, nil, 4, nil, DBM_COMMON_L.INTERRUPT_ICON..DBM_COMMON_L.MAGIC_ICON)
|
|
local timerHealingTouchCD = mod:NewAITimer(180, 23381, nil, nil, nil, 4, nil, DBM_COMMON_L.INTERRUPT_ICON)
|
|
|
|
function mod:OnCombatStart(delay)
|
|
timerDruidsSlumberCD:Start(1-delay)
|
|
timerHealingTouchCD:Start(1-delay)
|
|
end
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
if args.spellId == 8040 then
|
|
timerDruidsSlumberCD:Start()
|
|
if self:CheckInterruptFilter(args.sourceGUID, false, true) then
|
|
specWarnDruidsSlumber:Show(args.sourceName)
|
|
specWarnDruidsSlumber:Play("kickcast")
|
|
end
|
|
elseif args.spellId == 23381 then
|
|
warningHealingTouch:Show()
|
|
timerHealingTouchCD:Start()
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args.spellId == 8040 then
|
|
warningDruidSlumber:Show(args.destName)
|
|
end
|
|
end
|
|
|