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.
33 lines
970 B
33 lines
970 B
local mod = DBM:NewMod(418, "DBM-Party-Vanilla", DBM:IsPostCata() and 4 or 7, 231)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20240316010232")
|
|
mod:SetCreatureID(6229)
|
|
mod:SetEncounterID(mod:IsClassic() and 2771 or 381)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_SUCCESS 10887 8374"
|
|
)
|
|
|
|
local specWarnCrowdPummel = mod:NewSpecialWarningSpell(10887, "Melee", nil, nil, 2, 2)
|
|
|
|
local timerCrowdPummelCD = mod:NewAITimer(180, 10887, nil, nil, nil, 2)
|
|
|
|
local timerArcingSmashD = mod:NewAITimer(180, 8374, nil, "Tank", nil, 5, nil, DBM_COMMON_L.TANK_ICON)
|
|
|
|
function mod:OnCombatStart(delay)
|
|
timerCrowdPummelCD:Start(1-delay)
|
|
timerArcingSmashD:Start(1-delay)
|
|
end
|
|
|
|
function mod:SPELL_CAST_SUCCESS(args)
|
|
if args:IsSpell(10887) then
|
|
specWarnCrowdPummel:Show()
|
|
specWarnCrowdPummel:Play("carefly")
|
|
timerCrowdPummelCD:Start()
|
|
elseif args:IsSpell(8374) then
|
|
timerArcingSmashD:Start()
|
|
end
|
|
end
|
|
|