Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added more 8ball commands. #419

Merged
merged 4 commits into from
Oct 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions CompatBot/Commands/Misc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,26 +18,29 @@ internal sealed class Misc: BaseCommandModuleCustom

private static readonly List<string> EightBallAnswers = new List<string>
{
// 29
// 37
"Ya fo sho", "Fo shizzle mah nizzle", "Yuuuup", "Da", "Affirmative", // 5
"Sure", "Yeah, why not", "Most likely", "Sim", "Oui",
"Heck yeah!", "Roger that", "Aye!", "Yes without a doubt m8!", "<:cell_ok_hand:324618647857397760>",
"Don't be an idiot. YES.", "Mhm!", "Many Yes", "Yiss", "Sir, yes, Sir!",
"Yah!", "Ja", "Umu!", "Make it so", "Sure thing",
"Certainly", "Of course", "Definitely", "Indeed",
"Certainly", "Of course", "Definitely", "Indeed", "Much yes",
"Consider it done", "Totally", "You bet", "Yup", "Yep",
"Certainly", "Yarp",

// 20
"Maybe", "I don't know", "I don't care", "Who cares", "Maybe yes, maybe not",
"Maybe not, maybe yes", "Ugh", "Probably", "Ask again later", "Error 404: answer not found",
"Don't ask me that again", "You should think twice before asking", "You what now?", "Ask Neko", "Ask Ani",
"Bloody hell, answering that ain't so easy", "I'm pretty sure that's illegal!", "What do *you* think?", "Only on Wednesdays", "Look in the mirror, you know the answer already",

// 24
// 29
"Nah mate", "Nope", "Njet", "Of course not", "Seriously no",
"Noooooooooo", "Most likely not", "Não", "Non", "Hell no",
"Absolutely not", "Nuh-uh!", "Nyet!", "Negatory!", "Heck no",
"Nein!", "I think not", "I'm afraid not", "Nay", "Yesn't",
"No way", "Certainly not", "I must say no", "Nah",
"No way", "Certainly not", "I must say no", "Nah", "Negative",
"Definitely not", "No way, Jose", "Not today", "Narp",
};

private static readonly List<string> EightBallTimeUnits = new List<string>
Expand Down