Added "fun" commands from SquogBot

This commit is contained in:
entar 2025-05-23 07:41:59 +07:00
parent 7d520be06f
commit 474692c1ed
5 changed files with 29 additions and 0 deletions

29
commands/fun.js Normal file
View File

@ -0,0 +1,29 @@
const { GuildMember, Message } = require('discord.js')
const {client, dir} = require('../index')
module.exports.commands = [
{
name: "boop",
description: "Boop a member",
arguments: [GuildMember],
run: (ctx, member) => {
ctx.reply({content: `${member} shall get booped!`, files: [{attachment: `${dir}/images/boop.webp`}]})
}
},
{
name: "kidnap",
description: "Kidnap a member",
arguments: [GuildMember],
run: (ctx, member) => {
ctx.reply({content: `${member} gets ambushed!`, files: [{attachment: `${dir}/images/Kidnap${Math.random()+1}.webp`}]})
}
},
{
name: "squogify",
description: "Squogify a member",
arguments: [GuildMember],
run: (ctx, member) => {
ctx.reply({content: `${member} gets squogged!`, files: [{attachment: `${dir}/images/squogify.gif`}]})
}
}
]

BIN
images/Kidnap1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

BIN
images/Kidnap2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
images/boop.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
images/squogify.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB