Files
OldThink/Content.Server/_White/Wizard/Magic/Other/VariableUseDelayComponent.cs
Aviu00 4fde7aedee Маг (#336)
* GameRule, a lot of prototypes and FTL pending

* some protos

* - add: Magic additions, tweaks and bugfixes.

* - add: Wizard gamerule.

* - tweak: Do not call shuttle.

---------

Co-authored-by: melano <92106367+melanoTurbo@users.noreply.github.com>
2024-06-07 16:02:23 +00:00

15 lines
372 B
C#

namespace Content.Server._White.Wizard.Magic.Other;
[RegisterComponent]
public sealed partial class VariableUseDelayComponent : Component
{
[DataField]
public TimeSpan UseDelay = TimeSpan.FromSeconds(6);
[DataField]
public TimeSpan AltUseDelay = TimeSpan.FromSeconds(12);
[DataField]
public TimeSpan ChargeUseDelay = TimeSpan.FromSeconds(40);
}