2024-07-28 16:54:32 +00:00
|
|
|
namespace Content.Server._White.Cult.Items.Components;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2024-07-30 00:12:49 +00:00
|
|
|
public sealed partial class CultStunHandComponent : BaseMagicHandComponent
|
2024-07-28 16:54:32 +00:00
|
|
|
{
|
|
|
|
|
[DataField]
|
|
|
|
|
public TimeSpan Duration = TimeSpan.FromSeconds(16);
|
|
|
|
|
|
|
|
|
|
[DataField]
|
|
|
|
|
public TimeSpan MuteDuration = TimeSpan.FromSeconds(12);
|
|
|
|
|
|
|
|
|
|
[DataField]
|
2024-08-11 10:55:01 +00:00
|
|
|
public float PentagramDurationMultiplier = 0.1f;
|
2024-07-28 16:54:32 +00:00
|
|
|
}
|