2017-06-06 05:45:22 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.OsuDifficulty.Skills
|
|
|
|
|
{
|
|
|
|
|
public class Aim : Skill
|
|
|
|
|
{
|
2017-06-06 07:08:34 +08:00
|
|
|
|
protected override double SkillMultiplier => 26.25;
|
|
|
|
|
protected override double StrainDecayBase => 0.15;
|
2017-06-06 05:45:22 +08:00
|
|
|
|
|
2017-06-06 21:39:37 +08:00
|
|
|
|
protected override double StrainValue() => Math.Pow(Current.Distance, 0.99) / Current.DeltaTime;
|
2017-06-06 05:45:22 +08:00
|
|
|
|
}
|
2017-06-06 06:07:00 +08:00
|
|
|
|
}
|