Add first draft of 8ball command

This commit is contained in:
Robert Miles 2019-11-01 13:57:47 -04:00
parent 770c0d46b4
commit 36ff422b6e
1 changed files with 30 additions and 0 deletions

30
commands/8ball.py Normal file
View File

@ -0,0 +1,30 @@
import plugin, random
RNG = random.SystemRandom()
results = [
"It is certain",
"It is decidedly so",
"Without a doubt",
"Yes - definitely",
"You may rely on it",
"Of course",
"Most likely",
"Outlook good",
"Yes",
"Signs point to yes",
"Reply hazy, try again",
"Ask again later",
"Better not tell you now",
"Cannot predict now",
"Concentrate and ask again",
"Don't count on it",
"My reply is no",
"My sources say no",
"Outlook not so good",
"Very doubtful",
"Absolutely not"
]
@plugin.command("8ball","<question>")
def 8ball(bot,channel,nick,*args):
bot.say(channel,"{}: {}".format(nick,RNG.choice(results)))