Rickroll Command

This commit is contained in:
Dragon Fire
2020-06-29 18:28:51 -04:00
parent 274637701e
commit 1b94e959d0
3 changed files with 30 additions and 2 deletions
+25
View File
@@ -0,0 +1,25 @@
const Command = require('../../structures/Command');
module.exports = class RickrollCommand extends Command {
constructor(client) {
super(client, {
name: 'rickroll',
aliases: ['never-gonna-give-you-up', 'rick-astley'],
group: 'single',
memberName: 'rickroll',
description: 'Sends a link to the "Never Gonna Give You Up" music video.',
credit: [
{
name: 'Rick Astley',
url: 'https://www.youtube.com/channel/UCuAXFkgsw1L7xaCfnd5JJOw',
reason: 'Original Music Video',
reasonURL: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ'
}
]
});
}
run(msg) {
return msg.say('https://www.youtube.com/watch?v=dQw4w9WgXcQ');
}
};