mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
26 lines
649 B
JavaScript
26 lines
649 B
JavaScript
const Command = require('../../framework/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.',
|
|
credit: [
|
|
{
|
|
name: 'MotivaShian',
|
|
url: 'https://www.youtube.com/channel/UC0yDCpC_UaXEdL6Zc4715rg',
|
|
reason: 'Original Motivational Speech',
|
|
reasonURL: 'https://www.youtube.com/watch?v=ZXsQAXx_ao0'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
run(msg) {
|
|
return msg.say('https://www.youtube.com/watch?v=ZXsQAXx_ao0');
|
|
}
|
|
};
|