2023-07-03 17:35:57 -04:00
|
|
|
|
namespace Content.Shared.Anomaly.Effects.Components;
|
2023-01-17 00:05:20 -05:00
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
public sealed class PyroclasticAnomalyComponent : Component
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The maximum distance from which you can be ignited by the anomaly.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataField("maximumIgnitionRadius")]
|
2023-07-03 17:35:57 -04:00
|
|
|
|
public float MaximumIgnitionRadius = 5f;
|
2023-01-17 00:05:20 -05:00
|
|
|
|
}
|