mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
25 lines
862 B
C#
25 lines
862 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 System.Linq;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
{
|
|
public class ModWindDown<T> : ModTimeRamp<T>
|
|
where T : HitObject
|
|
{
|
|
public override string Name => "Wind Down";
|
|
public override string Acronym => "WD";
|
|
public override string Description => "Sloooow doooown...";
|
|
public override IconUsage Icon => FontAwesome.Solid.ChevronCircleDown;
|
|
public override double ScoreMultiplier => 1.0;
|
|
|
|
protected override double FinalRateAdjustment => -0.25;
|
|
|
|
public override Type[] IncompatibleMods => base.IncompatibleMods.Append(typeof(ModWindUp<T>)).ToArray();
|
|
}
|
|
}
|