Files
tbd-station-14/Content.Shared/Atmos/Rotting/ProRottingContainerComponent.cs
themias fd7ff690b1 Grave digging and decomposition (#23646)
* Grave digging and decomposition

* fix

* update based on review comments

* code review

* remove unused field
2024-01-14 11:47:31 -05:00

15 lines
380 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Atmos.Rotting;
/// <summary>
/// Entities inside this container will rot at a faster pace, e.g. a grave
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class ProRottingContainerComponent : Component
{
[DataField, ViewVariables(VVAccess.ReadWrite)]
public float DecayModifier = 3f;
}