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.
42 lines
1.2 KiB
42 lines
1.2 KiB
local mod = DBM:NewMod(602, "DBM-Party-WotLK", 16, 276)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20210614202848")
|
|
mod:SetCreatureID(38113)
|
|
mod:SetEncounterID(1993)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_AURA_APPLIED 72362 72363",
|
|
"SPELL_CAST_SUCCESS 72362"
|
|
)
|
|
|
|
local warnWellCorruption = mod:NewSpellAnnounce(72362, 3)
|
|
local warnCorruptedFlesh = mod:NewSpellAnnounce(72363, 3)
|
|
|
|
local specWarnWellCorruption = mod:NewSpecialWarningMove(72362, nil, nil, nil, 1, 8)
|
|
|
|
local timerWellCorruptionCD = mod:NewCDTimer(13, 72362, nil, nil, nil, 3)
|
|
local timerCorruptedFlesh = mod:NewBuffActiveTimer(8, 72363, nil, nil, nil, 5)
|
|
local timerCorruptedFleshCD = mod:NewCDTimer(20, 72363, nil, nil, nil, 2)
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args.spellId == 72362 and args:IsPlayer() then
|
|
specWarnWellCorruption:Show()
|
|
specWarnWellCorruption:Play("watchfeet")
|
|
elseif args.spellId == 72363 then
|
|
if self:AntiSpam(5) then
|
|
warnCorruptedFlesh:Show()
|
|
timerCorruptedFlesh:Start()
|
|
timerCorruptedFleshCD:Start()
|
|
end
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
|
if args.spellId == 72362 then
|
|
warnWellCorruption:Show()
|
|
timerWellCorruptionCD:Start()
|
|
end
|
|
end
|
|
|