2018-01-05 11:21:19 +00:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-04-21 08:33:20 +00:00
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
2017-12-30 19:10:25 +00:00
|
|
|
public abstract class ModNoFail : Mod, IApplicableFailOverride
|
2017-04-21 08:33:20 +00:00
|
|
|
{
|
|
|
|
public override string Name => "NoFail";
|
2017-08-13 15:41:13 +00:00
|
|
|
public override string ShortenedName => "NF";
|
2017-04-21 08:33:20 +00:00
|
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_nofail;
|
2017-05-02 18:36:55 +00:00
|
|
|
public override ModType Type => ModType.DifficultyReduction;
|
2017-04-21 08:33:20 +00:00
|
|
|
public override string Description => "You can't fail, no matter what.";
|
|
|
|
public override double ScoreMultiplier => 0.5;
|
|
|
|
public override bool Ranked => true;
|
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModRelax), typeof(ModSuddenDeath), typeof(ModAutoplay) };
|
2017-08-05 02:59:58 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// We never fail, 'yo.
|
|
|
|
/// </summary>
|
2017-12-30 19:10:25 +00:00
|
|
|
public bool AllowFail => false;
|
2017-04-21 08:33:20 +00:00
|
|
|
}
|
2017-12-30 19:10:25 +00:00
|
|
|
}
|