2018-01-05 19:21:19 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-04-21 16:33:20 +08: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 abstract class ModHalfTime : Mod, IApplicableToClock
|
|
|
|
{
|
|
|
|
public override string Name => "Half Time";
|
2017-08-13 23:41:13 +08:00
|
|
|
public override string ShortenedName => "HT";
|
2017-04-21 16:33:20 +08:00
|
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_halftime;
|
2017-05-03 02:36:55 +08:00
|
|
|
public override ModType Type => ModType.DifficultyReduction;
|
2018-03-14 11:07:03 +08:00
|
|
|
public override string Description => "Less zoom...";
|
2017-04-21 16:33:20 +08:00
|
|
|
public override bool Ranked => true;
|
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModDoubleTime) };
|
|
|
|
|
2017-05-31 00:49:06 +08:00
|
|
|
public virtual void ApplyToClock(IAdjustableClock clock)
|
2017-04-21 16:33:20 +08:00
|
|
|
{
|
|
|
|
clock.Rate = 0.75;
|
|
|
|
}
|
|
|
|
}
|
2018-01-05 19:21:19 +08:00
|
|
|
}
|