17 lines
497 B
C#
17 lines
497 B
C#
using Robust.Shared.Audio;
|
|
|
|
namespace Content.Server.GameTicking.Rules.Components;
|
|
|
|
/// <summary>
|
|
/// This is used for tagging a mob as a nuke operative.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class NukeOperativeComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Path to antagonist alert sound.
|
|
/// </summary>
|
|
[DataField("greetSoundNotification")]
|
|
public SoundSpecifier GreetSoundNotification = new SoundPathSpecifier("/Audio/Ambience/Antag/nukeops_start.ogg");
|
|
}
|