2022-10-22 17:40:28 -05:00
|
|
|
|
namespace Content.Server.Speech.Components;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Rattle me bones!
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class SkeletonAccentComponent : Component
|
2022-10-22 17:40:28 -05:00
|
|
|
|
{
|
|
|
|
|
|
/// <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
|
|
|
|
|
|
}
|