16 lines
443 B
C#
16 lines
443 B
C#
using Content.Shared.Actions;
|
|
|
|
namespace Content.Shared.Magic.Events;
|
|
|
|
public sealed partial class SmiteSpellEvent : EntityTargetActionEvent, ISpeakSpell
|
|
{
|
|
/// <summary>
|
|
/// Should this smite delete all parts/mechanisms gibbed except for the brain?
|
|
/// </summary>
|
|
[DataField("deleteNonBrainParts")]
|
|
public bool DeleteNonBrainParts = true;
|
|
|
|
[DataField("speech")]
|
|
public string? Speech { get; private set; }
|
|
}
|