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.
40 lines
1.1 KiB
40 lines
1.1 KiB
local mod = DBM:NewMod("CharlgaRazorflank", "DBM-Party-Vanilla", 11)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20231012014002")
|
|
mod:SetCreatureID(4421)
|
|
--mod:SetEncounterID(1661)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_START 8292",
|
|
"SPELL_CAST_SUCCESS 8358",
|
|
"SPELL_AURA_APPLIED 8361"
|
|
)
|
|
|
|
local warningPurity = mod:NewTargetNoFilterAnnounce(8361, 2)
|
|
local warningManaSpike = mod:NewSpellAnnounce(8358, 2)
|
|
|
|
local specWarnChainBolt = mod:NewSpecialWarningInterrupt(8292, "HasInterrupt", nil, nil, 1, 2)--Spammy if CheckInterruptFilter is disabled or isn't working
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
if args:IsSpell(8292) and args:IsSrcTypeHostile() then
|
|
if self:CheckInterruptFilter(args.sourceGUID, false, true) then
|
|
specWarnChainBolt:Show(args.sourceName)
|
|
specWarnChainBolt:Play("kickcast")
|
|
end
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
|
if args:IsSpell(8358) then
|
|
warningManaSpike:Show()
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args:IsSpell(8361) then
|
|
warningPurity:Show(args.destName)
|
|
end
|
|
end
|
|
|