mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
22 lines
864 B
C#
22 lines
864 B
C#
// 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.
|
|
|
|
using System;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Graphics;
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
{
|
|
public abstract class ModNoFail : ModBlockFail
|
|
{
|
|
public override string Name => "No Fail";
|
|
public override string Acronym => "NF";
|
|
public override IconUsage? Icon => OsuIcon.ModNoFail;
|
|
public override ModType Type => ModType.DifficultyReduction;
|
|
public override LocalisableString Description => "You can't fail, no matter what.";
|
|
public override double ScoreMultiplier => 0.5;
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModRelax), typeof(ModFailCondition), typeof(ModAutoplay) };
|
|
}
|
|
}
|