Files
tbd-station-14/Content.Shared/Bed/Components/StasisBedComponent.cs
Nemanja ab201b6e82 Stasis bed cleanup and bugfixes. (#38762)
* Stasis bed sent to shed

* Code Review

* Code Review 2
2025-07-06 02:59:31 +02:00

19 lines
615 B
C#

using Content.Shared.Buckle.Components;
using Robust.Shared.GameStates;
namespace Content.Shared.Bed.Components;
/// <summary>
/// A <see cref="StrapComponent"/> that modifies a strapped entity's metabolic rate by the given multiplier
/// </summary>
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
[Access(typeof(SharedBedSystem))]
public sealed partial class StasisBedComponent : Component
{
/// <summary>
/// What the metabolic update rate will be multiplied by (higher = slower metabolism)
/// </summary>
[DataField, AutoNetworkedField]
public float Multiplier = 10f;
}