2018-01-05 19:21:19 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-04-21 16:33:20 +08:00
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using System;
|
2017-08-05 15:22:10 +08:00
|
|
|
using osu.Game.Beatmaps;
|
2017-04-21 16:33:20 +08:00
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
2017-08-05 15:22:10 +08:00
|
|
|
public abstract class ModHardRock : Mod, IApplicableToDifficulty
|
2017-04-21 16:33:20 +08:00
|
|
|
{
|
|
|
|
public override string Name => "Hard Rock";
|
2017-08-13 23:41:13 +08:00
|
|
|
public override string ShortenedName => "HR";
|
2017-04-21 16:33:20 +08:00
|
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_hardrock;
|
2017-05-03 02:36:55 +08:00
|
|
|
public override ModType Type => ModType.DifficultyIncrease;
|
2017-04-21 16:33:20 +08:00
|
|
|
public override string Description => "Everything just got a bit harder...";
|
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModEasy) };
|
2017-08-05 15:22:10 +08:00
|
|
|
|
|
|
|
public void ApplyToDifficulty(BeatmapDifficulty difficulty)
|
|
|
|
{
|
|
|
|
const float ratio = 1.4f;
|
2017-08-07 09:43:33 +08:00
|
|
|
difficulty.CircleSize *= 1.3f; // CS uses a custom 1.3 ratio.
|
2018-01-15 23:04:57 +08:00
|
|
|
difficulty.ApproachRate = Math.Min(difficulty.ApproachRate * ratio, 10.0f);
|
2017-08-05 15:22:10 +08:00
|
|
|
difficulty.DrainRate *= ratio;
|
|
|
|
difficulty.OverallDifficulty *= ratio;
|
|
|
|
}
|
2017-04-21 16:33:20 +08:00
|
|
|
}
|
2017-08-07 09:43:33 +08:00
|
|
|
}
|