1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 09:27:23 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Mods/CatchModEasy.cs

60 lines
1.8 KiB
C#
Raw Normal View History

// 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
2020-11-16 18:15:15 +08:00
using Humanizer;
using osu.Framework.Bindables;
using osu.Game.Beatmaps;
using osu.Game.Configuration;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Mods;
2020-11-16 18:15:15 +08:00
using osu.Game.Rulesets.Scoring;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Catch.Mods
{
2020-11-16 18:28:50 +08:00
public class CatchModEasy : ModEasy, IApplicableFailOverride, IApplicableToHealthProcessor
2018-04-13 17:19:50 +08:00
{
public override string Description => @"Larger fruits, more forgiving HP drain, less accuracy required, and three lives!";
2020-11-16 18:15:15 +08:00
[SettingSource("Extra Lives", "Number of extra lives")]
public Bindable<int> Retries { get; } = new BindableInt(2)
{
MinValue = 0,
MaxValue = 10
};
public override string SettingDescription => Retries.IsDefault ? string.Empty : $"{"lives".ToQuantity(Retries.Value)}";
private int retries;
private BindableNumber<double> health;
public override void ReadFromDifficulty(BeatmapDifficulty difficulty)
{
}
public override void ApplyToDifficulty(BeatmapDifficulty difficulty)
{
const float ratio = 0.5f;
difficulty.CircleSize *= ratio;
difficulty.ApproachRate *= ratio;
difficulty.DrainRate *= ratio;
difficulty.OverallDifficulty *= ratio;
retries = Retries.Value;
}
public bool PerformFail()
{
if (retries == 0) return true;
health.Value = health.MaxValue;
retries--;
return false;
}
public bool RestartOnFail => false;
2020-11-16 18:22:17 +08:00
public void ApplyToHealthProcessor(HealthProcessor healthProcessor)
{
health = healthProcessor.Health.GetBoundCopy();
}
2018-04-13 17:19:50 +08:00
}
}