* - add: Meatspike changes. * - fix: Fix socks. * - remove: No light status. * - tweak: Raptor tweak. * - fix: Fix exception. * - remove: Remove unsexed. * - tweak: Crossbow tweak. * - add: More meatspike. * - tweak: Nerf buff rune. * - tweak: No throwing during incorporeal. * - add: Incorporeal magic cooldown.
19 lines
598 B
C#
19 lines
598 B
C#
namespace Content.Shared._White.Cult.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class CultBuffComponent : Component
|
|
{
|
|
[ViewVariables(VVAccess.ReadOnly), DataField]
|
|
public TimeSpan BuffTime = TimeSpan.FromSeconds(20);
|
|
|
|
[ViewVariables(VVAccess.ReadOnly), DataField]
|
|
public TimeSpan StartingBuffTime = TimeSpan.FromSeconds(20);
|
|
|
|
[ViewVariables(VVAccess.ReadOnly), DataField]
|
|
public TimeSpan BuffLimit = TimeSpan.FromSeconds(10);
|
|
|
|
public static float NearbyTilesBuffRadius = 1f;
|
|
|
|
public static readonly TimeSpan CultTileBuffTime = TimeSpan.FromSeconds(1);
|
|
}
|