SmiteSpellEvent.cs 443 B

12345678910111213141516
  1. using Content.Shared.Actions;
  2. namespace Content.Shared.Magic.Events;
  3. public sealed partial class SmiteSpellEvent : EntityTargetActionEvent, ISpeakSpell
  4. {
  5. // TODO: Make part of gib method
  6. /// <summary>
  7. /// Should this smite delete all parts/mechanisms gibbed except for the brain?
  8. /// </summary>
  9. [DataField]
  10. public bool DeleteNonBrainParts = true;
  11. [DataField]
  12. public string? Speech { get; private set; }
  13. }