Skip to content

Commit

Permalink
Update pets.py (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
epochayur authored Aug 21, 2023
1 parent b1b1cb6 commit e2fa840
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions pet/pets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
"""
Expand Down Expand Up @@ -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)
)
)

0 comments on commit e2fa840

Please sign in to comment.