Thief stuff (#480)

* - add: Thief stuff.

* - fix: Implants.

* - add: Jammer.
This commit is contained in:
Aviu00
2024-07-22 14:20:05 +00:00
committed by GitHub
parent c0772fa89a
commit f82eee75b0
17 changed files with 122 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
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;
@@ -17,4 +18,7 @@ public sealed partial class EmagComponent : Component
[DataField("emagImmuneTag", customTypeSerializer: typeof(PrototypeIdSerializer<TagPrototype>)), ViewVariables(VVAccess.ReadWrite)]
[AutoNetworkedField]
public string EmagImmuneTag = "EmagImmune";
[DataField]
public EntityWhitelist? Whitelist;
}