diff --git a/Content.Shared/_Wega/Surgery/Components/ClothingSterilityComponent.cs b/Content.Shared/_Wega/Surgery/Components/ClothingSterilityComponent.cs new file mode 100644 index 0000000000..3488e18bff --- /dev/null +++ b/Content.Shared/_Wega/Surgery/Components/ClothingSterilityComponent.cs @@ -0,0 +1,15 @@ +// TODO: Port full Surgery sterility system from wega if surgery infection mechanics are desired. +// Currently this is a stub component to allow clothing prototypes to load. +// The full system is in ss14-wega: Content.Server/_Wega/Surgery/SurgerySystem.Sterility.cs + +namespace Content.Shared.Surgery.Components; + +/// +/// Clothing component that provides a sterility modifier for surgery. +/// +[RegisterComponent] +public sealed partial class ClothingSterilityComponent : Component +{ + [DataField("modifier")] + public float Modifier = 1f; +}