Remove more commands

This commit is contained in:
Dragon Fire
2024-03-20 21:53:19 -04:00
parent 450ea2b7f5
commit de4098ba6b
79 changed files with 4 additions and 3795 deletions
-25
View File
@@ -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');
}
};
-16
View File
@@ -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('( ͡° ͜ʖ ͡°)');
}
};
-25
View File
@@ -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')] });
}
};
-26
View File
@@ -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')] });
}
};