16 lines
384 B
C#
16 lines
384 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Content.Server.Kudzu;
|
|
|
|
[RegisterComponent]
|
|
public sealed class GrowingKudzuComponent : Component
|
|
{
|
|
[DataField("growthLevel")]
|
|
public int GrowthLevel = 1;
|
|
|
|
[DataField("growthTickSkipChance")]
|
|
public float GrowthTickSkipChange = 0.0f;
|
|
}
|