using Content.Shared.Language.Components.Translators; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Shared.Language.Components; /// /// An implant that allows the implantee to speak and understand other languages. /// [RegisterComponent] public sealed partial class TranslatorImplantComponent : BaseTranslatorComponent { /// /// Whether the implantee knows the languages necessary to speak using this implant. /// public bool SpokenRequirementSatisfied = false; /// /// Whether the implantee knows the languages necessary to understand translations of this implant. /// public bool UnderstoodRequirementSatisfied = false; }