Files
tbd-station-14/Content.Shared/StatusEffect/StatusEffectPrototype.cs
2022-04-03 02:01:22 +02:00

24 lines
686 B
C#

using Content.Shared.Alert;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.Manager.Attributes;
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; }
}
}