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]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class CrematoriumComponent : Component
|
2022-07-13 19:11:59 -04:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-09-19 19:59:04 -04:00
|
|
|
/// The time it takes to cook in second
|
2022-07-13 19:11:59 -04:00
|
|
|
/// </summary>
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
2022-09-19 19:59:04 -04:00
|
|
|
public int CookTime = 5;
|
2022-07-13 19:11:59 -04:00
|
|
|
|
|
|
|
|
[DataField("cremateStartSound")]
|
2023-12-28 00:47:35 +02:00
|
|
|
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");
|
|
|
|
|
}
|