2022-06-23 05:19:32 -07:00
|
|
|
|
using Content.Shared.Actions;
|
|
|
|
|
|
|
2023-09-08 18:16:05 -07:00
|
|
|
|
namespace Content.Shared.Magic.Events;
|
2022-06-23 05:19:32 -07:00
|
|
|
|
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class SmiteSpellEvent : EntityTargetActionEvent, ISpeakSpell
|
2022-06-23 05:19:32 -07:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Should this smite delete all parts/mechanisms gibbed except for the brain?
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataField("deleteNonBrainParts")]
|
|
|
|
|
|
public bool DeleteNonBrainParts = true;
|
2023-04-26 16:04:44 +12:00
|
|
|
|
|
|
|
|
|
|
[DataField("speech")]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public string? Speech { get; private set; }
|
2022-06-23 05:19:32 -07:00
|
|
|
|
}
|