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

Add more quotes for 8ball and rate commands #131

Merged
merged 3 commits into from
Nov 16, 2018
Merged
Changes from 1 commit
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
Next Next commit
Update Misc.cs
Added for 8ball:
 - 6 Confirmation quotes (16 - > 22)
 - 7 Negative quotes (11 -> 18)
Added a space between // and the number in 2nd 8ball comment

Added for Rate:
 - 4 Positive Quotes (40 -> 44)
 - 1 Negative Quote (25 -> 26)
  • Loading branch information
MsDarkLow authored Nov 15, 2018

Verified

This commit was signed with the committer’s verified signature.
achingbrain Alex Potsides
commit 05242bde300dd3ac6bfe0b180e5b47e3569523d6
18 changes: 11 additions & 7 deletions CompatBot/Commands/Misc.cs
Original file line number Diff line number Diff line change
@@ -19,27 +19,29 @@ internal sealed class Misc: BaseCommandModuleCustom

private static readonly List<string> EightBallAnswers = new List<string>
{
// 16
// 22
MsDarkLow marked this conversation as resolved.
Show resolved Hide resolved
"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.",
"Don't be an idiot. YES.", "Mhm!", "Many Yes", "Yiss", "Sir, yes, Sir!",
"Yah!", "Ja",
MsDarkLow marked this conversation as resolved.
Show resolved Hide resolved

//20
// 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",

// 11
// 18
"Nah mate", "Nope", "Njet", "Of course not", "Seriously no",
"Noooooooooo", "Most likely not", "Não", "Non", "Hell no",
"Absolutely not",
"Absolutely not", "Nuh-uh!", "Nyet!", "Negatory!", "Heck no",
"Nein!", "I think not", "I'm afraid not"
};

private static readonly List<string> RateAnswers = new List<string>
{
// 40
// 44
"Not so bad", "I likesss!", "Pretty good", "Guchi gud", "Amazing!",
"Glorious!", "Very good", "Excellent...", "Magnificent", "Rate bot says he likes, so you like too",
"If you reorganize the words it says \"pretty cool\"", "I approve", "<:morgana_sparkle:315899996274688001> やるじゃねーか!", "Not half bad 👍", "Belissimo!",
@@ -48,19 +50,21 @@ internal sealed class Misc: BaseCommandModuleCustom
"Not perfect, but ok", "So good!", "A lucky find!", "💯 approved", "I don't see any downsides",
"Here's my seal of approval 💮", "As good as it gets", "A benchmark to pursue", "Should make you warm and fuzzy inside", "Fabulous",
"Cool like a cup of good wine 🍷", "Magical ✨", "Wondrous like a unicorn 🦄", "Soothing sight for these tired eyes", "Lovely",
"So cute!", "It's so nice, I think about it every day!", ":blush: Never expected to be this pretty!", "It's overflowing with charm!",
MsDarkLow marked this conversation as resolved.
Show resolved Hide resolved

// 20
"Ask MsLow", "Could be worse", "I need more time to think about it", "It's ok, nothing and no one is perfect", "🆗",
"You already know, my boi", "Unexpected like a bouquet of sunflowers 🌻", "Hard to measure precisely...", "Requires more data to analyze", "Passable",
"Quite unique 🤔", "Less like an orange, and more like an apple", "I don't know, man...", "It is so tiring to grade everything...", "...",
"Bland like porridge", "🤔", "Ok-ish?", "Not _bad_, but also not _good_", "Why would you want to _rate_ this?",

// 25
// 26
"Bad", "Very bad", "Pretty bad", "Horrible", "Ugly",
"Disgusting", "Literally the worst", "Not interesting", "Simply ugh", "I don't like it! You shouldn't either!",
"Just like you, 💩", "Not approved", "Big Mistake", "The opposite of good", "Could be better",
"🤮", "😐", "So-so", "Not worth it", "Mediocre at best",
"Useless", "I think you misspelled `poop` there", "Nothing special", "😔", "Real shame",
"Boooooooo!"
};

private static readonly HashSet<string> Me = new HashSet<string>(StringComparer.InvariantCultureIgnoreCase)