-------------------------------------------------------------------------------- -- Module Declaration -- local mod, CL = BigWigs:NewBoss("Slavemaster Ul'rok", 2213) if not mod then return end mod:RegisterEnableMob(153541) mod:SetAllowWin(true) mod.engageId = 2375 -------------------------------------------------------------------------------- -- Localization -- local L = mod:GetLocale() if L then L.slavemaster_ulrok = "Slavemaster Ul'rok" end -------------------------------------------------------------------------------- -- Initialization -- function mod:GetOptions() return { 298691, -- Chains of Servitude } end function mod:OnRegister() self.displayName = L.slavemaster_ulrok end function mod:OnBossEnable() self:Log("SPELL_CAST_START", "ChainsOfServitude", 298691) end -------------------------------------------------------------------------------- -- Event Handlers -- function mod:ChainsOfServitude(args) self:Message(args.spellId, "red") self:PlaySound(args.spellId, "alarm") end