2025-07-15 23:27:17 +02:00
|
|
|
import random
|
|
|
|
import discord
|
|
|
|
from discord.ext import commands
|
|
|
|
|
2025-07-23 10:19:08 +03:00
|
|
|
|
2025-07-15 23:27:17 +02:00
|
|
|
class eightball(commands.Cog):
|
|
|
|
def __init__(self, bot):
|
|
|
|
self.bot = bot
|
|
|
|
|
|
|
|
@commands.command()
|
|
|
|
async def eightball(self, ctx):
|
2025-07-23 10:19:08 +03:00
|
|
|
answer = random.choice(
|
|
|
|
[
|
|
|
|
"It is certain.",
|
|
|
|
"It is decidedly so.",
|
|
|
|
"Without a doubt.",
|
|
|
|
"Yes definitely.",
|
|
|
|
"You may rely on it.",
|
|
|
|
"As I see it, yes.",
|
|
|
|
"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.",
|
|
|
|
]
|
|
|
|
)
|
2025-07-15 23:27:17 +02:00
|
|
|
|
2025-07-22 13:09:15 +03:00
|
|
|
await ctx.send(answer)
|
2025-07-15 23:27:17 +02:00
|
|
|
|
2025-07-23 10:19:08 +03:00
|
|
|
|
2025-07-15 23:27:17 +02:00
|
|
|
async def setup(bot):
|
|
|
|
await bot.add_cog(eightball(bot))
|