Automatic Response group

This commit is contained in:
Dragon Fire
2020-02-27 11:35:57 -05:00
parent 91d2e664c4
commit 2d7b8bb47f
8 changed files with 15 additions and 11 deletions
-18
View File
@@ -1,18 +0,0 @@
const Command = require('../../structures/Command');
module.exports = class CanYouNotCommand extends Command {
constructor(client) {
super(client, {
name: 'can-you-not',
aliases: ['can-u-not'],
group: 'single',
memberName: 'can-you-not',
description: 'Can YOU not?',
patterns: [/can (you|u) not/i]
});
}
run(msg) {
return msg.reply('Can YOU not?');
}
};
-24
View File
@@ -1,24 +0,0 @@
const Command = require('../../structures/Command');
module.exports = class KazumaKazumaCommand extends Command {
constructor(client) {
super(client, {
name: 'kazuma-kazuma',
group: 'single',
memberName: 'kazuma-kazuma',
description: 'Hai, Kazuma desu.',
patterns: [/kazuma,? kazuma!?/i],
credit: [
{
name: 'KONOSUBA -God\'s blessing on this wonderful world!',
url: 'http://konosuba.com/',
reason: 'Original Anime'
}
]
});
}
run(msg) {
return msg.say('Hai, Kazuma desu.');
}
};
-18
View File
@@ -1,18 +0,0 @@
const Command = require('../../structures/Command');
module.exports = class NoUCommand extends Command {
constructor(client) {
super(client, {
name: 'no-u',
aliases: ['no-you'],
group: 'single',
memberName: 'no-u',
description: 'no u',
patterns: [/^n+o+ u+$/i]
});
}
run(msg) {
return msg.say('no u');
}
};
-25
View File
@@ -1,25 +0,0 @@
const Command = require('../../structures/Command');
module.exports = class SuicideHotlineCommand extends Command {
constructor(client) {
super(client, {
name: 'suicide-hotline',
aliases: ['kms', 'kill-myself'],
group: 'single',
memberName: 'suicide-hotline',
description: 'Responds with the phone number for the Suicide Hotline.',
patterns: [/\bkms\b/i, /\b(kill myself)\b/i, /<:kms:(.+)>/i],
credit: [
{
name: 'National Suicide Prevention Lifeline',
url: 'https://suicidepreventionlifeline.org/',
reason: 'Phone Number'
}
]
});
}
run(msg) {
return msg.say('Don\'t say that. Get help. Call 1-800-273-8255 for the National Suicide Prevention Lifeline.');
}
};
-17
View File
@@ -1,17 +0,0 @@
const Command = require('../../structures/Command');
module.exports = class UnflipCommand extends Command {
constructor(client) {
super(client, {
name: 'unflip',
group: 'single',
memberName: 'unflip',
description: 'Unflips a flipped table.',
patterns: [/\(╯°□°)╯︵ ┻━┻/i]
});
}
run(msg) {
return msg.say('┬─┬ ( ゜-゜ノ)');
}
};