namespace Content.Shared._Shitmed.Medical.Surgery.Tools;
public interface ISurgeryToolComponent
{
[DataField]
public string ToolName { get; }
///
/// Field intended for discardable or non-reusable tools.
///
[DataField]
public bool? Used { get; set; }
///
/// Multiply the step's doafter by this value.
/// This is per-type so you can have something that's a good scalpel but a bad retractor.
///
[DataField]
public float Speed { get; set; }
}