17 lines
No EOL
307 B
JavaScript
17 lines
No EOL
307 B
JavaScript
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>`);
|
|
}
|
|
} |