18 lines
431 B
C#
18 lines
431 B
C#
using Content.Shared.Actions;
|
|
using Robust.Shared.Audio;
|
|
|
|
namespace Content.Server.Magic.Events;
|
|
|
|
public sealed class TeleportSpellEvent : WorldTargetActionEvent
|
|
{
|
|
[DataField("blinkSound")]
|
|
public SoundSpecifier BlinkSound = new SoundPathSpecifier("/Audio/Magic/blink.ogg");
|
|
|
|
|
|
/// <summary>
|
|
/// Volume control for the spell.
|
|
/// </summary>
|
|
[DataField("blinkVolume")]
|
|
public float BlinkVolume = 5f;
|
|
}
|