Edit mods description, multiplier, and code

This commit is contained in:
Joseph Madamba
2018-03-13 20:07:03 -07:00
committed by GitHub
parent 586ac9c3f1
commit d122aa80e4
54 changed files with 100 additions and 53 deletions

View File

@ -1,11 +1,16 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Graphics;
namespace osu.Game.Rulesets.Mania.Mods
{
public class ManiaModKey5 : ManiaKeyMod
{
public override int KeyCount => 5;
public override string Name => "5K";
public override string Name => "Five Keys";
public override string ShortenedName => "5K";
public override FontAwesome Icon => FontAwesome.fa_question;
public override string Description => @"Play with five keys.";
}
}