Files
tbd-station-14/Content.Server/Spreader/KudzuComponent.cs
2023-04-10 15:37:03 +10:00

15 lines
383 B
C#

namespace Content.Server.Spreader;
/// <summary>
/// Handles entities that spread out when they reach the relevant growth level.
/// </summary>
[RegisterComponent]
public sealed class KudzuComponent : Component
{
/// <summary>
/// Chance to spread whenever an edge spread is possible.
/// </summary>
[DataField("spreadChance")]
public float SpreadChance = 1f;
}