EcoBot/commands/bonk.js

17 lines
307 B
JavaScript
Raw Normal View History

2021-11-22 23:37:00 +00:00
module.exports = {
api: {
name: "bonk",
description: "Bonks someone",
options: [
{
name: "user",
description: "Who to bonk?",
type: 6,
required: true
}
]
},
run: (int, client, index) => {
int.reply(`<@!${int.options.getUser("user").id}> <a:bonk:912288114238693406>`);
}
}