diff --git a/kabot/kabot/kabot.py b/kabot/kabot/kabot.py index df2863b..d437a31 100644 --- a/kabot/kabot/kabot.py +++ b/kabot/kabot/kabot.py @@ -85,6 +85,7 @@ class Mybot(commands.Cog): @commands.command(help='slap this ass') 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: online_members = [] members = ctx.guild.members @@ -96,7 +97,7 @@ class Mybot(commands.Cog): if user == self.bot.user.mention: await ctx.channel.send("je tribuche par terre et je sais pas comment") 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]") async def kaamelott(self, ctx, *args):