2024-01-28 18:37:24 +07:00
|
|
|
namespace Content.Shared._White.Cult.Components;
|
2024-01-27 15:19:52 +03:00
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed partial class CultBuffComponent : Component
|
|
|
|
|
{
|
2024-06-12 16:00:45 +00:00
|
|
|
[ViewVariables(VVAccess.ReadOnly), DataField]
|
2024-06-26 11:56:29 +00:00
|
|
|
public TimeSpan BuffTime = TimeSpan.FromSeconds(20);
|
2024-01-27 15:19:52 +03:00
|
|
|
|
2024-06-12 16:00:45 +00:00
|
|
|
[ViewVariables(VVAccess.ReadOnly), DataField]
|
2024-06-26 11:56:29 +00:00
|
|
|
public TimeSpan StartingBuffTime = TimeSpan.FromSeconds(20);
|
2024-06-12 16:00:45 +00:00
|
|
|
|
|
|
|
|
[ViewVariables(VVAccess.ReadOnly), DataField]
|
2024-06-26 11:56:29 +00:00
|
|
|
public TimeSpan BuffLimit = TimeSpan.FromSeconds(10);
|
2024-06-12 16:00:45 +00:00
|
|
|
|
2024-01-27 15:19:52 +03:00
|
|
|
public static float NearbyTilesBuffRadius = 1f;
|
|
|
|
|
|
2024-06-12 16:00:45 +00:00
|
|
|
public static readonly TimeSpan CultTileBuffTime = TimeSpan.FromSeconds(1);
|
2024-01-27 15:19:52 +03:00
|
|
|
}
|