Significantly nerf chemvomit and give it a reasonable default. (#21453)

This commit is contained in:
IProduceWidgets
2023-11-05 21:16:56 -05:00
committed by GitHub
parent 3a430f3628
commit 79cd2a7d56
3 changed files with 16 additions and 4 deletions

View File

@@ -13,10 +13,10 @@ namespace Content.Server.Chemistry.ReagentEffects
{
/// How many units of thirst to add each time we vomit
[DataField("thirstAmount")]
public float ThirstAmount = -40f;
public float ThirstAmount = -8f;
/// How many units of hunger to add each time we vomit
[DataField("hungerAmount")]
public float HungerAmount = -40f;
public float HungerAmount = -8f;
protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys)
=> Loc.GetString("reagent-effect-guidebook-chem-vomit", ("chance", Probability));