namespace Content.Server.Vocalization.Components;
/// <summary>
/// Makes an entity able to vocalize through an equipped radio
/// </summary>
[RegisterComponent]
public sealed partial class RadioVocalizerComponent : Component
{
/// chance the vocalizing entity speaks on the radio.
[DataField]
public float RadioAttemptChance = 0.6f;
}