diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-25 02:30:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-25 02:30:47 +0300 |
commit | c9795055ee1b6079ef9b0c0e3faf4bb79704bd98 (patch) | |
tree | 147357b76a80705cf0af7bc1ec69cf417ef94812 /src/enums/being | |
parent | 1e5a50f6c67cd20967e139320a6c00f54e15dfe2 (diff) | |
download | plus-c9795055ee1b6079ef9b0c0e3faf4bb79704bd98.tar.gz plus-c9795055ee1b6079ef9b0c0e3faf4bb79704bd98.tar.bz2 plus-c9795055ee1b6079ef9b0c0e3faf4bb79704bd98.tar.xz plus-c9795055ee1b6079ef9b0c0e3faf4bb79704bd98.zip |
Add into player attributes prefix PLAYER_.
Diffstat (limited to 'src/enums/being')
-rw-r--r-- | src/enums/being/attributes.h | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/src/enums/being/attributes.h b/src/enums/being/attributes.h index d5198be79..ca4f0289b 100644 --- a/src/enums/being/attributes.h +++ b/src/enums/being/attributes.h @@ -26,39 +26,39 @@ enumStart(Attributes) { - LEVEL = 0, - HP, - MAX_HP, - MP, - MAX_MP, - EXP, - EXP_NEEDED, + PLAYER_LEVEL = 0, + PLAYER_HP, + PLAYER_MAX_HP, + PLAYER_MP, + PLAYER_MAX_MP, + PLAYER_EXP, + PLAYER_EXP_NEEDED, MONEY, TOTAL_WEIGHT, MAX_WEIGHT, - JOB = 10, - STR = 13, - AGI = 14, - VIT = 15, - INT = 16, - DEX = 17, - LUK = 18, - SKILL_POINTS, - CHAR_POINTS, - CORR_POINTS, - ATTACK_DELAY = 100, - ATTACK_RANGE = 101, - WALK_SPEED = 102, - ATTACK_SPEED = 103, - KARMA, - MANNER, - CRIT, - FLEE, - HIT, - MDEF, - MATK, - DEF, - ATK, + PLAYER_JOB = 10, + PLAYER_STR = 13, + PLAYER_AGI = 14, + PLAYER_VIT = 15, + PLAYER_INT = 16, + PLAYER_DEX = 17, + PLAYER_LUK = 18, + PLAYER_SKILL_POINTS, + PLAYER_CHAR_POINTS, + PLAYER_CORR_POINTS, + PLAYER_ATTACK_DELAY = 100, + PLAYER_ATTACK_RANGE = 101, + PLAYER_WALK_SPEED = 102, + PLAYER_ATTACK_SPEED = 103, + PLAYER_KARMA, + PLAYER_MANNER, + PLAYER_CRIT, + PLAYER_FLEE, + PLAYER_HIT, + PLAYER_MDEF, + PLAYER_MATK, + PLAYER_DEF, + PLAYER_ATK, CART_TOTAL_WEIGHT = 1000, CART_MAX_WEIGHT, MAX_ATTRIBUTE |