|
@@ -8591,6 +8591,7 @@ static const struct _battle_data {
|
|
|
{ "ammo_check_weapon", &battle_config.ammo_check_weapon, 1, 0, 1, },
|
|
|
{ "max_aspd", &battle_config.max_aspd, 190, 100, 199, },
|
|
|
{ "max_third_aspd", &battle_config.max_third_aspd, 193, 100, 199, },
|
|
|
+ { "max_summoner_aspd", &battle_config.max_summoner_aspd, 193, 100, 199, },
|
|
|
{ "max_walk_speed", &battle_config.max_walk_speed, 300, 100, 100*DEFAULT_WALK_SPEED, },
|
|
|
{ "max_lv", &battle_config.max_lv, 99, 0, MAX_LEVEL, },
|
|
|
{ "aura_lv", &battle_config.aura_lv, 99, 0, INT_MAX, },
|
|
@@ -9067,6 +9068,7 @@ void battle_adjust_conf()
|
|
|
battle_config.monster_max_aspd = 2000 - battle_config.monster_max_aspd * 10;
|
|
|
battle_config.max_aspd = 2000 - battle_config.max_aspd * 10;
|
|
|
battle_config.max_third_aspd = 2000 - battle_config.max_third_aspd * 10;
|
|
|
+ battle_config.max_summoner_aspd = 2000 - battle_config.max_summoner_aspd * 10;
|
|
|
battle_config.max_extended_aspd = 2000 - battle_config.max_extended_aspd * 10;
|
|
|
battle_config.max_walk_speed = 100 * DEFAULT_WALK_SPEED / battle_config.max_walk_speed;
|
|
|
battle_config.max_cart_weight *= 10;
|