namespace Content.Shared.Strip.Components; /// /// Give this to an entity when you want to decrease stripping times /// [RegisterComponent] public sealed partial class ThievingComponent : Component { /// /// How much the strip time should be shortened by /// [ViewVariables(VVAccess.ReadWrite)] [DataField("stripTimeReduction")] public TimeSpan StripTimeReduction = TimeSpan.FromSeconds(0.5f); /// /// Should it notify the user if they're stripping a pocket? /// [ViewVariables(VVAccess.ReadWrite)] [DataField("stealthy")] public bool Stealthy; }