Files
crystall-punk-14/Content.Server/Spreader/KudzuComponent.cs

15 lines
383 B
C#
Raw Normal View History

2023-04-10 15:37:03 +10:00
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;
}