Files
wwdpublic/Content.Shared/Magic/Events/TeleportSpellEvent.cs
Spatison 2a10c02eb5 No spead merge (#475)
* Revert "[GoobPort] WIZ REAL (#465)"

This reverts commit 091a8ff433.

* fix local
2025-04-26 10:50:32 +03:00

24 lines
655 B
C#

using Content.Shared.Actions;
using Content.Shared.Chat;
namespace Content.Shared.Magic.Events;
// TODO: Can probably just be an entity or something
public sealed partial class TeleportSpellEvent : WorldTargetActionEvent, ISpeakSpell
{
[DataField]
public string? Speech { get; private set; }
// TODO: Move to magic component
// TODO: Maybe not since sound specifier is a thing
// Keep here to remind what the volume was set as
/// <summary>
/// Volume control for the spell.
/// </summary>
[DataField]
public float BlinkVolume = 5f;
public InGameICChatType ChatType { get; } = InGameICChatType.Speak;
}