fish-station/Content.Shared/_Starlight/Medical/Items/Components/PatchComponent.cs
Vigers Ray b52f640b5a
Порт стрельбы со старлайна (#2640)
Co-authored-by: KaiserMaus <kaiser.ratte@gmail.com>
2025-08-08 22:25:02 +03:00

29 lines
No EOL
807 B
C#

using Robust.Shared.Audio;
namespace Content.Shared.Starlight.Medical.Items.Components;
[RegisterComponent]
public sealed partial class PatchComponent : Component
{
[DataField]
public string SolutionContainer = "patch";
/// <summary>
/// How long it takes to apply patch.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("delay")]
public float Delay = 3f;
/// <summary>
/// Sound played on apply begin
/// </summary>
[DataField("healingBeginSound")]
public SoundSpecifier? ApplyBeginSound = null;
/// <summary>
/// Sound played on apply end
/// </summary>
[DataField("healingEndSound")]
public SoundSpecifier? ApplyEndSound = null;
}