Entwickler haben also Bedürfnisse?

This commit is contained in:
Simon Lübeß
2024-04-05 19:24:26 +02:00
parent 17dbb6a356
commit 1bae35b3be
9 changed files with 14720 additions and 15 deletions

View File

@ -9,6 +9,7 @@ namespace Utility
Hard
}
[Serializable]
public abstract class DifficultySettings
{
public Difficulty Difficulty { get; protected set; }
@ -17,6 +18,10 @@ namespace Utility
/// Faktor, wie viel mehr Zeit man halt als die Entwickler bei 100% effizienz benötigen.
/// </summary>
public double DaysUntilReleaseFactor { get; protected set; }
public double CaffeineDrainScaling { get; protected set; }
public double HungerDrainScaling { get; protected set; }
public double UrinationDrainScaling { get; protected set; }
}
public class EasyDifficulty : DifficultySettings
@ -34,6 +39,9 @@ namespace Utility
{
Difficulty = Difficulty.Medium;
DaysUntilReleaseFactor = 1.5;
CaffeineDrainScaling = 1.5;
HungerDrainScaling = 1.5;
UrinationDrainScaling = 1.5;
}
}