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")