Files
tbd-station-14/Content.Shared/_Offbrand/Wounds/CryostasisFactorComponent.cs
Janet Blackquill 5fa17e22a1 De-MPL Offbrand
2025-09-27 22:43:24 -04:00

19 lines
608 B
C#

namespace Content.Shared._Offbrand.Wounds;
// smalldoggers guessed what these numbers meant just from the graphs on discord :]
[RegisterComponent]
public sealed partial class CryostasisFactorComponent : Component
{
/// <summary>
/// The body's temperature will be multiplied by this value to determine its contribution to the stasis factor
/// </summary>
[DataField(required: true)]
public float TemperatureCoefficient;
/// <summary>
/// This constant will be added to the stasis factor
/// </summary>
[DataField(required: true)]
public float TemperatureConstant;
}