Files
crystall-punk-14/Content.Server/_CP14/Farming/Components/CP14PlantMetabolizerComponent.cs

19 lines
561 B
C#
Raw Permalink Normal View History

using Content.Shared._CP14.Farming.Prototypes;
using Content.Shared.FixedPoint;
using Robust.Shared.Prototypes;
namespace Content.Server._CP14.Farming.Components;
/// <summary>
/// allows the plant to obtain resources by absorbing liquid from the ground
/// </summary>
[RegisterComponent, Access(typeof(CP14FarmingSystem))]
public sealed partial class CP14PlantMetabolizerComponent : Component
{
[DataField]
public FixedPoint2 SolutionPerUpdate = 5f;
[DataField(required: true)]
public ProtoId<CP14PlantMetabolizerPrototype> MetabolizerId;
}