67 lines
2.3 KiB
C#
67 lines
2.3 KiB
C#
using Content.Shared.Damage;
|
|
using Content.Shared.Damage.Prototypes;
|
|
using Robust.Shared.Audio;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List;
|
|
|
|
namespace Content.Server.Medical.Components
|
|
{
|
|
/// <summary>
|
|
/// Applies a damage change to the target when used in an interaction.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class HealingComponent : Component
|
|
{
|
|
[DataField("damage", required: true)]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public DamageSpecifier Damage = default!;
|
|
|
|
/// <remarks>
|
|
/// This should generally be negative,
|
|
/// since you're, like, trying to heal damage.
|
|
/// </remarks>
|
|
[DataField("bloodlossModifier")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float BloodlossModifier = 0.0f;
|
|
|
|
/// <summary>
|
|
/// Restore missing blood.
|
|
/// </summary>
|
|
[DataField("ModifyBloodLevel")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float ModifyBloodLevel = 0.0f;
|
|
|
|
/// <remarks>
|
|
/// The supported damage types are specified using a <see cref="DamageContainerPrototype"/>s. For a
|
|
/// HealingComponent this filters what damage container type this component should work on. If null,
|
|
/// all damage container types are supported.
|
|
/// </remarks>
|
|
[DataField("damageContainers", customTypeSerializer: typeof(PrototypeIdListSerializer<DamageContainerPrototype>))]
|
|
public List<string>? DamageContainers;
|
|
|
|
/// <summary>
|
|
/// How long it takes to apply the damage.
|
|
/// </summary>
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[DataField("delay")]
|
|
public float Delay = 3f;
|
|
|
|
/// <summary>
|
|
/// Delay multiplier when healing yourself.
|
|
/// </summary>
|
|
[DataField("selfHealPenaltyMultiplier")]
|
|
public float SelfHealPenaltyMultiplier = 3f;
|
|
|
|
/// <summary>
|
|
/// Sound played on healing begin
|
|
/// </summary>
|
|
[DataField("healingBeginSound")]
|
|
public SoundSpecifier? HealingBeginSound = null;
|
|
|
|
/// <summary>
|
|
/// Sound played on healing end
|
|
/// </summary>
|
|
[DataField("healingEndSound")]
|
|
public SoundSpecifier? HealingEndSound = null;
|
|
}
|
|
}
|