Skip to content

Commit

Permalink
Add lichen cat (#196)
Browse files Browse the repository at this point in the history
* Add lichen cat

* Add code fence and use join

* Ugh, missing comma

* Sometimes it's useful to run the code before you commit

* Didn't realise this was part of the command description, fancy stuff
  • Loading branch information
Jake-Moss authored Mar 9, 2024
1 parent b7ebf6d commit 0df12b9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions uqcsbot/cat.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,21 @@ async def cat(self, interaction: discord.Interaction):
Displays the moss cat. Brings torture to CSSE2310 students.
"""

if randrange(0, 100) == 0:
cat = "\n".join(
(
"```",
r""" |\ _,,,---,,_ """,
r""" /,`.-'`' -. ;-;;,_" """,
r""" |,4- ) )-,_. ,\ ( `'-'" """,
r""" '---''(_/--' `-'\_) """,
"```",
)
)

await interaction.response.send_message(cat)
return

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

0 comments on commit 0df12b9

Please sign in to comment.