From d55e8267d1fbafd45227090958b37686665b1f03 Mon Sep 17 00:00:00 2001 From: Jake-Moss Date: Sat, 9 Mar 2024 12:46:20 +1000 Subject: [PATCH] Add lichen cat --- uqcsbot/cat.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/uqcsbot/cat.py b/uqcsbot/cat.py index 7a3d7a06..7c72c21f 100644 --- a/uqcsbot/cat.py +++ b/uqcsbot/cat.py @@ -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"