public List <DialogueChoiceOption> GetMurderWeapons(bool ensureOneLiving = false)
 {
     return(ProfileLibrary.GetFourProfiles(ensureOneLiving).Select <Profile, DialogueChoiceOption>(
                profile => { return new DialogueChoiceOption(profile.profileID, new StoryText(profile.profileID, "w:0", null, null, new List <string>()
         {
             profile.preferredTool
         })); }
                ).ToList());
 }