diff --git a/commands/fun.py b/commands/fun.py index a33a36c..e3595b5 100644 --- a/commands/fun.py +++ b/commands/fun.py @@ -10,6 +10,10 @@ class Fun(commands.Cog): async def boop(self, ctx: nextcord.Message, user: nextcord.User): await ctx.reply(f"{user.mention} shall get booped!", files=[nextcord.File("./images/boop.webp")]) + @commands.command(description="Turn someone into a squog", usage={"@user"}) + 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")]) + # Add something here later cuz im lazy raaahhh def setup(bot): diff --git a/images/squogify.gif b/images/squogify.gif new file mode 100644 index 0000000..b5e5e92 Binary files /dev/null and b/images/squogify.gif differ