diff options
author | Gepard <Gepard@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-05-15 09:20:53 +0000 |
---|---|---|
committer | Gepard <Gepard@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-05-15 09:20:53 +0000 |
commit | 6af2f57a569cb3c8949ea84029e169daecf24548 (patch) | |
tree | 4671e4ef95c1273513fc1c1ed501f8d5e9eb9c03 /src/map/battle.c | |
parent | da193f6ae35ba2a1558ddee8e505a07a401c9603 (diff) | |
download | hercules-6af2f57a569cb3c8949ea84029e169daecf24548.tar.gz hercules-6af2f57a569cb3c8949ea84029e169daecf24548.tar.bz2 hercules-6af2f57a569cb3c8949ea84029e169daecf24548.tar.xz hercules-6af2f57a569cb3c8949ea84029e169daecf24548.zip |
* Added support for increased max statistics (parameters) for 3rd classes (regular and baby).
* Updated amounts of status points given at Base Level up for levels over 99.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/renewal@14823 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.c')
-rw-r--r-- | src/map/battle.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index 11e696a7f..aea2f2da4 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -3771,6 +3771,8 @@ static const struct _battle_data { { "max_cart_weight", &battle_config.max_cart_weight, 8000, 100, 1000000, }, { "max_parameter", &battle_config.max_parameter, 99, 10, 10000, }, { "max_baby_parameter", &battle_config.max_baby_parameter, 80, 10, 10000, }, + { "max_third_parameter", &battle_config.max_third_parameter, 120, 10, 10000, }, + { "max_baby_third_parameter", &battle_config.max_baby_third_parameter, 108, 10, 10000, }, { "max_def", &battle_config.max_def, 99, 0, INT_MAX, }, { "over_def_bonus", &battle_config.over_def_bonus, 0, 0, 1000, }, { "skill_log", &battle_config.skill_log, BL_NUL, BL_NUL, BL_ALL, }, |