Files
crystall-punk-14/Content.Shared/_CP14/Farming/Components/CP14PlantMetabolizerComponent.cs
Ed 48831380b4 Give some love to farming (#1124)
* give some love to farming

* Queryptimization

* Fuck soil!!!

* fuck soil in prototypes!

* seeds improve

* partial merge wild and farm

* some strange fix

* plant kills refactor, add compost

* fix compost

* Update migration.yml

* rain can watering plants

* sage update

* Update seeds.yml

* sage smoking update

* Update seeds.yml
2025-04-03 15:29:08 +03:00

19 lines
567 B
C#

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