2019-01-24 17:43:03 +09: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 18:19:50 +09:00
|
|
|
|
|
|
|
using System;
|
2019-03-27 19:29:27 +09:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-04-13 18:19:50 +09:00
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
2020-11-16 18:15:15 +08:00
|
|
|
public abstract class ModEasy : Mod, IApplicableToDifficulty
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
|
|
|
public override string Name => "Easy";
|
2018-11-30 17:16:00 +09:00
|
|
|
public override string Acronym => "EZ";
|
2020-01-14 21:22:00 +08:00
|
|
|
public override IconUsage? Icon => OsuIcon.ModEasy;
|
2018-04-13 18:19:50 +09:00
|
|
|
public override ModType Type => ModType.DifficultyReduction;
|
|
|
|
public override double ScoreMultiplier => 0.5;
|
2019-12-12 08:25:51 +08:00
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModHardRock), typeof(ModDifficultyAdjust) };
|
2019-04-04 18:04:49 -03:00
|
|
|
|
2020-11-16 18:15:15 +08:00
|
|
|
public virtual void ReadFromDifficulty(BeatmapDifficulty difficulty)
|
2020-06-09 23:38:54 +09:00
|
|
|
{
|
|
|
|
}
|
2019-12-26 14:52:08 +09:00
|
|
|
|
2020-11-16 18:15:15 +08:00
|
|
|
public virtual void ApplyToDifficulty(BeatmapDifficulty difficulty)
|
2018-04-13 18:19:50 +09:00
|
|
|
{
|
|
|
|
const float ratio = 0.5f;
|
|
|
|
difficulty.CircleSize *= ratio;
|
|
|
|
difficulty.ApproachRate *= ratio;
|
|
|
|
difficulty.DrainRate *= ratio;
|
2020-11-16 18:17:50 +08:00
|
|
|
difficulty.OverallDifficulty *= ratio;
|
2019-09-21 23:30:54 +09:00
|
|
|
}
|
2018-04-13 18:19:50 +09:00
|
|
|
}
|
|
|
|
}
|