mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-12 15:57:43 +02:00
Remove more commands
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
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');
|
||||
}
|
||||
};
|
||||
@@ -1,16 +0,0 @@
|
||||
const Command = require('../../framework/Command');
|
||||
|
||||
module.exports = class LennyCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'lenny',
|
||||
group: 'single',
|
||||
memberName: 'lenny',
|
||||
description: 'Responds with the lenny face.'
|
||||
});
|
||||
}
|
||||
|
||||
run(msg) {
|
||||
return msg.say('( ͡° ͜ʖ ͡°)');
|
||||
}
|
||||
};
|
||||
@@ -1,25 +0,0 @@
|
||||
const Command = require('../../framework/Command');
|
||||
const path = require('path');
|
||||
|
||||
module.exports = class SpamCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'spam',
|
||||
group: 'single',
|
||||
memberName: 'spam',
|
||||
description: 'Responds with a picture of Spam.',
|
||||
clientPermissions: ['ATTACH_FILES'],
|
||||
credit: [
|
||||
{
|
||||
name: 'SPAM Brand',
|
||||
url: 'https://www.spam.com/',
|
||||
reason: 'Image'
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
run(msg) {
|
||||
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'spam.png')] });
|
||||
}
|
||||
};
|
||||
@@ -1,26 +0,0 @@
|
||||
const Command = require('../../framework/Command');
|
||||
const path = require('path');
|
||||
|
||||
module.exports = class WynautCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'wynaut',
|
||||
aliases: ['why-not'],
|
||||
group: 'single',
|
||||
memberName: 'wynaut',
|
||||
description: 'Why not? Wynaut?',
|
||||
clientPermissions: ['ATTACH_FILES'],
|
||||
credit: [
|
||||
{
|
||||
name: 'Pokémon',
|
||||
url: 'https://www.pokemon.com/us/',
|
||||
reason: 'Image, Original Anime'
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
run(msg) {
|
||||
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'wynaut.png')] });
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user