using Robust.Shared.Prototypes; namespace Content.Shared.Gathering; [RegisterComponent] public sealed partial class StrawCollectorComponent : Component { /// /// Time in seconds to collect straw /// [DataField] public float CollectTime = 5.0f; /// /// Minimum amount harversted /// [DataField] public int MinAmount = 0; /// /// Maximum amount harversted /// [DataField] public int MaxAmount = 3; }