using Content.Server.Medical; using Content.Shared.Chemistry.Reagent; using JetBrains.Annotations; using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.ReagentEffects { /// /// Forces you to vomit. /// [UsedImplicitly] public sealed partial class ChemVomit : ReagentEffect { /// How many units of thirst to add each time we vomit [DataField] public float ThirstAmount = -8f; /// How many units of hunger to add each time we vomit [DataField] public float HungerAmount = -8f; protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-chem-vomit", ("chance", Probability)); public override void Effect(ReagentEffectArgs args) { if (args.Scale != 1f) return; var vomitSys = args.EntityManager.EntitySysManager.GetEntitySystem(); vomitSys.Vomit(args.SolutionEntity, ThirstAmount, HungerAmount); } } }