Files
tbd-station-14/Content.Server/Vocalization/Components/RadioVocalizerComponent.cs
Crude Oil dac2537f9c Buff parrot learn rates and radio chatter (#38984)
* buff parrots

* ok but not that smart

* oop
2025-07-14 09:55:27 -07:00

15 lines
386 B
C#

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