2022-05-29 02:29:10 -04:00
|
|
|
|
using Content.Shared.Actions;
|
2022-07-29 14:13:12 +12:00
|
|
|
|
using Robust.Shared.Audio;
|
2022-05-29 02:29:10 -04:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Magic.Events;
|
|
|
|
|
|
|
|
|
|
|
|
public sealed class TeleportSpellEvent : WorldTargetActionEvent
|
|
|
|
|
|
{
|
|
|
|
|
|
[DataField("blinkSound")]
|
|
|
|
|
|
public SoundSpecifier BlinkSound = new SoundPathSpecifier("/Audio/Magic/blink.ogg");
|
2022-06-19 14:07:00 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Volume control for the spell.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataField("blinkVolume")]
|
|
|
|
|
|
public float BlinkVolume = 5f;
|
2022-05-29 02:29:10 -04:00
|
|
|
|
}
|