Cart Tornado formula is wrong #659
Labels
component:mechanics
Affecting the game mechanics in general
type:bug
Issue is a bug or describes an incorrect behavior that should be fixed
Milestone
On Hercules this skill damage become insane when Genetic reach 149 or more total str. The current formula from repository take total str while in official it use base str.
Current repository battle.c
skillratio = 50 * skill_lv + (sd ? sd->cart_weight : battle_config.max_cart_weight) / 10 / max(150 - strbonus, 1) + 50 * (sd ? pc->checkskill(sd, GN_REMODELING_CART) : 5);
With that formula a 149 or more total str Genetic will get (250+10500+250)% skill ratio. This should be 150 minus base str like official so 130 base str Genetic will get (250+525+250)% skill ratio
The text was updated successfully, but these errors were encountered: