Happiness is not a destination, it's a way of life ☀️

This commit is contained in:
Simon Lübeß
2024-04-06 00:57:29 +02:00
parent 3f907d13b9
commit adac70b9a5
4 changed files with 141 additions and 24 deletions

View File

@ -22,6 +22,7 @@ namespace Utility
public double CaffeineDrainScaling { get; protected set; }
public double HungerDrainScaling { get; protected set; }
public double UrinationDrainScaling { get; protected set; }
public double HappinessDrainScaling { get; protected set; }
}
public class EasyDifficulty : DifficultySettings
@ -42,6 +43,7 @@ namespace Utility
CaffeineDrainScaling = 1.5;
HungerDrainScaling = 1.5;
UrinationDrainScaling = 1.5;
HappinessDrainScaling = 1.5;
}
}