mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
16 lines
376 B
C#
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;
|
|
}
|