using Content.Server.StationEvents.Events; namespace Content.Server.StationEvents.Components; [RegisterComponent] public sealed partial class AirlockVirusRuleComponent : Component { /// /// The minimum amount of time in seconds before each infected door is self-emagged. /// [DataField] public int MinimumTimeToEmag = 30; /// /// The maximum amount of time in seconds before each infected door is self-emagged. /// [DataField] public int MaximumTimeToEmag = 120; }