Added "fun" commands from SquogBot
This commit is contained in:
parent
7d520be06f
commit
474692c1ed
29
commands/fun.js
Normal file
29
commands/fun.js
Normal 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
BIN
images/Kidnap1.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 243 KiB |
BIN
images/Kidnap2.jpg
Normal file
BIN
images/Kidnap2.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 104 KiB |
BIN
images/boop.webp
Normal file
BIN
images/boop.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
images/squogify.gif
Normal file
BIN
images/squogify.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 MiB |
Loading…
x
Reference in New Issue
Block a user