13 lines
318 B
C#
13 lines
318 B
C#
using Content.Shared.Actions;
|
|
|
|
namespace Content.Shared.Magic.Events;
|
|
|
|
public sealed partial class MindSwapSpellEvent : EntityTargetActionEvent
|
|
{
|
|
[DataField]
|
|
public TimeSpan PerformerStunDuration = TimeSpan.FromSeconds(10);
|
|
|
|
[DataField]
|
|
public TimeSpan TargetStunDuration = TimeSpan.FromSeconds(10);
|
|
}
|