local mod = DBM:NewMod("Rabbit", "DBM-WorldEvents", 3) local L = mod:GetLocalizedStrings() mod:SetRevision("20240315080105") mod:SetCreatureID(58336) mod:SetModelID(328) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_AURA_APPLIED 114078" ) local warnTeeth = mod:NewTargetAnnounce(114078, 4) local yellTeeth = mod:NewYell(114078) function mod:SPELL_AURA_APPLIED(args) if args.spellId == 114078 then warnTeeth:Show(args.destName) if args:IsPlayer() then yellTeeth:Yell() end end end