16 lines
396 B
C#
16 lines
396 B
C#
using Content.Shared.Actions;
|
|
|
|
namespace Content.Shared.Magic.Events;
|
|
|
|
public sealed partial class MindSwapSpellEvent : EntityTargetActionEvent, ISpeakSpell
|
|
{
|
|
[DataField]
|
|
public TimeSpan PerformerStunDuration = TimeSpan.FromSeconds(10);
|
|
|
|
[DataField]
|
|
public TimeSpan TargetStunDuration = TimeSpan.FromSeconds(10);
|
|
|
|
[DataField]
|
|
public string? Speech { get; private set; }
|
|
}
|