Pills, thicc, and nitro Commands

This commit is contained in:
Dragon Fire
2020-06-12 14:18:44 -04:00
parent e8fa3455d6
commit 0f2925700f
11 changed files with 157 additions and 3 deletions
+27
View File
@@ -0,0 +1,27 @@
const Command = require('../../structures/Command');
const path = require('path');
module.exports = class NitroCommand extends Command {
constructor(client) {
super(client, {
name: 'nitro',
aliases: ['fake-nitro'],
group: 'single',
memberName: 'nitro',
description: 'Sends an image of a fake nitro giveaway.',
clientPermissions: ['ATTACH_FILES'],
url: [
{
name: 'u/MoonlightCapital',
url: 'https://www.reddit.com/user/MoonlightCapital/',
reason: 'Image',
reasonURL: 'https://www.reddit.com/r/discordapp/comments/a9fr7x/troll_your_friends_with_this/'
}
]
});
}
run(msg) {
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'nitro.png')] });
}
};