eShop Command

This commit is contained in:
Dragon Fire
2018-07-27 10:41:35 -04:00
parent 7d5c0a0696
commit 10461a907a
4 changed files with 102 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
const Command = require('../../structures/Command');
module.exports = class JustDoItCommand extends Command {
constructor(client) {
super(client, {
name: 'just-do-it',
aliases: ['motivate'],
group: 'single',
memberName: 'just-do-it',
description: 'Sends a link to the "Just Do It!" motivational speech.'
});
}
run(msg) {
return msg.say('https://www.youtube.com/watch?v=ZXsQAXx_ao0');
}
};