2019-01-24 16:43:03 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
using System;
|
2019-03-27 18:29:27 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
|
|
|
public abstract class ModHardRock : Mod, IApplicableToDifficulty
|
|
|
|
{
|
|
|
|
public override string Name => "Hard Rock";
|
2018-11-30 16:16:00 +08:00
|
|
|
public override string Acronym => "HR";
|
2019-03-27 18:29:27 +08:00
|
|
|
public override IconUsage Icon => OsuIcon.ModHardrock;
|
2018-04-13 17:19:50 +08:00
|
|
|
public override ModType Type => ModType.DifficultyIncrease;
|
|
|
|
public override string Description => "Everything just got a bit harder...";
|
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModEasy) };
|
|
|
|
|
|
|
|
public void ApplyToDifficulty(BeatmapDifficulty difficulty)
|
|
|
|
{
|
|
|
|
const float ratio = 1.4f;
|
2018-05-15 20:57:08 +08:00
|
|
|
difficulty.CircleSize = Math.Min(difficulty.CircleSize * 1.3f, 10.0f); // CS uses a custom 1.3 ratio.
|
2018-04-13 17:19:50 +08:00
|
|
|
difficulty.ApproachRate = Math.Min(difficulty.ApproachRate * ratio, 10.0f);
|
2018-05-15 20:25:20 +08:00
|
|
|
difficulty.DrainRate = Math.Min(difficulty.DrainRate * ratio, 10.0f);
|
|
|
|
difficulty.OverallDifficulty = Math.Min(difficulty.OverallDifficulty * ratio, 10.0f);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|