29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
|
|
using Content.Server.Nutrition.Components;
|
|||
|
|
using Content.Shared.Chemistry;
|
|||
|
|
using Content.Shared.Chemistry.Reagent;
|
|||
|
|
using Content.Shared.Chemistry.Solution;
|
|||
|
|
using Robust.Shared.GameObjects;
|
|||
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|||
|
|
|
|||
|
|
namespace Content.Server.Chemistry.ReagentEffects
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Default metabolism for drink reagents. Attempts to find a ThirstComponent on the target,
|
|||
|
|
/// and to update it's thirst values.
|
|||
|
|
/// </summary>
|
|||
|
|
public class SatiateThirst : ReagentEffect
|
|||
|
|
{
|
|||
|
|
/// How much thirst is satiated each metabolism tick. Not currently tied to
|
|||
|
|
/// rate or anything.
|
|||
|
|
[DataField("hydrationFactor")]
|
|||
|
|
public float HydrationFactor { get; set; } = 3.0f;
|
|||
|
|
|
|||
|
|
/// Satiate thirst if a ThirstComponent can be found
|
|||
|
|
public override void Metabolize(IEntity solutionEntity, Solution.ReagentQuantity amount)
|
|||
|
|
{
|
|||
|
|
if (solutionEntity.TryGetComponent(out ThirstComponent? thirst))
|
|||
|
|
thirst.UpdateThirst(HydrationFactor);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|