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