27 lines
1011 B
C#
27 lines
1011 B
C#
using System.Security.Cryptography;
|
|
|
|
namespace SquadBot.Providers;
|
|
|
|
public static class PhraseProvider
|
|
{
|
|
private static Random rng = new Random();
|
|
|
|
private static List<string> phrases = new List<string>()
|
|
{
|
|
"there is a new yapper in the voice chat.",
|
|
"someone is in the lobby, go irritate the shit out of them.",
|
|
"voice chat: Because typing is so last century.",
|
|
"come join the voice chat! If not we will talk about you.",
|
|
"join the voice chat. It's the only way to prove you're not a bot.",
|
|
"join the voice chat. We're not saying it'll be good, but it'll be something.",
|
|
"who needs friends in real life? Someone is in the voice chat!",
|
|
"someone is pretending to be productive in the voice chat.",
|
|
"the memes are better dubbed",
|
|
"voice chat's active. It's probably a disaster, but come anyway."
|
|
};
|
|
|
|
public static string GetYapperPhrase()
|
|
{
|
|
return phrases[rng.Next(0, phrases.Count)];
|
|
}
|
|
} |