2022-04-15 18:53:52 -04:00
|
|
|
namespace Content.Server.Bed.Components
|
|
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class StasisBedComponent : Component
|
2022-04-15 18:53:52 -04:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// What the metabolic update rate will be multiplied by (higher = slower metabolism)
|
|
|
|
|
/// </summary>
|
2024-06-20 03:14:18 +12:00
|
|
|
[ViewVariables(VVAccess.ReadOnly)] // Writing is is not supported. ApplyMetabolicMultiplierEvent needs to be refactored first
|
|
|
|
|
[DataField]
|
2022-04-15 18:53:52 -04:00
|
|
|
public float Multiplier = 10f;
|
|
|
|
|
}
|
|
|
|
|
}
|