Files
tbd-station-14/Content.Shared/Nutrition/Components/CreamPieComponent.cs
2022-07-29 12:13:12 +10:00

22 lines
589 B
C#

using Content.Shared.Nutrition.EntitySystems;
using Robust.Shared.Audio;
namespace Content.Shared.Nutrition.Components
{
[Access(typeof(SharedCreamPieSystem))]
[RegisterComponent]
public sealed class CreamPieComponent : Component
{
[ViewVariables]
[DataField("paralyzeTime")]
public float ParalyzeTime { get; } = 1f;
[ViewVariables]
[DataField("sound")]
public SoundSpecifier Sound { get; } = new SoundCollectionSpecifier("desecration");
[ViewVariables]
public bool Splatted { get; set; } = false;
}
}