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.

21 lines
494 B

local mod = DBM:NewMod("Roogug", "DBM-Party-Vanilla", 11)
local L = mod:GetLocalizedStrings()
mod:SetRevision("20231012014002")
mod:SetCreatureID(6168)
--mod:SetEncounterID(438)
mod:RegisterCombat("combat")
mod:RegisterEventsInCombat(
"SPELL_CAST_SUCCESS 8270"
)
--Rumbler spawned on engage
local warningSummonEarthRumbler = mod:NewSpellAnnounce(8270, 2)
function mod:SPELL_CAST_SUCCESS(args)
if args:IsSpell(8270) then
warningSummonEarthRumbler:Show()
end
end