2022-04-16 17:32:35 +12:00
|
|
|
namespace Content.Server.Kitchen.Components;
|
2022-02-18 15:57:42 -07:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Applies to items that are capable of butchering entities, or
|
|
|
|
|
/// are otherwise sharp for some purpose.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class SharpComponent : Component
|
2022-02-18 15:57:42 -07:00
|
|
|
{
|
2022-04-16 17:32:35 +12:00
|
|
|
// TODO just make this a tool type.
|
2022-02-18 15:57:42 -07:00
|
|
|
public HashSet<EntityUid> Butchering = new();
|
|
|
|
|
|
|
|
|
|
[DataField("butcherDelayModifier")]
|
|
|
|
|
public float ButcherDelayModifier = 1.0f;
|
|
|
|
|
}
|