Space Kudzu (#5472)
This commit is contained in:
17
Content.Server/Kudzu/GrowingKudzuComponent.cs
Normal file
17
Content.Server/Kudzu/GrowingKudzuComponent.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Serialization.Manager.Attributes;
|
||||
using Robust.Shared.ViewVariables;
|
||||
|
||||
namespace Content.Server.Kudzu;
|
||||
|
||||
[RegisterComponent]
|
||||
public class GrowingKudzuComponent : Component
|
||||
{
|
||||
public override string Name => "GrowingKudzu";
|
||||
|
||||
[DataField("growthLevel")]
|
||||
public int GrowthLevel = 1;
|
||||
|
||||
[DataField("growthTickSkipChance")]
|
||||
public float GrowthTickSkipChange = 0.0f;
|
||||
}
|
||||
Reference in New Issue
Block a user