13 lines
347 B
C#
13 lines
347 B
C#
using Content.Shared.Actions;
|
|
|
|
namespace Content.Server.Magic.Events;
|
|
|
|
public sealed class SmiteSpellEvent : EntityTargetActionEvent
|
|
{
|
|
/// <summary>
|
|
/// Should this smite delete all parts/mechanisms gibbed except for the brain?
|
|
/// </summary>
|
|
[DataField("deleteNonBrainParts")]
|
|
public bool DeleteNonBrainParts = true;
|
|
}
|