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.

33 lines
737 B

--------------------------------------------------------------------------------
-- Module declaration
--
local mod, CL = BigWigs:NewBoss("Amanitar", 619, 583)
if not mod then return end
mod:RegisterEnableMob(30258)
--------------------------------------------------------------------------------
-- Initialization
--
function mod:GetOptions()
return {
57055, -- Mini
}
end
function mod:OnBossEnable()
self:Log("SPELL_CAST_START", "Mini", 57055)
self:Death("Win", 30258)
end
--------------------------------------------------------------------------------
-- Event Handlers
--
function mod:Mini(args)
self:MessageOld(args.spellId, "yellow", "info", CL.casting:format(args.spellName))
end