KnockArtifactComponent.cs 403 B

1234567891011121314
  1. namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components;
  2. /// <summary>
  3. /// This is used for using the "knock" spell when the artifact is activated
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class KnockArtifactComponent : Component
  7. {
  8. /// <summary>
  9. /// The range of the spell
  10. /// </summary>
  11. [DataField("knockRange")]
  12. public float KnockRange = 4f;
  13. }