2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
|
|
using System;
|
2019-03-27 10:29:27 +00:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-04-13 09:19:50 +00: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 08:16:00 +00:00
|
|
|
public override string Acronym => "HR";
|
2019-03-27 10:29:27 +00:00
|
|
|
public override IconUsage Icon => OsuIcon.ModHardrock;
|
2018-04-13 09:19:50 +00: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 12:57:08 +00:00
|
|
|
difficulty.CircleSize = Math.Min(difficulty.CircleSize * 1.3f, 10.0f); // CS uses a custom 1.3 ratio.
|
2018-04-13 09:19:50 +00:00
|
|
|
difficulty.ApproachRate = Math.Min(difficulty.ApproachRate * ratio, 10.0f);
|
2018-05-15 12:25:20 +00:00
|
|
|
difficulty.DrainRate = Math.Min(difficulty.DrainRate * ratio, 10.0f);
|
|
|
|
difficulty.OverallDifficulty = Math.Min(difficulty.OverallDifficulty * ratio, 10.0f);
|
2018-04-13 09:19:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|