using Content.Shared.Alert; using Robust.Shared.Prototypes; namespace Content.Shared.StatusEffect { [Prototype("statusEffect")] public sealed class StatusEffectPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; [DataField("alert")] public AlertType? Alert { get; } /// /// Whether a status effect should be able to apply to any entity, /// regardless of whether it is in ALlowedEffects or not. /// [DataField("alwaysAllowed")] public bool AlwaysAllowed { get; } } }