mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 21:02:54 +08:00
Reduce ramp mod multipliers in line with other difficulty change mods for now
Closes https://github.com/ppy/osu/issues/20204. Will require reprocessing of everything server-side.
This commit is contained in:
parent
fd6d67d0f6
commit
ec21ab8171
@ -19,6 +19,8 @@ namespace osu.Game.Rulesets.Mods
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public const double FINAL_RATE_PROGRESS = 0.75f;
|
public const double FINAL_RATE_PROGRESS = 0.75f;
|
||||||
|
|
||||||
|
public override double ScoreMultiplier => 0.5;
|
||||||
|
|
||||||
[SettingSource("Initial rate", "The starting speed of the track")]
|
[SettingSource("Initial rate", "The starting speed of the track")]
|
||||||
public abstract BindableNumber<double> InitialRate { get; }
|
public abstract BindableNumber<double> InitialRate { get; }
|
||||||
|
|
||||||
|
@ -16,7 +16,6 @@ namespace osu.Game.Rulesets.Mods
|
|||||||
public override string Acronym => "WD";
|
public override string Acronym => "WD";
|
||||||
public override LocalisableString Description => "Sloooow doooown...";
|
public override LocalisableString Description => "Sloooow doooown...";
|
||||||
public override IconUsage? Icon => FontAwesome.Solid.ChevronCircleDown;
|
public override IconUsage? Icon => FontAwesome.Solid.ChevronCircleDown;
|
||||||
public override double ScoreMultiplier => 1.0;
|
|
||||||
|
|
||||||
[SettingSource("Initial rate", "The starting speed of the track")]
|
[SettingSource("Initial rate", "The starting speed of the track")]
|
||||||
public override BindableNumber<double> InitialRate { get; } = new BindableDouble
|
public override BindableNumber<double> InitialRate { get; } = new BindableDouble
|
||||||
|
@ -16,7 +16,6 @@ namespace osu.Game.Rulesets.Mods
|
|||||||
public override string Acronym => "WU";
|
public override string Acronym => "WU";
|
||||||
public override LocalisableString Description => "Can you keep up?";
|
public override LocalisableString Description => "Can you keep up?";
|
||||||
public override IconUsage? Icon => FontAwesome.Solid.ChevronCircleUp;
|
public override IconUsage? Icon => FontAwesome.Solid.ChevronCircleUp;
|
||||||
public override double ScoreMultiplier => 1.0;
|
|
||||||
|
|
||||||
[SettingSource("Initial rate", "The starting speed of the track")]
|
[SettingSource("Initial rate", "The starting speed of the track")]
|
||||||
public override BindableNumber<double> InitialRate { get; } = new BindableDouble
|
public override BindableNumber<double> InitialRate { get; } = new BindableDouble
|
||||||
|
Loading…
Reference in New Issue
Block a user