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.
43 lines
1015 B
43 lines
1015 B
local mod = DBM:NewMod(535, "DBM-Party-BC", 8, 250)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod.statTypes = "normal,heroic,timewalker"
|
|
|
|
mod:SetRevision("20200912133955")
|
|
mod:SetCreatureID(18343)
|
|
mod:SetEncounterID(1901)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_START 33919",
|
|
"SPELL_AURA_APPLIED 32361",
|
|
"SPELL_AURA_REMOVED 32361"
|
|
)
|
|
|
|
--TODO: Timers
|
|
local WarnPrison = mod:NewTargetAnnounce(32361, 3)
|
|
|
|
local specWarnQuake = mod:NewSpecialWarningSpell(33919, nil, nil, nil, 2, 2)
|
|
|
|
local timerPrison = mod:NewTargetTimer(5, 32361, nil, nil, nil, 3)
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
if args.spellId == 33919 then
|
|
specWarnQuake:Show()
|
|
specWarnQuake:Play("stunsoon")
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args.spellId == 32361 then
|
|
WarnPrison:Show(args.destName)
|
|
timerPrison:Start(args.destName)
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_REMOVED(args)
|
|
if args.spellId == 32361 then
|
|
timerPrison:Stop(args.destName)
|
|
end
|
|
end
|
|
|