using Content.Shared.Maps;
using Robust.Shared.Prototypes;
namespace Content.Shared._CP14.Farming.Components;
///
/// a component that allows for the creation of the entity on the tile
///
[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> SoilTile = new() { "CP14FloorDirtSeedbed" };
}