bitbot-3.11-fork/modules/8ball.py

32 lines
736 B
Python
Raw Normal View History

2018-09-01 10:04:51 +00:00
import random
import Utils
2018-09-01 10:04:51 +00:00
2018-09-01 10:40:08 +00:00
CHOICES = [
"Definitely",
"Yes",
"Probably",
"Maybe",
"Probably not",
"No",
"Definitely not",
"I don't know",
"Ask again later",
"The answer is unclear",
"Absolutely",
"Dubious at best",
"I'm on a break, ask again later"
]
2018-09-01 10:04:51 +00:00
class Module(object):
def __init__(self, bot, events, exports):
2018-09-01 10:04:51 +00:00
events.on("received.command.8ball").hook(
self.decide,
min_args=1,
help="Ask the mystic 8ball a question!",
usage="<question>"
)
def decide(selfs, event):
event["stdout"].write("You shake the magic ball... it "
"says " + Utils.bold(random.choice(CHOICES)))