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