mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
23 lines
632 B
C#
23 lines
632 B
C#
using Content.Shared.Alert;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.StatusEffect
|
|
{
|
|
[Prototype("statusEffect")]
|
|
public sealed class StatusEffectPrototype : IPrototype
|
|
{
|
|
[IdDataFieldAttribute]
|
|
public string ID { get; } = default!;
|
|
|
|
[DataField("alert")]
|
|
public AlertType? Alert { get; }
|
|
|
|
/// <summary>
|
|
/// Whether a status effect should be able to apply to any entity,
|
|
/// regardless of whether it is in ALlowedEffects or not.
|
|
/// </summary>
|
|
[DataField("alwaysAllowed")]
|
|
public bool AlwaysAllowed { get; }
|
|
}
|
|
}
|