From 7bea36b761b96bff27dc0240f4e8946bcb3d6e84 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sun, 14 Jun 2020 08:18:22 +0100 Subject: [PATCH] Added more responses with Lukas' commands Added smol/big pp command --- cogs/FunCommands.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/cogs/FunCommands.py b/cogs/FunCommands.py index 08545109..8f2d654a 100644 --- a/cogs/FunCommands.py +++ b/cogs/FunCommands.py @@ -128,7 +128,7 @@ class Fun(commands.Cog): # Bot ~8Ball command @commands.command(aliases=['Lukas']) @cooldown(1, 0.5, BucketType.channel) - @commands.has_any_role('Lukas (Server Booster)') + @commands.has_any_role('Lukas (Server Booster)', 'Hamothy') async def lukas(self, ctx): lukasID = '<@395653002050011166>' bubzID = '<@422588717744652289>' @@ -136,10 +136,18 @@ class Fun(commands.Cog): responses = [ f"{lukasID} loves {bubzID} with all his heart <:awie:676201100793085952> <:awie:676201100793085952>", f"{lukasID} and {bubzID} are raising their rabbits <:blushlook1:677310734123663363> <:blushlook2:679524467248201769>", - f"{lukasID} is having a cult meeting ", + f"{lukasID} is having a cult meeting", f"{bubzID} is {lukasID}’s Ehefrau"] await ctx.send(random.choice(responses)) + # await ctx.send("") + + @commands.command(aliases=['Flip']) + @cooldown(1, 2, BucketType.channel) + async def flip(self, ctx): + responses = ["smol pp", "huge pp"] + + await ctx.send(f"{ctx.author.mention} {random.choice(responses)}") def setup(bot):