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