From e2fa8400c61f42adb3647792fd4a52fc89cf7c80 Mon Sep 17 00:00:00 2001 From: Epoc <32695675+epochayur@users.noreply.github.com> Date: Mon, 21 Aug 2023 13:55:01 -0700 Subject: [PATCH] Update pets.py (#45) --- pet/pets.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/pet/pets.py b/pet/pets.py index aeb7e86..e0949c0 100644 --- a/pet/pets.py +++ b/pet/pets.py @@ -599,6 +599,29 @@ def __init__(self, bot): "wins alimony", ] + self.magic_ball_responses = [ + "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", + ] + @commands.command() async def pet(self, ctx, *, name: str): """ @@ -966,3 +989,14 @@ async def shock(self, ctx, *, name: str = None): """ message = "https://file.house/aX2X.jpg" await ctx.send(message) + + @commands.command(aliases=["8ball"]) + async def magicball(self, ctx, *, name: str = None): + """ + Consult the orb + """ + await ctx.send( + "{} {}".format( + ctx.author.mention, random.choice(self.magic_ball_responses) + ) + )