2018-01-05 20:21:19 +09:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-04-21 17:33:20 +09:00
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using osu.Framework.Timing;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
|
|
{
|
|
|
|
public class ModDoubleTime : Mod, IApplicableToClock
|
|
|
|
{
|
|
|
|
public override string Name => "Double Time";
|
2017-08-13 17:41:13 +02:00
|
|
|
public override string ShortenedName => "DT";
|
2017-04-21 17:33:20 +09:00
|
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_doubletime;
|
2017-05-02 21:36:55 +03:00
|
|
|
public override ModType Type => ModType.DifficultyIncrease;
|
2017-04-21 17:33:20 +09:00
|
|
|
public override string Description => "Zoooooooooom";
|
|
|
|
public override bool Ranked => true;
|
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModHalfTime) };
|
|
|
|
|
|
|
|
public override double ScoreMultiplier => 1.12;
|
|
|
|
|
|
|
|
public virtual void ApplyToClock(IAdjustableClock clock)
|
|
|
|
{
|
|
|
|
clock.Rate = 1.5;
|
|
|
|
}
|
|
|
|
}
|
2018-01-05 20:21:19 +09:00
|
|
|
}
|