diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map/battle.c | 4 | ||||
-rw-r--r-- | src/map/status.c | 23 |
2 files changed, 15 insertions, 12 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index f44493cb3..9d7bf7514 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -1654,7 +1654,7 @@ static struct Damage battle_calc_weapon_attack( (target->type == BL_MOB && sd->right_weapon.ignore_def_mob & (is_boss(target)?2:1)) || sd->right_weapon.ignore_def_ele & (1<<tstatus->def_ele) || sd->right_weapon.ignore_def_race & (1<<tstatus->race) || - sd->right_weapon.ignore_def_race & (is_boss(target)?1<<10:1<<11) + sd->right_weapon.ignore_def_race & (is_boss(target)?1<<RC_BOSS:1<<RC_NONBOSS) )) flag.idef = 1; @@ -1662,7 +1662,7 @@ static struct Damage battle_calc_weapon_attack( (target->type == BL_MOB && sd->left_weapon.ignore_def_mob & (is_boss(target)?2:1)) || sd->left_weapon.ignore_def_ele & (1<<tstatus->def_ele) || sd->left_weapon.ignore_def_race & (1<<tstatus->race) || - sd->left_weapon.ignore_def_race & (is_boss(target)?1<<10:1<<11) + sd->left_weapon.ignore_def_race & (is_boss(target)?1<<RC_BOSS:1<<RC_NONBOSS) )) { if(battle_config.left_cardfix_to_right && flag.rh) //Move effect to right hand. [Skotlex] flag.idef = 1; diff --git a/src/map/status.c b/src/map/status.c index 56fb7b1eb..fba106fab 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -4376,10 +4376,6 @@ int status_get_sc_def(struct block_list *bl, int type) if (battle_config.pc_sc_def_rate != 100)
sc_def = sc_def*battle_config.pc_sc_def_rate/100;
- if(SC_COMMON_MIN<=type && type<=SC_COMMON_MAX
- && sd->reseff[type-SC_COMMON_MIN] > 0)
- sc_def+= sd->reseff[type-SC_COMMON_MIN];
-
if (sc_def < battle_config.pc_max_sc_def)
sc_def += (battle_config.pc_max_sc_def - sc_def)*
status->luk/battle_config.pc_luk_sc_def;
@@ -4459,18 +4455,25 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val if (!(flag&(1|4))) {
int def = status_get_sc_def(bl, type);
- if (def && !(flag&8))
- rate -= rate*def/10000;
-
- if (!(rand()%10000 < rate))
- return 0;
-
if (def && tick && !(flag&2))
{
tick -= tick*def/10000;
if (tick <= 0)
return 0;
}
+
+ //Item defenses do not reduce duration, so they go out of the function.
+ if(sd && SC_COMMON_MIN<=type && type<=SC_COMMON_MAX
+ && sd->reseff[type-SC_COMMON_MIN] > 0)
+ def += sd->reseff[type-SC_COMMON_MIN];
+
+ if (def && !(flag&8))
+ rate -= rate*def/10000;
+
+ if (!(rand()%10000 < rate))
+ return 0;
+
+
}
undead_flag=battle_check_undead(status->race,status->def_ele);
|