2019-07-01 14:46:17 +02: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.
|
2018-09-05 22:54:07 +02:00
|
|
|
|
|
2019-07-01 13:55:09 +02:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-09-05 22:54:07 +02:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
|
|
|
{
|
2019-07-03 19:42:16 +09:00
|
|
|
|
public class OsuModDeflate : OsuModeObjectScaleTween
|
2018-09-05 22:54:07 +02:00
|
|
|
|
{
|
|
|
|
|
public override string Name => "Deflate";
|
2019-07-01 13:55:09 +02:00
|
|
|
|
|
|
|
|
|
public override string Acronym => "DF";
|
|
|
|
|
|
|
|
|
|
public override IconUsage Icon => FontAwesome.Solid.CompressArrowsAlt;
|
|
|
|
|
|
2019-07-03 19:42:16 +09:00
|
|
|
|
public override string Description => "Hit them at the right size!";
|
2019-07-01 13:55:09 +02:00
|
|
|
|
|
2019-07-03 19:42:16 +09:00
|
|
|
|
protected override float StartScale => 2f;
|
2018-09-05 22:54:07 +02:00
|
|
|
|
}
|
|
|
|
|
}
|