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.
53 lines
1.3 KiB
53 lines
1.3 KiB
local mod = DBM:NewMod(668, "DBM-Party-MoP", 2, 302)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod.statTypes = "normal,heroic,challenge,timewalker"
|
|
|
|
mod:SetRevision("20220217050005")
|
|
mod:SetCreatureID(56637)
|
|
mod:SetEncounterID(1412)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_AURA_APPLIED 106651",
|
|
"SPELL_AURA_APPLIED_DOSE 106651",
|
|
"SPELL_CAST_START 106807"
|
|
)
|
|
|
|
|
|
local warnGroundPound = mod:NewSpellAnnounce(106807, 3)
|
|
local warnBananas = mod:NewStackAnnounce(106651, 2)
|
|
|
|
--local timerGroundPoundCD = mod:NewCDTimer(4.8, 106807, nil, "Melee", 2, 5)
|
|
|
|
function mod:OnCombatStart(delay)
|
|
-- timerGroundPoundCD:Start(-delay)--No accurate start time yet, i think he does it on engage though instantly so may be irrelevent.
|
|
end
|
|
|
|
function mod:SPELL_AURA_APPLIED(args)
|
|
if args.spellId == 106651 then
|
|
warnBananas:Show(args.destName, args.amount or 1)
|
|
end
|
|
end
|
|
mod.SPELL_AURA_APPLIED_DOSE = mod.SPELL_AURA_APPLIED
|
|
|
|
--[[
|
|
Pound timings, At first i thought 13 13 10 13 13 10, etc but it doesn't fit that later on.
|
|
I'd like more data to decide on if it has pattern
|
|
13.4
|
|
14.4
|
|
10.8
|
|
13.2
|
|
13.3
|
|
10.7
|
|
12.1
|
|
12
|
|
12.1
|
|
--]]
|
|
function mod:SPELL_CAST_START(args)
|
|
if args.spellId == 106807 then
|
|
warnGroundPound:Show()
|
|
-- timerGroundPoundCD:Start()
|
|
end
|
|
end
|
|
|