mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 11:27:24 +08:00
29 lines
1.2 KiB
C#
29 lines
1.2 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
{
|
|
public abstract class ModSuddenDeath : Mod, IApplicableToScoreProcessor
|
|
{
|
|
public override string Name => "Sudden Death";
|
|
public override string ShortenedName => "SD";
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_suddendeath;
|
|
public override ModType Type => ModType.DifficultyIncrease;
|
|
public override string Description => "Miss a note and fail.";
|
|
public override double ScoreMultiplier => 1;
|
|
public override bool Ranked => true;
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModNoFail), typeof(ModRelax), typeof(ModAutoplay) };
|
|
|
|
public void ApplyToScoreProcessor(ScoreProcessor scoreProcessor)
|
|
{
|
|
scoreProcessor.FailConditions += FailCondition;
|
|
}
|
|
|
|
protected virtual bool FailCondition(ScoreProcessor scoreProcessor) => scoreProcessor.Combo.Value == 0;
|
|
}
|
|
}
|