calculate values with hard rock applied
const circleSize = 4; const approachRate = 9.8; const overallDifficulty = 9.1; const health = 5; const modded = toEZ(circleSize, approachRate, overallDifficulty, health); // => { // cs: 2 // ar: 4.9 // od: 4.55 // hp: 2.5 // } Copy
const circleSize = 4; const approachRate = 9.8; const overallDifficulty = 9.1; const health = 5; const modded = toEZ(circleSize, approachRate, overallDifficulty, health); // => { // cs: 2 // ar: 4.9 // od: 4.55 // hp: 2.5 // }
calculate values with hard rock applied
Example