From 509ddef5123047591fa95af37ba87b528acd976c Mon Sep 17 00:00:00 2001 From: gbasso666 Date: Sun, 24 Nov 2024 17:39:44 -0300 Subject: [PATCH] Fix damage increase by STR of KN_BRANDISHSPEAR (RE) it should increase the ration by 5 for each STR point, not 1 From massive skills rebalance (1st/2nd/transclass) (2018.10.31) --- src/map/battle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/battle.c b/src/map/battle.c index 28e7203445f..9a5db93f87e 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -2106,7 +2106,7 @@ static int battle_calc_skillratio(int attack_type, struct block_list *src, struc break; #ifdef RENEWAL case KN_BRANDISHSPEAR: - skillratio += 300 + 100 * skill_lv + status_get_str(src); + skillratio += 300 + 100 * skill_lv + status_get_str(src) * 5; break; #else case KN_BRANDISHSPEAR: