Grave digging and decomposition (#23646)

* Grave digging and decomposition

* fix

* update based on review comments

* code review

* remove unused field
This commit is contained in:
themias
2024-01-14 11:47:31 -05:00
committed by GitHub
parent 83f96a6766
commit fd7ff690b1
15 changed files with 315 additions and 9 deletions

View File

@@ -0,0 +1,14 @@
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;
}