Files
xiao/commands/single/rickroll.js
T
Dragon Fire c61ae11679 Fix
2021-06-05 12:50:41 -04:00

26 lines
671 B
JavaScript

const Command = require('../../framework/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');
}
};