using Robust.Shared.Prototypes; using Robust.Shared.Random; namespace Content.Shared.EntityEffects.Effects.PlantMetabolism; public sealed partial class PlantChangeStat : EventEntityEffect { [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(); } }