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.
25 lines
598 B
25 lines
598 B
|
3 years ago
|
local mod = DBM:NewMod(540, "DBM-Party-BC", 11, 251)
|
||
|
|
local L = mod:GetLocalizedStrings()
|
||
|
|
|
||
|
|
mod:SetRevision("20210922153837")
|
||
|
|
mod:SetCreatureID(18096)
|
||
|
|
mod:SetEncounterID(1906)
|
||
|
|
|
||
|
|
mod:RegisterCombat("combat")
|
||
|
|
|
||
|
|
mod:RegisterEventsInCombat(
|
||
|
|
"SPELL_AURA_APPLIED 33834 31914"
|
||
|
|
)
|
||
|
|
|
||
|
|
local warnSandBreath = mod:NewSpellAnnounce(31914, 2)
|
||
|
|
|
||
|
|
local timerManaDisruption = mod:NewBuffActiveTimer(15, 33834, nil, nil, nil, 1)
|
||
|
|
|
||
|
|
function mod:SPELL_AURA_APPLIED(args)
|
||
|
|
if args.spellId == 33834 then
|
||
|
|
timerManaDisruption:Show()
|
||
|
|
elseif args.spellId == 31914 then
|
||
|
|
warnSandBreath:Show()
|
||
|
|
end
|
||
|
|
end
|