2024-02-01 07:29:01 -06:00
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
namespace Content.Shared.Flash.Components;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Upon being triggered will flash in an area around it.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
|
|
|
public sealed partial class FlashOnTriggerComponent : Component
|
|
|
|
|
{
|
|
|
|
|
[DataField] public float Range = 1.0f;
|
|
|
|
|
[DataField] public float Duration = 8.0f;
|
2024-07-14 12:26:54 +00:00
|
|
|
[DataField] public float Probability = 1.0f;
|
2024-08-01 17:49:56 +00:00
|
|
|
[DataField] public float StunTime; // WD
|
|
|
|
|
[DataField] public float KnockdownTime; // WD
|
2024-02-01 07:29:01 -06:00
|
|
|
}
|