Files
space-station-14/Content.Server/Botany/Components/UnviableGrowthComponent.cs

16 lines
376 B
C#

namespace Content.Server.Botany.Components;
/// <summary>
/// Damage tolerance of plant.
/// </summary>
[RegisterComponent]
[DataDefinition]
public sealed partial class UnviableGrowthComponent : Component
{
/// <summary>
/// Amount of damage dealt to the plant per growth tick with unviable.
/// </summary>
[DataField]
public float UnviableDamage = 6f;
}