mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 21:27:23 +01:00
13 lines
335 B
JavaScript
13 lines
335 B
JavaScript
import predictableRandom from './predictableRandom';
|
|
import statsComputed from '../libs/statsComputed';
|
|
|
|
function crit (user, stat = 'str', chance = 0.03) {
|
|
const s = statsComputed(user)[stat];
|
|
if (predictableRandom(user) <= chance * (1 + s / 100)) {
|
|
return 1.5 + 4 * s / (s + 200);
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
export default { crit };
|