SharpComponent.cs 446 B

123456789101112131415
  1. namespace Content.Server.Kitchen.Components;
  2. /// <summary>
  3. /// Applies to items that are capable of butchering entities, or
  4. /// are otherwise sharp for some purpose.
  5. /// </summary>
  6. [RegisterComponent]
  7. public sealed partial class SharpComponent : Component
  8. {
  9. // TODO just make this a tool type.
  10. public HashSet<EntityUid> Butchering = new();
  11. [DataField("butcherDelayModifier")]
  12. public float ButcherDelayModifier = 1.0f;
  13. }