mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
* Rip out remaining machine upgrades * eek (cherry picked from commit a9e89ab37221c4f5eff5a9e1d42e97c6f3e0753b)
21 lines
587 B
C#
21 lines
587 B
C#
using Content.Server.Botany.Systems;
|
|
|
|
namespace Content.Server.Botany.Components;
|
|
|
|
[RegisterComponent]
|
|
[Access(typeof(SeedExtractorSystem))]
|
|
public sealed partial class SeedExtractorComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The minimum amount of seed packets dropped.
|
|
/// </summary>
|
|
[DataField("baseMinSeeds"), ViewVariables(VVAccess.ReadWrite)]
|
|
public int BaseMinSeeds = 1;
|
|
|
|
/// <summary>
|
|
/// The maximum amount of seed packets dropped.
|
|
/// </summary>
|
|
[DataField("baseMaxSeeds"), ViewVariables(VVAccess.ReadWrite)]
|
|
public int BaseMaxSeeds = 3;
|
|
}
|