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