using Content.Shared.Anomaly; using Content.Shared.Anomaly.Components; using Content.Shared.DeviceLinking; using Robust.Shared.Audio; using Robust.Shared.Prototypes; namespace Content.Server.Anomaly.Components; /// /// a device that allows you to translate anomaly activity into multitool signals. /// [RegisterComponent, Access(typeof(AnomalySynchronizerSystem))] public sealed partial class AnomalySynchronizerComponent : Component { /// /// The uid of the anomaly to which the synchronizer is connected. /// [DataField, ViewVariables(VVAccess.ReadWrite)] public EntityUid? ConnectedAnomaly; [DataField] public ProtoId DecayingPort = "Decaying"; [DataField] public ProtoId StabilizePort = "Stabilize"; [DataField] public ProtoId GrowingPort = "Growing"; [DataField] public ProtoId PulsePort = "Pulse"; [DataField] public ProtoId SupercritPort = "Supercritical"; [DataField, ViewVariables(VVAccess.ReadWrite)] public SoundSpecifier ConnectedSound = new SoundPathSpecifier("/Audio/Machines/anomaly_sync_connect.ogg"); [DataField, ViewVariables(VVAccess.ReadWrite)] public SoundSpecifier DisconnectedSound = new SoundPathSpecifier("/Audio/Machines/anomaly_sync_connect.ogg"); }