diff --git a/commands/fun.py b/commands/fun.py index e3595b5..0016105 100644 --- a/commands/fun.py +++ b/commands/fun.py @@ -1,4 +1,6 @@ import os +import random + import nextcord from nextcord.ext import commands @@ -14,6 +16,10 @@ class Fun(commands.Cog): async def squogify(self, ctx: nextcord.Message, user: nextcord.User): await ctx.reply(f"{user.mention} shall get squogged!", files=[nextcord.File("./images/squogify.gif")]) + @commands.command(description="Kidnap someone", usage={"@user"}) + async def kidnap(self, ctx: nextcord.Message, user: nextcord.User): + await ctx.reply(f"{user.mention} shall get kidnapped!", files=[nextcord.File(f"./images/Kidnap{random.randint(1, 2)}.jpg")]) + # Add something here later cuz im lazy raaahhh def setup(bot): diff --git a/images/Kidnap1.jpg b/images/Kidnap1.jpg new file mode 100644 index 0000000..586f059 Binary files /dev/null and b/images/Kidnap1.jpg differ diff --git a/images/Kidnap2.jpg b/images/Kidnap2.jpg new file mode 100644 index 0000000..89a75af Binary files /dev/null and b/images/Kidnap2.jpg differ