25 lines
559 B
C#
25 lines
559 B
C#
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Random;
|
|
|
|
namespace Content.Shared.EntityEffects.Effects.PlantMetabolism;
|
|
|
|
public sealed partial class PlantChangeStat : EventEntityEffect<PlantChangeStat>
|
|
{
|
|
[DataField]
|
|
public string TargetValue;
|
|
|
|
[DataField]
|
|
public float MinValue;
|
|
|
|
[DataField]
|
|
public float MaxValue;
|
|
|
|
[DataField]
|
|
public int Steps;
|
|
|
|
protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|