CritMobActions.cs 610 B

123456789101112131415161718192021222324
  1. using Content.Shared.Actions;
  2. namespace Content.Shared.Mobs;
  3. /// <summary>
  4. /// Only applies to mobs in crit capable of ghosting/succumbing
  5. /// </summary>
  6. public sealed partial class CritSuccumbEvent : InstantActionEvent
  7. {
  8. }
  9. /// <summary>
  10. /// Only applies/has functionality to mobs in crit that have <see cref="DeathgaspComponent"/>
  11. /// </summary>
  12. public sealed partial class CritFakeDeathEvent : InstantActionEvent
  13. {
  14. }
  15. /// <summary>
  16. /// Only applies to mobs capable of speaking, as a last resort in crit
  17. /// </summary>
  18. public sealed partial class CritLastWordsEvent : InstantActionEvent
  19. {
  20. }