2018-04-13 17:19:50 +08:00
|
|
|
|
// Copyright (c) 2007-2018 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.Mods;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
|
|
|
{
|
|
|
|
|
public class OsuModSpunOut : Mod
|
|
|
|
|
{
|
|
|
|
|
public override string Name => "Spun Out";
|
|
|
|
|
public override string ShortenedName => "SO";
|
|
|
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_spunout;
|
|
|
|
|
public override string Description => @"Spinners will be automatically completed.";
|
|
|
|
|
public override double ScoreMultiplier => 0.9;
|
|
|
|
|
public override bool Ranked => true;
|
|
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModAutoplay), typeof(OsuModAutopilot) };
|
|
|
|
|
}
|
|
|
|
|
}
|