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.
20 lines
488 B
20 lines
488 B
local mod = DBM:NewMod("OverlordRamtusk", "DBM-Party-Vanilla", 11)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20231012014002")
|
|
mod:SetCreatureID(4420)
|
|
--mod:SetEncounterID(1659)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_START 8259"
|
|
)
|
|
|
|
local warningWhirlingBarrage = mod:NewCastAnnounce(8259, 2)
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
if args:IsSpell(8259) and self:AntiSpam(3, 1) then
|
|
warningWhirlingBarrage:Show()
|
|
end
|
|
end
|
|
|