Skip to content

Commit e3e9c88

Browse files
committed
Rebalance of RG_PLAGIARISM (Intimidate)
- Also increases Attack Speed by 1% per Skill Level From massive skills rebalance (1st/2nd/transclass) (2018.10.31)
1 parent 83feb7d commit e3e9c88

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/map/status.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3696,8 +3696,10 @@ static int status_base_amotion_pc(struct map_session_data *sd, struct status_dat
36963696
temp = (float)(sqrt(temp) * 0.25f) + 0xc4;
36973697
if (sd->weapontype == W_BOOK && (skill_lv = pc->checkskill(sd, SA_ADVANCEDBOOK)) > 0)
36983698
val += (skill_lv - 1) / 2 + 1;
3699-
if ( (skill_lv = pc->checkskill(sd, GS_SINGLEACTION)) > 0 )
3699+
if ((skill_lv = pc->checkskill(sd, GS_SINGLEACTION)) > 0)
37003700
val += ((skill_lv + 1) / 2);
3701+
if ((skill_lv = pc->checkskill(sd, RG_PLAGIARISM)) > 0)
3702+
val += skill_lv;
37013703
amotion = ((int)(temp + ((float)(status->calc_aspd(&sd->bl, &sd->sc, 1) + val) * st->agi / 200)) - min(amotion, 200));
37023704
#else
37033705
// base weapon delay

0 commit comments

Comments
 (0)