init
This commit is contained in:
parent
8571e98fb1
commit
39c0ed874e
466 changed files with 52263 additions and 2 deletions
21
DBM-TheEye/Mobs.lua
Normal file
21
DBM-TheEye/Mobs.lua
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
local mod = DBM:NewMod("mobs", "DBM-TheEye", 1)
|
||||
local L = mod:GetLocalizedStrings()
|
||||
|
||||
mod:SetRevision(("$Revision: 132 $"):sub(12, -3))
|
||||
|
||||
mod:RegisterEvents(
|
||||
"SPELL_CAST_START"
|
||||
)
|
||||
|
||||
local warningElectroPulse = mod:NewCastAnnounce(2135057)
|
||||
local warningElectroPulse = mod:NewCastTimer(6, 2135057)
|
||||
|
||||
function mod:SPELL_CAST_START(args)
|
||||
if args:IsSpellID(2135057, 2135058, 2135059, 2135060) then
|
||||
warningElectroPulse:Show()
|
||||
warningElectroPulse:Start()
|
||||
elseif args:IsSpellID(2135064, 2135065, 2135066, 2135067) then
|
||||
--TODO Disintegrate announcement
|
||||
end
|
||||
end
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue