public void SetMother(TalentSpeaking talent, bool value)
        {
            MotherDicionary.Remove(talent);

            if (value)
            {
                MotherDicionary.Add(talent, value);
            }
        }
 public bool GetMother(TalentSpeaking talent)
 {
     MotherDicionary.TryGetValue(talent, out bool value);
     return(value);
 }