16 lines
422 B
C#
16 lines
422 B
C#
using Robust.Shared.Audio;
|
|
|
|
namespace Content.Server._White._Engi.PacifiedOnChaplainAction
|
|
{
|
|
/// <summary>
|
|
/// WD.
|
|
/// Adds verb for chaplain to pacify entity.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class PacifiedOnChaplainActionComponent : Component
|
|
{
|
|
[DataField]
|
|
public SoundSpecifier ActionSound = new SoundPathSpecifier("/Audio/Effects/holy.ogg");
|
|
}
|
|
}
|