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
445 B
20 lines
445 B
local mod = DBM:NewMod(437, "DBM-Party-Vanilla", 1, 227)
|
|
local L = mod:GetLocalizedStrings()
|
|
|
|
mod:SetRevision("20231012014002")
|
|
mod:SetCreatureID(74728)
|
|
mod:SetEncounterID(1671)
|
|
|
|
mod:RegisterCombat("combat")
|
|
|
|
mod:RegisterEventsInCombat(
|
|
"SPELL_CAST_START 150020"
|
|
)
|
|
|
|
local warningWaters = mod:NewSpellAnnounce(150020, 3)
|
|
|
|
function mod:SPELL_CAST_START(args)
|
|
if args.spellId == 150020 then
|
|
warningWaters:Show()
|
|
end
|
|
end
|
|
|