calculate values with hard rock applied
const circleSize = 4; const approachRate = 9.8; const overallDifficulty = 9.1; const health = 5; const modded = toHR(circleSize, approachRate, overallDifficulty, health); // => { // cs: 5.2 // ar: 10 // od: 10 // hp: 7 // } Copy
const circleSize = 4; const approachRate = 9.8; const overallDifficulty = 9.1; const health = 5; const modded = toHR(circleSize, approachRate, overallDifficulty, health); // => { // cs: 5.2 // ar: 10 // od: 10 // hp: 7 // }
calculate values with hard rock applied
Example