22 lines
592 B
C#
22 lines
592 B
C#
using Content.Shared.Actions;
|
|
using Content.Shared.Chat.Prototypes;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Magic.Events;
|
|
|
|
public sealed partial class VoidApplauseSpellEvent : EntityTargetActionEvent
|
|
{
|
|
/// <summary>
|
|
/// Emote to use.
|
|
/// </summary>
|
|
[DataField]
|
|
public ProtoId<EmotePrototype> Emote = "ClapSingle";
|
|
|
|
/// <summary>
|
|
/// Visual effect entity that is spawned at both the user's and the target's location.
|
|
/// </summary>
|
|
[DataField]
|
|
public EntProtoId Effect = "EffectVoidBlink";
|
|
}
|