osumodcalculator
    Preparing search index...

    Function toHR

    • 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
      // }

      Parameters

      • cs: number
      • ar: number
      • od: number
      • hp: number

      Returns { ar: number; cs: number; hp: number; od: number }