From fabecd836bf91ff2e81d4b402e20f6444d0b04a3 Mon Sep 17 00:00:00 2001 From: "tamservo@mx.sdf.org" Date: Fri, 27 Sep 2024 16:22:31 -0400 Subject: [PATCH] Added encouragement, slight commands. --- robottas.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/robottas.py b/robottas.py index 1eaf484..44af812 100755 --- a/robottas.py +++ b/robottas.py @@ -1032,6 +1032,7 @@ class Robottas(commands.Bot): " !calm - keep calm but come on.\n" + " !censored\n" + " !ciao\n" + + " !encouragement\n" + " !forecast - what happened to that podium...\n" + " !grandma\n" + " !grass\n" + @@ -1045,6 +1046,7 @@ class Robottas(commands.Bot): " !penalty\n" + " !ricky\n" + " !rude - Charles thinks it's rude.\n" + + " !slight - Charles did a slight touch.\n" + " !stupid\n" + " !steer\n" + " !undercut\n" + @@ -1270,6 +1272,10 @@ class Robottas(commands.Bot): async def ciao(ctx): await self.send_image(ctx, "images/ciao.png") + @self.command() + async def encouragement(ctx): + await self.send_image(ctx, "images/encouragement.png") + @self.command() async def grandma(ctx): await self.send_image(ctx, "images/grandma.png") @@ -1323,6 +1329,10 @@ class Robottas(commands.Bot): async def rude(ctx): await self.send_image(ctx, "images/rude.mp4") + @self.command() + async def slight(ctx): + await self.send_image(ctx, "images/slight.png") + @self.command() async def stupid(ctx): await self.send_image(ctx, "images/stupid.png")