bitbot-3.11-fork/modules/eightball.py

44 lines
1.1 KiB
Python
Raw Normal View History

#--depends-on commands
2018-09-01 11:04:51 +01:00
import random
from src import ModuleManager, utils
2018-09-01 11:04:51 +01:00
2018-09-01 11:40:08 +01: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",
2018-09-08 17:02:03 +01:00
"I'm on a break, ask again later",
"As I see it, yes",
"It is certain",
"Naturally",
"Reply hazy, try again later",
utils.irc.underline(utils.irc.color("DO NOT WASTE MY TIME",
2018-11-13 16:02:26 +00:00
utils.consts.RED)),
2018-09-08 17:19:52 +01:00
"Hmm... Could be!",
"I'm leaning towards no",
"Without a doubt",
"Sources say no",
"Sources say yes",
"Sources say maybe"
2018-09-01 11:40:08 +01:00
]
2018-09-01 11:04:51 +01:00
class Module(ModuleManager.BaseModule):
2019-07-26 11:16:04 +01:00
_name = "8Ball"
2019-09-09 14:25:19 +01:00
@utils.hook("received.command.8", alias_of="8ball")
@utils.hook("received.command.8ball", min_args=1)
2019-09-09 14:25:19 +01:00
@utils.kwarg("help", "Ask the mystic 8ball a question")
@utils.kwarg("usage", "<question>")
2018-09-01 11:04:51 +01:00
def decide(selfs, event):
event["stdout"].write("You shake the magic ball... it says %s" %
utils.irc.bold(random.choice(CHOICES)))