2019-01-26 13:43:27 +08: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.
|
|
|
|
|
2019-03-12 17:15:18 +08:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
2019-03-27 18:29:27 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2019-01-26 12:15:45 +08:00
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
2019-01-26 20:15:19 +08:00
|
|
|
public class ModWindDown<T> : ModTimeRamp<T>
|
2019-01-26 12:15:45 +08:00
|
|
|
where T : HitObject
|
|
|
|
{
|
|
|
|
public override string Name => "Wind Down";
|
|
|
|
public override string Acronym => "WD";
|
2019-03-04 17:39:13 +08:00
|
|
|
public override string Description => "Sloooow doooown...";
|
2019-04-02 18:55:24 +08:00
|
|
|
public override IconUsage Icon => FontAwesome.Solid.ChevronCircleDown;
|
2019-01-26 20:15:19 +08:00
|
|
|
public override double ScoreMultiplier => 1.0;
|
2019-03-12 17:15:18 +08:00
|
|
|
|
2019-03-06 13:14:41 +08:00
|
|
|
protected override double FinalRateAdjustment => -0.25;
|
2019-03-12 17:15:18 +08:00
|
|
|
|
|
|
|
public override Type[] IncompatibleMods => base.IncompatibleMods.Append(typeof(ModWindUp<T>)).ToArray();
|
2019-01-26 12:15:45 +08:00
|
|
|
}
|
2019-03-06 13:14:41 +08:00
|
|
|
}
|