15 lines
512 B
C#
15 lines
512 B
C#
using Content.Shared.FixedPoint;
|
|
|
|
namespace Content.Shared._Offbrand.StatusEffects;
|
|
|
|
[RegisterComponent]
|
|
[Access(typeof(ModifyBrainOxygenDepletionChanceStatusEffectSystem))]
|
|
public sealed partial class ModifyBrainOxygenDepletionChanceStatusEffectComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Thresholds for how much to modify the chance of depleting oxygen. Lowest selected.
|
|
/// </summary>
|
|
[DataField(required: true)]
|
|
public SortedDictionary<FixedPoint2, double> OxygenationModifierThresholds;
|
|
}
|