#!/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))