diff options
author | Shauren <shauren.trinity@gmail.com> | 2018-02-18 16:32:03 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2018-02-18 16:33:50 +0100 |
commit | 75603fe1a00f9aac36bfad1378447bea973001c1 (patch) | |
tree | cf8fea04151aa15c713704b6f324d0f61e304725 /src/server/game/Miscellaneous/SharedDefines.h | |
parent | 4af15915bc8b780ef854c2e58d7ab5bb38f56758 (diff) |
Core/DataStores: Updated db2 structures to 7.3.5.25996
Diffstat (limited to 'src/server/game/Miscellaneous/SharedDefines.h')
-rw-r--r-- | src/server/game/Miscellaneous/SharedDefines.h | 46 |
1 files changed, 28 insertions, 18 deletions
diff --git a/src/server/game/Miscellaneous/SharedDefines.h b/src/server/game/Miscellaneous/SharedDefines.h index 1bcd86a4a03..b46627b80d3 100644 --- a/src/server/game/Miscellaneous/SharedDefines.h +++ b/src/server/game/Miscellaneous/SharedDefines.h @@ -131,17 +131,17 @@ enum Gender enum Races { RACE_NONE = 0, - RACE_HUMAN = 1, - RACE_ORC = 2, - RACE_DWARF = 3, - RACE_NIGHTELF = 4, - RACE_UNDEAD_PLAYER = 5, - RACE_TAUREN = 6, - RACE_GNOME = 7, - RACE_TROLL = 8, - RACE_GOBLIN = 9, - RACE_BLOODELF = 10, - RACE_DRAENEI = 11, + RACE_HUMAN = 1, + RACE_ORC = 2, + RACE_DWARF = 3, + RACE_NIGHTELF = 4, + RACE_UNDEAD_PLAYER = 5, + RACE_TAUREN = 6, + RACE_GNOME = 7, + RACE_TROLL = 8, + RACE_GOBLIN = 9, + RACE_BLOODELF = 10, + RACE_DRAENEI = 11, //RACE_FEL_ORC = 12, //RACE_NAGA = 13, //RACE_BROKEN = 14, @@ -152,15 +152,19 @@ enum Races //RACE_TAUNKA = 19, //RACE_NORTHREND_SKELETON = 20, //RACE_ICE_TROLL = 21, - RACE_WORGEN = 22, + RACE_WORGEN = 22, //RACE_GILNEAN = 23 - RACE_PANDAREN_NEUTRAL = 24, - RACE_PANDAREN_ALLIANCE = 25, - RACE_PANDAREN_HORDE = 26 + RACE_PANDAREN_NEUTRAL = 24, + RACE_PANDAREN_ALLIANCE = 25, + RACE_PANDAREN_HORDE = 26, + RACE_NIGHTBORNE = 27, + RACE_HIGHMOUNTAIN_TAUREN = 28, + RACE_VOID_ELF = 29, + RACE_LIGHTFORGED_DRAENEI = 30 }; // max+1 for player race -#define MAX_RACES 27 +#define MAX_RACES 31 #define RACEMASK_ALL_PLAYABLE \ ((1<<(RACE_HUMAN-1)) | \ @@ -177,7 +181,11 @@ enum Races (1<<(RACE_WORGEN-1)) | \ (1<<(RACE_PANDAREN_NEUTRAL-1)) |\ (1<<(RACE_PANDAREN_ALLIANCE-1)) |\ - (1<<(RACE_PANDAREN_HORDE-1))) + (1<<(RACE_PANDAREN_HORDE-1))|\ + (1<<(RACE_NIGHTBORNE-1))|\ + (1<<(RACE_HIGHMOUNTAIN_TAUREN-1))|\ + (1<<(RACE_VOID_ELF-1))|\ + (1<<(RACE_LIGHTFORGED_DRAENEI-1))) #define RACEMASK_NEUTRAL (1<<(RACE_PANDAREN_NEUTRAL-1)) @@ -188,7 +196,9 @@ enum Races (1<<(RACE_GNOME-1)) | \ (1<<(RACE_DRAENEI-1)) | \ (1<<(RACE_WORGEN-1)) | \ - (1<<(RACE_PANDAREN_ALLIANCE-1))) + (1<<(RACE_PANDAREN_ALLIANCE-1)) |\ + (1<<(RACE_VOID_ELF-1)) |\ + (1<<(RACE_LIGHTFORGED_DRAENEI-1))) #define RACEMASK_HORDE RACEMASK_ALL_PLAYABLE & ~RACEMASK_ALLIANCE |