54 lines
1.8 KiB
C#
54 lines
1.8 KiB
C#
namespace Content.Shared.Anomaly.Effects.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed class GravityAnomalyComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The maximumum size the GravityWellComponent MaxRange can be.
|
|
/// Is scaled linearly with stability.
|
|
/// </summary>
|
|
[DataField("maxGravityWellRange"), ViewVariables(VVAccess.ReadWrite)]
|
|
public float MaxGravityWellRange = 8f;
|
|
|
|
/// <summary>
|
|
/// The maximum distance from which the anomaly
|
|
/// can throw you via a pulse.
|
|
/// </summary>
|
|
[DataField("maxThrowRange"), ViewVariables(VVAccess.ReadWrite)]
|
|
public float MaxThrowRange = 5f;
|
|
|
|
/// <summary>
|
|
/// The maximum strength the anomaly
|
|
/// can throw you via a pulse
|
|
/// </summary>
|
|
[DataField("maxThrowStrength"), ViewVariables(VVAccess.ReadWrite)]
|
|
public float MaxThrowStrength = 10;
|
|
|
|
/// <summary>
|
|
/// The maximum Intensity of the RadiationSourceComponent.
|
|
/// Is scaled linearly with stability.
|
|
/// </summary>
|
|
[DataField("maxRadiationIntensity"), ViewVariables(VVAccess.ReadWrite)]
|
|
public float MaxRadiationIntensity = 3f;
|
|
|
|
/// <summary>
|
|
/// The minimum acceleration value for GravityWellComponent
|
|
/// Is scaled linearly with stability.
|
|
/// </summary>
|
|
[DataField("minAccel"), ViewVariables(VVAccess.ReadWrite)]
|
|
public float MinAccel = 1f;
|
|
|
|
/// <summary>
|
|
/// The maximum acceleration value for GravityWellComponent
|
|
/// Is scaled linearly with stability.
|
|
/// </summary>
|
|
[DataField("maxAccel"), ViewVariables(VVAccess.ReadWrite)]
|
|
public float MaxAccel = 5f;
|
|
|
|
/// <summary>
|
|
/// The range around the anomaly that will be spaced on supercritical.
|
|
/// </summary>
|
|
[DataField("spaceRange"), ViewVariables(VVAccess.ReadWrite)]
|
|
public float SpaceRange = 3f;
|
|
}
|