Files
crystall-punk-14/Content.Server/Morgue/Components/CrematoriumComponent.cs

23 lines
728 B
C#
Raw Permalink Normal View History

2022-07-29 14:13:12 +12:00
using Robust.Shared.Audio;
2022-07-13 19:11:59 -04:00
namespace Content.Server.Morgue.Components;
[RegisterComponent]
public sealed partial class CrematoriumComponent : Component
2022-07-13 19:11:59 -04:00
{
/// <summary>
/// The time it takes to cook in second
2022-07-13 19:11:59 -04:00
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
public int CookTime = 5;
2022-07-13 19:11:59 -04:00
[DataField("cremateStartSound")]
public SoundSpecifier CremateStartSound = new SoundPathSpecifier("/Audio/Items/Lighters/lighter1.ogg");
2022-07-13 19:11:59 -04:00
[DataField("crematingSound")]
public SoundSpecifier CrematingSound = new SoundPathSpecifier("/Audio/Effects/burning.ogg");
[DataField("cremateFinishSound")]
public SoundSpecifier CremateFinishSound = new SoundPathSpecifier("/Audio/Machines/ding.ogg");
}