* The only commit that matters * I had to stop playing with my cat to push this change * Yaml removal * Proper drunk status effect and remove shitcode * Review changes * whoops * Whoops x2 * Update master fix merge conflicts * Fix merge conflicts * Dunk Component kill * MORE RELAYS * Holy fucking breaking changes * Ough * 46 file diff * Fix bad commits * Erm what the test fail? * Fix those last two * Merge conflicts * Me when I fix the merge conflicts --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com>
31 lines
862 B
C#
31 lines
862 B
C#
namespace Content.Server.Speech.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed partial class StutteringAccentComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Percentage chance that a stutter will occur if it matches.
|
|
/// </summary>
|
|
[DataField]
|
|
public float MatchRandomProb = 0.8f;
|
|
|
|
/// <summary>
|
|
/// Percentage chance that a stutter occurs f-f-f-f-four times.
|
|
/// </summary>
|
|
[DataField]
|
|
public float FourRandomProb = 0.1f;
|
|
|
|
/// <summary>
|
|
/// Percentage chance that a stutter occurs t-t-t-three times.
|
|
/// </summary>
|
|
[DataField]
|
|
public float ThreeRandomProb = 0.2f;
|
|
|
|
/// <summary>
|
|
/// Percentage chance that a stutter cut off.
|
|
/// </summary>
|
|
[DataField]
|
|
public float CutRandomProb = 0.05f;
|
|
}
|
|
}
|