mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-02-03 02:43:49 +00:00
23 lines
337 B
C++
23 lines
337 B
C++
#ifndef _PLAYERBOT_RAIDMCHELPERS_H
|
|
#define _PLAYERBOT_RAIDMCHELPERS_H
|
|
|
|
namespace MoltenCoreHelpers
|
|
{
|
|
enum MoltenCoreNPCs
|
|
{
|
|
// Golemagg
|
|
NPC_CORE_RAGER = 11672,
|
|
};
|
|
enum MoltenCoreSpells
|
|
{
|
|
// Baron Geddon
|
|
SPELL_INFERNO = 19695,
|
|
SPELL_LIVING_BOMB = 20475,
|
|
|
|
// Golemagg
|
|
SPELL_GOLEMAGGS_TRUST = 20553,
|
|
};
|
|
}
|
|
|
|
#endif
|