6
2026-01-24 12:49:55 +03:00

17 lines
505 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Xenoarchaeology.Artifact.XAE.Components;
/// <summary>
/// This is used for using the "knock" spell when the artifact is activated
/// </summary>
[RegisterComponent, Access(typeof(XAEKnockSystem)), NetworkedComponent, AutoGenerateComponentState]
public sealed partial class XAEKnockComponent : Component
{
/// <summary>
/// The range of the spell
/// </summary>
[DataField, AutoNetworkedField]
public float KnockRange = 4f;
}