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