2022-02-06 13:14:41 -07:00
|
|
|
using Content.Server.Botany.Systems;
|
2020-10-26 23:19:46 +01:00
|
|
|
|
2022-02-06 13:14:41 -07:00
|
|
|
namespace Content.Server.Botany.Components;
|
2020-10-26 23:19:46 +01:00
|
|
|
|
2022-02-06 13:14:41 -07:00
|
|
|
[RegisterComponent]
|
2022-06-07 15:26:28 +02:00
|
|
|
[Access(typeof(SeedExtractorSystem))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class SeedExtractorComponent : Component
|
2022-02-06 13:14:41 -07:00
|
|
|
{
|
2022-10-23 00:26:02 +02:00
|
|
|
/// <summary>
|
2024-01-22 17:13:04 -05:00
|
|
|
/// The minimum amount of seed packets dropped.
|
2022-10-23 00:26:02 +02:00
|
|
|
/// </summary>
|
|
|
|
|
[DataField("baseMinSeeds"), ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
public int BaseMinSeeds = 1;
|
2020-10-26 23:19:46 +01:00
|
|
|
|
2022-10-23 00:26:02 +02:00
|
|
|
/// <summary>
|
2024-01-22 17:13:04 -05:00
|
|
|
/// The maximum amount of seed packets dropped.
|
2022-10-23 00:26:02 +02:00
|
|
|
/// </summary>
|
|
|
|
|
[DataField("baseMaxSeeds"), ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
public int BaseMaxSeeds = 3;
|
2020-10-26 23:19:46 +01:00
|
|
|
}
|