2022-11-17 18:10:45 -05:00
|
|
|
|
namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Artifact that ignites surrounding entities when triggered.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class IgniteArtifactComponent : Component
|
2022-11-17 18:10:45 -05:00
|
|
|
|
{
|
|
|
|
|
|
[DataField("range")]
|
|
|
|
|
|
public float Range = 2f;
|
|
|
|
|
|
|
|
|
|
|
|
[DataField("minFireStack")]
|
|
|
|
|
|
public int MinFireStack = 2;
|
|
|
|
|
|
|
|
|
|
|
|
[DataField("maxFireStack")]
|
|
|
|
|
|
public int MaxFireStack = 5;
|
|
|
|
|
|
}
|