extra slap

This commit is contained in:
BFlow 2019-11-18 16:55:26 +01:00
parent d302775b13
commit 6ebeabaef0

View file

@ -85,6 +85,7 @@ class Mybot(commands.Cog):
@commands.command(help='slap this ass') @commands.command(help='slap this ass')
async def slap(self, ctx, user=None): async def slap(self, ctx, user=None):
slap_multiple = ["%s prend un coup de pied au cul", "Descente du coude sur %s", "%s est propulsé par dessus la TROISIEME CORDE!"]
if not user: if not user:
online_members = [] online_members = []
members = ctx.guild.members members = ctx.guild.members
@ -96,7 +97,7 @@ class Mybot(commands.Cog):
if user == self.bot.user.mention: if user == self.bot.user.mention:
await ctx.channel.send("je tribuche par terre et je sais pas comment") await ctx.channel.send("je tribuche par terre et je sais pas comment")
else: else:
await ctx.channel.send("j'attrape %s et lui met une tarte!" % user) await ctx.channel.send(random.choice(slap_multiple) % user)
@commands.command(help="optionnal args : [livre] [character]") @commands.command(help="optionnal args : [livre] [character]")
async def kaamelott(self, ctx, *args): async def kaamelott(self, ctx, *args):