mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-26 18:17:12 +03:00
23 lines
560 B
C#
23 lines
560 B
C#
using Content.Shared.Standing;
|
|
|
|
|
|
namespace Content.Server._White.Knockdown;
|
|
|
|
public abstract partial class BaseKnockdownOnComponent : Component
|
|
{
|
|
[DataField]
|
|
public TimeSpan Delay = TimeSpan.FromSeconds(2);
|
|
|
|
[DataField]
|
|
public TimeSpan KnockdownTime = TimeSpan.FromSeconds(5);
|
|
|
|
[DataField]
|
|
public DropHeldItemsBehavior DropHeldItemsBehavior = DropHeldItemsBehavior.DropIfStanding;
|
|
|
|
[DataField]
|
|
public TimeSpan JitterTime = TimeSpan.FromSeconds(15);
|
|
|
|
[DataField]
|
|
public TimeSpan StutterTime = TimeSpan.FromSeconds(15);
|
|
}
|