15 lines
402 B
C#
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
|
|
}
|