diff options
author | Michieru <Michieru@users.noreply.github.com> | 2014-04-19 11:57:58 +0200 |
---|---|---|
committer | Michieru <Michieru@users.noreply.github.com> | 2014-04-19 11:57:58 +0200 |
commit | 5a5a32793bbfa5d1aeb76a0232ad4312f690b2c3 (patch) | |
tree | 6ed45daf9eff8732e505eeb4de63cc0b528a7bb0 /src/map/pc.h | |
parent | 446ce4a3179163fbdef68b39c69db3943222698c (diff) | |
download | hercules-5a5a32793bbfa5d1aeb76a0232ad4312f690b2c3.tar.gz hercules-5a5a32793bbfa5d1aeb76a0232ad4312f690b2c3.tar.bz2 hercules-5a5a32793bbfa5d1aeb76a0232ad4312f690b2c3.tar.xz hercules-5a5a32793bbfa5d1aeb76a0232ad4312f690b2c3.zip |
Add official support for lvl 175
- Add official Job stats bonus and fix old class (pre-re and re got same stats bonus)
- Add official stats points for lvl 150 to 175
- Add new max_parameter for Extend Classes max stats 125
- Change max stats points for the 3rd classes to 130
- Add official Experience table for all classes
Add Star Gladiator official renewal exp table
Special thanks to Yommy and Muad_Dib for official info
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 3a1d15746..70df9ca56 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -589,7 +589,7 @@ struct map_session_data { #define pc_isinvisible(sd) ( (sd)->sc.option&OPTION_INVISIBLE ) #define pc_is50overweight(sd) ( (sd)->weight*100 >= (sd)->max_weight*battle_config.natural_heal_weight_rate ) #define pc_is90overweight(sd) ( (sd)->weight*10 >= (sd)->max_weight*9 ) -#define pc_maxparameter(sd) ( ((((sd)->class_&MAPID_UPPERMASK) == MAPID_KAGEROUOBORO) || (((sd)->class_&MAPID_UPPERMASK) == MAPID_REBELLION) || (sd)->class_&JOBL_THIRD ? ((sd)->class_&JOBL_BABY ? battle_config.max_baby_third_parameter : battle_config.max_third_parameter) : ((sd)->class_&JOBL_BABY ? battle_config.max_baby_parameter : battle_config.max_parameter)) ) +#define pc_maxparameter(sd) ( (((sd)->class_&MAPID_UPPERMASK) == MAPID_KAGEROUOBORO || ((sd)->class_&MAPID_UPPERMASK) == MAPID_REBELLION || ((sd)->class_&MAPID_THIRDMASK) == MAPID_SUPER_NOVICE_E) ? battle_config.max_extended_parameter : (sd)->class_&JOBL_THIRD ? ((sd)->class_&JOBL_BABY ? battle_config.max_baby_third_parameter : battle_config.max_third_parameter) : ((sd)->class_&JOBL_BABY ? battle_config.max_baby_parameter : battle_config.max_parameter) ) /** * Ranger **/ |