diff --git a/uqcsbot/cat.py b/uqcsbot/cat.py index 7a3d7a0..7c72c21 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"