using Content.Server.StationEvents.Events; using Content.Server.AlertLevel; using Robust.Shared.Prototypes; namespace Content.Server.StationEvents.Components; [RegisterComponent, Access(typeof(AlertLevelInterceptionRule))] public sealed partial class AlertLevelInterceptionRuleComponent : Component { /// /// Alert level to set the station to when the event starts. /// [DataField] public string AlertLevel = "blue"; }