| 1234567891011121314151617181920212223242526272829303132 |
- namespace Content.Server.Kitchen.Components;
- /// <summary>
- /// Applies to items that are capable of butchering entities, or
- /// are otherwise sharp for some purpose.
- /// </summary>
- [RegisterComponent]
- public sealed partial class SharpComponent : Component
- {
- // TODO just make this a tool type.
- public HashSet<EntityUid> Butchering = new();
- [DataField("butcherDelayModifier")]
- public float ButcherDelayModifier = 1.0f;
- /// <summary>
- /// Shitmed: Whether this item had <c>SurgeryToolComponent</c> before sharp was added.
- /// </summary>
- [DataField]
- public bool HadSurgeryTool;
- /// <summary>
- /// Shitmed: Whether this item had <c>ScalpelComponent</c> before sharp was added.
- /// </summary>
- [DataField]
- public bool HadScalpel;
- /// <summary>
- /// Shitmed: Whether this item had <c>BoneSawComponent</c> before sharp was added.
- /// </summary>
- [DataField]
- public bool HadBoneSaw;
- }
|