fulvia/modules/8ball.py

33 lines
545 B
Python
Raw Normal View History

2018-03-16 03:13:43 -04:00
#!/usr/bin/env python3
"""
Classic 8ball.
"""
import random
from module import commands
@commands('8ball')
def eightball(bot, trigger):
"""Classic 8ball."""
response = [
"No",
"Nah",
"Probably not",
"Don't count on it",
"It'll never happen",
"Stop trying",
"Uncertain",
"Who knows~",
"Doubtful",
"I don't know",
"Maybe",
"It could happen",
"Yes",
"Fate is a curious mistress",
"Your life is meaningless",
"Who knows~",
"The winds of change are always blowing",
"The tides have turned"]
bot.reply(random.choice(response))