Files
crystall-punk-14/Content.Shared/_CP14/Farming/Components/CP14SeedComponent.cs
Ed e308eec703 Hoe dirt preparing (#1135)
* seedbed returns

* modular hoe!

* hoe gameplay

* remove onion seeds
2025-04-05 01:00:39 +03:00

21 lines
592 B
C#

using Content.Shared.Maps;
using Robust.Shared.Prototypes;
namespace Content.Shared._CP14.Farming.Components;
/// <summary>
/// a component that allows for the creation of the entity on the tile
/// </summary>
[RegisterComponent, Access(typeof(CP14SharedFarmingSystem))]
public sealed partial class CP14SeedComponent : Component
{
[DataField]
public TimeSpan PlantingTime = TimeSpan.FromSeconds(1f);
[DataField(required: true)]
public EntProtoId PlantProto;
[DataField]
public HashSet<ProtoId<ContentTileDefinition>> SoilTile = new() { "CP14FloorDirtSeedbed" };
}