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

24 lines
875 B
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
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics;
using osu.Game.Rulesets.Judgements;
2018-04-13 17:19:50 +08:00
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Mods
{
public abstract class ModPerfect : ModSuddenDeath
{
public override string Name => "Perfect";
public override string Acronym => "PF";
2020-01-14 21:22:00 +08:00
public override IconUsage? Icon => OsuIcon.ModPerfect;
2018-04-13 17:19:50 +08:00
public override string Description => "SS or quit.";
2020-03-02 12:25:56 +08:00
protected override bool FailCondition(HealthProcessor healthProcessor, JudgementResult result)
=> !(result.Judgement is IgnoreJudgement)
&& result.Judgement.AffectsCombo
2020-03-02 12:25:56 +08:00
&& result.Type != result.Judgement.MaxResult;
2018-04-13 17:19:50 +08:00
}
}