36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using Content.Shared.Emag.Systems;
|
|
using Content.Shared.Tag;
|
|
using Content.Shared.Whitelist;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Emag.Components;
|
|
|
|
[Access(typeof(EmagSystem))]
|
|
[RegisterComponent, NetworkedComponent]
|
|
[AutoGenerateComponentState]
|
|
public sealed partial class EmagComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The tag that marks an entity as immune to emags
|
|
/// </summary>
|
|
[DataField("emagImmuneTag", customTypeSerializer: typeof(PrototypeIdSerializer<TagPrototype>)), ViewVariables(VVAccess.ReadWrite)]
|
|
[AutoNetworkedField]
|
|
public string EmagImmuneTag = "EmagImmune";
|
|
|
|
// DeltaV - Add a whitelist/blacklist to the Emag
|
|
/// <summary>
|
|
/// Whitelist that entities must be on to work.
|
|
/// </summary>
|
|
[DataField]
|
|
public EntityWhitelist? Whitelist;
|
|
|
|
/// <summary>
|
|
/// Blacklist that entities must be off to work.
|
|
/// </summary>
|
|
[DataField]
|
|
public EntityWhitelist? Blacklist;
|
|
// End of DeltaV code
|
|
}
|