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
1.2 KiB
43 lines
1.2 KiB
local mod = DBM:NewMod("Ragglesnout", "DBM-Party-Vanilla", 10)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20231012014002")
|
|
mod:SetCreatureID(7354)
|
|
--mod:SetEncounterID(585)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_START 12039 7645",
|
|
"SPELL_AURA_APPLIED 7645"
|
|
)
|
|
|
|
local warningDominateMind = mod:NewTargetNoFilterAnnounce(7645, 2)
|
|
|
|
local specWarnHeal = mod:NewSpecialWarningInterrupt(12039, "HasInterrupt", nil, nil, 1, 2)
|
|
|
|
local timerHealCD = mod:NewAITimer(180, 12039, nil, nil, nil, 4, nil, DBM_COMMON_L.INTERRUPT_ICON)
|
|
local timerDominateMindCD = mod:NewAITimer(180, 7645, nil, nil, nil, 3)
|
|
|
|
function mod:OnCombatStart(delay)
|
|
timerHealCD:Start(1-delay)
|
|
timerDominateMindCD:Start(1-delay)
|
|
end
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
if args:IsSpell(12039) and args:IsSrcTypeHostile() then
|
|
timerHealCD:Start()
|
|
if self:CheckInterruptFilter(args.sourceGUID, false, true) then
|
|
specWarnHeal:Show(args.sourceName)
|
|
specWarnHeal:Play("kickcast")
|
|
end
|
|
elseif args:IsSpell(7645) then
|
|
timerDominateMindCD:Start()
|
|
end
|
|
end
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args:IsSpell(7645) then
|
|
warningDominateMind:Show(args.destName)
|
|
end
|
|
end
|
|
|