Files
tbd-station-14/Content.Shared/Magic/Events/SmiteSpellEvent.cs

14 lines
362 B
C#

using Content.Shared.Actions;
namespace Content.Shared.Magic.Events;
public sealed partial class SmiteSpellEvent : EntityTargetActionEvent
{
// TODO: Make part of gib method
/// <summary>
/// Should this smite delete all parts/mechanisms gibbed except for the brain?
/// </summary>
[DataField]
public bool DeleteNonBrainParts = true;
}