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.
35 lines
888 B
35 lines
888 B
local mod = DBM:NewMod("EdwinVanCleef", "DBM-Party-Vanilla", 5)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20231012014002")
|
|
mod:SetCreatureID(639)
|
|
--mod:SetEncounterID(1144)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_SUCCESS 5200",
|
|
"SPELL_AURA_APPLIED 3391"
|
|
)
|
|
|
|
local warningThrash = mod:NewSpellAnnounce(3391, 3)
|
|
local warningAllies = mod:NewSpellAnnounce(5200, 3)
|
|
|
|
local timerTrashD = mod:NewAITimer(180, 3391, nil, nil, nil, 5, nil, DBM_COMMON_L.TANK_ICON)
|
|
|
|
function mod:OnCombatStart(delay)
|
|
timerTrashD:Start(1-delay)
|
|
end
|
|
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
|
if args:IsSpell(5200) and self:AntiSpam(3, 1) then
|
|
warningAllies:Show()
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args:IsSpell(3391) and args:IsDestTypeHostile() then
|
|
warningThrash:Show()
|
|
timerTrashD:Start()
|
|
end
|
|
end
|
|
|