IgniteArtifactComponent.cs 445 B

1234567891011121314151617
  1. namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components;
  2. /// <summary>
  3. /// Artifact that ignites surrounding entities when triggered.
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class IgniteArtifactComponent : Component
  7. {
  8. [DataField("range")]
  9. public float Range = 2f;
  10. [DataField("minFireStack")]
  11. public int MinFireStack = 2;
  12. [DataField("maxFireStack")]
  13. public int MaxFireStack = 5;
  14. }