Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,37 @@
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef DEF_BLOODMAUL_SLAG_MINES_H
#define DEF_BLOODMAUL_SLAG_MINES_H

#include "InstanceScript.h"
#include "ScriptedCreature.h"
#include "ScriptMgr.h"
#include "SpellScript.h"

enum DataTypes
{
DATA_ROLTALL = 0,
DATA_CRUSHTO = 1,
DATA_GUGROKK = 3,

DATA_MAX_ENCOUNTERS = 4,
};

enum Creatures
{
// Boss
BOSS_ROLTALL = 86223,
BOSS_CRUSHTO = 86222,
BOSS_GUGROKK = 86224,
};

#define BloodmaulSlagScriptName "instance_bloodmaul_slag_mines"

template<typename AI, typename T>
AI* GetBloodmaulSlagAI(T* source)
{
return GetInstanceAI<AI, T>(source, BloodmaulSlagScriptName);
}

#endif