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.
39 lines
1.1 KiB
39 lines
1.1 KiB
local mod = DBM:NewMod("Tutenkash", "DBM-Party-Vanilla", 10)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20231012014002")
|
|
mod:SetCreatureID(7355)
|
|
--mod:SetEncounterID(585)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_SUCCESS 12255 12252",
|
|
"SPELL_AURA_APPLIED 12255"
|
|
)
|
|
|
|
local warningCurseofTut = mod:NewTargetNoFilterAnnounce(12255, 2, nil, "RemoveCurse")
|
|
local warningWebSpray = mod:NewSpellAnnounce(12252, 2)
|
|
|
|
local timerCurseofTutCD = mod:NewAITimer(180, 12255, nil, nil, nil, 3, nil, DBM_COMMON_L.CURSE_ICON)
|
|
local timerWebSprayCD = mod:NewAITimer(180, 12252, nil, nil, nil, 5, nil, DBM_COMMON_L.TANK_ICON)
|
|
|
|
function mod:OnCombatStart(delay)
|
|
timerCurseofTutCD:Start(1-delay)
|
|
timerWebSprayCD:Start(1-delay)
|
|
end
|
|
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
|
if args:IsSpell(12255) then
|
|
timerCurseofTutCD:Start()
|
|
elseif args:IsSpell(12252) then
|
|
warningWebSpray:Show()
|
|
timerWebSprayCD:Start()
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args:IsSpell(12255) and self:CheckDispelFilter("curse") then
|
|
warningCurseofTut:Show(args.destName)
|
|
end
|
|
end
|
|
|