Skip to content

Commit

Permalink
Add lichen cat
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Moss committed Mar 9, 2024
1 parent 547c804 commit d55e826
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion uqcsbot/cat.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,19 @@ def __init__(self, bot: commands.Bot):
@app_commands.command()
async def cat(self, interaction: discord.Interaction):
"""
Displays the moss cat. Brings torture to CSSE2310 students.
Displays the moss cat and occasionally the lichen cat. Brings torture
to CSSE2310 students.
"""

if randrange(0, 100) == 0:
await interaction.response.send_message(
r""" |\ _,,,---,,_ """ + "\n"
r""" /,`.-'`' -. ;-;;,_" """ + "\n"
r""" |,4- ) )-,_. ,\ ( `'-'" """ + "\n"
r""" '---''(_/--' `-'\_) """ + "\n"
)
return

# ansi colour codes
pink = "\u001b[0;35m"
red = "\u001b[0;31m"
Expand Down

0 comments on commit d55e826

Please sign in to comment.