zenno: update stat charts for new limits
This commit is contained in:
@@ -519,7 +519,8 @@ export function speedGain(speedBonus: number, dur: number, accel: number | null,
|
||||
* @returns Probability per candidate to accept
|
||||
*/
|
||||
export function reducedSpurtChance(witStat: number): number {
|
||||
return 0.15 + 0.0005 * witStat;
|
||||
// 1900 wit style S exceeds 100% chance if we don't explicitly cap.
|
||||
return Math.min(0.15 + 0.0005 * witStat, 1);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user