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.
29 lines
695 B
29 lines
695 B
|
4 years ago
|
-------------------------------------------------------------------------------
|
||
|
|
-- Module Declaration
|
||
|
|
|
||
|
|
local mod = BigWigs:NewBoss("Benedictus", 940)
|
||
|
|
if not mod then return end
|
||
|
|
mod.partyContent = true
|
||
|
|
mod:RegisterEnableMob(54938)
|
||
|
|
mod.toggleOptions = {
|
||
|
|
"bosskill",
|
||
|
|
}
|
||
|
|
|
||
|
|
-------------------------------------------------------------------------------
|
||
|
|
-- Localization
|
||
|
|
|
||
|
|
local L = mod:GetLocale()
|
||
|
|
if L then
|
||
|
|
|
||
|
|
end
|
||
|
|
|
||
|
|
-------------------------------------------------------------------------------
|
||
|
|
-- Initialization
|
||
|
|
|
||
|
|
function mod:OnBossEnable()
|
||
|
|
self:Death("Win", 54938)
|
||
|
|
end
|
||
|
|
|
||
|
|
-------------------------------------------------------------------------------
|
||
|
|
-- Event Handlers
|