public string SpongeFeels() { var i = _rnd.Next(10); var verb = i % 3 == 0 ? "love" : i % 3 == 1 ? "am ambivalent towards" : "hate"; return($"sponge: i {verb} {_spongeFileIndex.GetRandomLine()}"); }
public string LilPPHates() { return($"LilPP: i hate {_ppLFileIndex.GetRandomLine()}"); }
public string SaySaxon() { return(_fileIndex.GetRandomLine()); }