zenno: update stat charts for new limits

This commit is contained in:
2026-07-01 22:12:10 -04:00
parent 9ce665865e
commit d62e729052
6 changed files with 38 additions and 36 deletions
+2 -1
View File
@@ -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);
}
/**