namespace Content.Server.Silicon.BlindHealing;
[RegisterComponent]
public sealed partial class BlindHealingComponent : Component
{
[DataField]
public int DoAfterDelay = 3;
///
/// A multiplier that will be applied to the above if an entity is repairing themselves.
///
[DataField]
public float SelfHealPenalty = 3f;
///
/// Whether or not an entity is allowed to repair itself.
///
[DataField]
public bool AllowSelfHeal = true;
[DataField(required: true)]
public List DamageContainers;
}