Files
tbd-station-14/Content.Server/Speech/Components/SkeletonAccentComponent.cs
2022-10-22 15:40:28 -07:00

15 lines
402 B
C#

namespace Content.Server.Speech.Components;
/// <summary>
/// Rattle me bones!
/// </summary>
[RegisterComponent]
public sealed class SkeletonAccentComponent : Component
{
/// <summary>
/// Chance that the message will be appended with "ACK ACK!"
/// </summary>
[DataField("ackChance")]
public float ackChance = 0.3f; // Funnier if it doesn't happen every single time
}