Skeleton Accents (#11805)

This commit is contained in:
Willhelm53
2022-10-22 17:40:28 -05:00
committed by GitHub
parent c173294048
commit 1a1e72063a
5 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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
}