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
|
|
|
|
2017-04-21 16:33:20 +08:00
|
|
|
using System;
|
2021-02-24 13:32:50 +08:00
|
|
|
using System.Linq;
|
2019-03-27 18:29:27 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2022-08-11 03:54:48 +08:00
|
|
|
using osu.Framework.Localisation;
|
2017-04-21 16:33:20 +08:00
|
|
|
using osu.Game.Graphics;
|
2019-06-21 13:29:16 +08:00
|
|
|
using osu.Game.Rulesets.Judgements;
|
2017-11-20 15:15:29 +08:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2017-04-21 16:33:20 +08:00
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
2021-02-24 13:32:50 +08:00
|
|
|
public abstract class ModSuddenDeath : ModFailCondition
|
2017-04-21 16:33:20 +08:00
|
|
|
{
|
|
|
|
public override string Name => "Sudden Death";
|
2018-11-30 16:16:00 +08:00
|
|
|
public override string Acronym => "SD";
|
2021-12-10 13:15:00 +08:00
|
|
|
public override IconUsage? Icon => OsuIcon.ModSuddenDeath;
|
2017-05-03 02:36:55 +08:00
|
|
|
public override ModType Type => ModType.DifficultyIncrease;
|
2022-08-11 03:54:48 +08:00
|
|
|
public override LocalisableString Description => "Miss and fail.";
|
2017-04-21 16:33:20 +08:00
|
|
|
public override double ScoreMultiplier => 1;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2021-02-24 13:32:50 +08:00
|
|
|
public override Type[] IncompatibleMods => base.IncompatibleMods.Append(typeof(ModPerfect)).ToArray();
|
2020-05-12 19:08:35 +08:00
|
|
|
|
2021-02-24 13:32:50 +08:00
|
|
|
protected override bool FailCondition(HealthProcessor healthProcessor, JudgementResult result)
|
2020-09-29 14:26:42 +08:00
|
|
|
=> result.Type.AffectsCombo()
|
|
|
|
&& !result.IsHit;
|
2017-04-21 16:33:20 +08:00
|
|
|
}
|
2017-11-20 15:15:29 +08:00
|
|
|
}
|