* Oh the possibilities * Merge fixes * Forgot to remote LavaSystem oops * Changed EntityEffectArgs to EntityEffectBaseArgs and EntityEffectReagentArgs * Throw exception for unimplemented effectargs * Remove Json and overrideable datafields * Fix test issues * Actually fix the compiling issue * Fix comments and remove EntityEffectArgs (no longer used, replaced with EntityEffectBaseArgs)
36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
using Content.Server.Medical;
|
|
using Content.Shared.EntityEffects;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.EntityEffects.Effects
|
|
{
|
|
/// <summary>
|
|
/// Forces you to vomit.
|
|
/// </summary>
|
|
[UsedImplicitly]
|
|
public sealed partial class ChemVomit : EntityEffect
|
|
{
|
|
/// 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(EntityEffectBaseArgs args)
|
|
{
|
|
if (args is EntityEffectReagentArgs reagentArgs)
|
|
if (reagentArgs.Scale != 1f)
|
|
return;
|
|
|
|
var vomitSys = args.EntityManager.EntitySysManager.GetEntitySystem<VomitSystem>();
|
|
|
|
vomitSys.Vomit(args.TargetEntity, ThirstAmount, HungerAmount);
|
|
}
|
|
}
|
|
}
|