funny sword (#15)

(cherry picked from commit 231aaa1b33b7e4edf00506c6ebdbd389257cf1ca)
This commit is contained in:
BIGZi0348
2024-09-28 21:45:59 +03:00
committed by keslik
parent 473c5d7e1a
commit e4cbf59734
5 changed files with 146 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
using Robust.Shared.Audio;
namespace Content.Server._White._Engi.PacifiedOnChaplainAction
{
/// <summary>
/// Adds verb for chaplain to pacify entity.
/// WD Engi Exclusive.
/// </summary>
[RegisterComponent]
public sealed partial class PacifiedOnChaplainActionComponent : Component
{
[DataField]
public SoundSpecifier ActionSound = new SoundPathSpecifier("/Audio/Effects/holy.ogg");
}
}