Files
tbd-station-14/Content.Server/Magic/Events/TeleportSpellEvent.cs
2022-07-29 12:13:12 +10:00

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;
}