From 654e7629282b1e708e4f08b26b381e6f917b26d3 Mon Sep 17 00:00:00 2001 From: Dastgir Date: Thu, 17 Dec 2015 17:14:11 +0530 Subject: Added Costume/Shadow Atk/Def refine bonus setting --- src/map/battle.c | 3 +++ src/map/battle.h | 3 +++ src/map/status.c | 18 ++++++++++++++---- 3 files changed, 20 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/map/battle.c b/src/map/battle.c index c28aef820..51de87a4a 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -7180,6 +7180,9 @@ static const struct battle_data { { "feature.roulette", &battle_config.feature_roulette, 1, 0, 1, }, { "show_monster_hp_bar", &battle_config.show_monster_hp_bar, 1, 0, 1, }, { "fix_warp_hit_delay_abuse", &battle_config.fix_warp_hit_delay_abuse, 0, 0, 1, }, + { "costume_refine_def", &battle_config.costume_refine_def, 1, 0, 1, }, + { "shadow_refine_def", &battle_config.shadow_refine_def, 1, 0, 1, }, + { "shadow_refine_atk", &battle_config.shadow_refine_atk, 1, 0, 1, }, }; #ifndef STATS_OPT_OUT /** diff --git a/src/map/battle.h b/src/map/battle.h index ad59efedd..586673c17 100644 --- a/src/map/battle.h +++ b/src/map/battle.h @@ -528,6 +528,9 @@ struct Battle_Config { int show_monster_hp_bar; // [Frost] int fix_warp_hit_delay_abuse; + + int costume_refine_def, shadow_refine_def; + int shadow_refine_atk; }; /* criteria for battle_config.idletime_critera */ diff --git a/src/map/status.c b/src/map/status.c index 841f9c855..ba64087e4 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -2370,7 +2370,7 @@ int status_calc_pc_(struct map_session_data* sd, enum e_status_calc_opt opt) { sd->status.inventory[index].refine = MAX_REFINE; if(sd->inventory_data[index]->type == IT_WEAPON) { - int r,wlv = sd->inventory_data[index]->wlv; + int r = sd->status.inventory[index].refine,wlv = sd->inventory_data[index]->wlv; struct weapon_data *wd; struct weapon_atk *wa; if (wlv >= REFINE_TYPE_MAX) @@ -2383,7 +2383,10 @@ int status_calc_pc_(struct map_session_data* sd, enum e_status_calc_opt opt) { wa = &bstatus->rhw; } wa->atk += sd->inventory_data[index]->atk; - if ( (r = sd->status.inventory[index].refine) ) + if ( !battle_config.shadow_refine_atk && itemdb_is_shadowequip(sd->inventory_data[index]->equip) ) + r = 0; + + if (r) wa->atk2 = status->dbs->refine_info[wlv].bonus[r-1] / 100; #ifdef RENEWAL @@ -2421,9 +2424,16 @@ int status_calc_pc_(struct map_session_data* sd, enum e_status_calc_opt opt) { } } else if(sd->inventory_data[index]->type == IT_ARMOR) { - int r; - if ( (r = sd->status.inventory[index].refine) ) + int r = sd->status.inventory[index].refine; + + if ( (!battle_config.costume_refine_def && itemdb_is_costumeequip(sd->inventory_data[index]->equip)) || + (!battle_config.shadow_refine_def && itemdb_is_shadowequip(sd->inventory_data[index]->equip)) + ) + r = 0; + + if (r) refinedef += status->dbs->refine_info[REFINE_TYPE_ARMOR].bonus[r-1]; + if(sd->inventory_data[index]->script) { if( i == EQI_HAND_L ) //Shield sd->state.lr_flag = 3; -- cgit v1.2.3-60-g2f50