Skip to content

Commit

Permalink
Rebalance of RG_PLAGIARISM (Intimidate)
Browse files Browse the repository at this point in the history
- Also increases Attack Speed by 1% per Skill Level

From massive skills rebalance (1st/2nd/transclass) (2018.10.31)
  • Loading branch information
guilherme-gm committed Jan 7, 2024
1 parent c97cd12 commit 1c44e4f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/map/status.c
Original file line number Diff line number Diff line change
Expand Up @@ -3699,8 +3699,10 @@ static int status_base_amotion_pc(struct map_session_data *sd, struct status_dat
temp = (float)(sqrt(temp) * 0.25f) + 0xc4;
if (sd->weapontype == W_BOOK && (skill_lv = pc->checkskill(sd, SA_ADVANCEDBOOK)) > 0)
val += (skill_lv - 1) / 2 + 1;
if ( (skill_lv = pc->checkskill(sd, GS_SINGLEACTION)) > 0 )
if ((skill_lv = pc->checkskill(sd, GS_SINGLEACTION)) > 0)
val += ((skill_lv + 1) / 2);
if ((skill_lv = pc->checkskill(sd, RG_PLAGIARISM)) > 0)
val += skill_lv;
amotion = ((int)(temp + ((float)(status->calc_aspd(&sd->bl, &sd->sc, 1) + val) * st->agi / 200)) - min(amotion, 200));
#else
// base weapon delay
Expand Down

0 comments on commit 1c44e4f

Please sign in to comment.