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.
22 lines
563 B
22 lines
563 B
local mod = DBM:NewMod("EarthcallerHalmgar", "DBM-Party-Vanilla", 11)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20231012014002")
|
|
mod:SetCreatureID(4842)
|
|
--mod:SetEncounterID(438)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_SUCCESS 8270"
|
|
)
|
|
|
|
--Guide mentions a totem, but no data for it in wowhead
|
|
--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
|
|
|