namespace Content.Server.Traits.Assorted;
///
/// This is used for the Blood Deficiency trait.
///
[RegisterComponent]
public sealed partial class BloodDeficiencyComponent : Component
{
//
/// How much percentage of max blood volume should be removed in each update interval?
//
[DataField(required: true)]
public float BloodLossPercentage;
///
/// Whether the effects of this trait should be active.
///
[DataField]
public bool Active = true;
}