Remove suicide-hotline and kazuma-kazuma

This commit is contained in:
Dragon Fire
2020-07-01 14:12:57 -04:00
parent 0c0853dec4
commit df7640101b
4 changed files with 2 additions and 61 deletions
-24
View File
@@ -1,24 +0,0 @@
const Command = require('../../structures/commands/AutoReply');
module.exports = class KazumaKazumaCommand extends Command {
constructor(client) {
super(client, {
name: 'kazuma-kazuma',
group: 'auto',
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'
}
]
});
}
generateText() {
return 'Hai, Kazuma desu.';
}
};
-28
View File
@@ -1,28 +0,0 @@
const Command = require('../../structures/commands/AutoReply');
module.exports = class SuicideHotlineCommand extends Command {
constructor(client) {
super(client, {
name: 'suicide-hotline',
aliases: ['kms', 'kill-myself'],
group: 'auto',
memberName: 'suicide-hotline',
description: 'Responds with the phone number for the Suicide Hotline.',
patterns: [/\bkms\b/i, /\b(kill myself)\b/i, /<:kms:(.+)>/i],
reply: true,
credit: [
{
name: 'National Suicide Prevention Lifeline',
url: 'https://suicidepreventionlifeline.org/',
reason: 'Phone Number'
}
]
});
}
generateText(fromPattern) {
const text = 'Call 1-800-273-8255 for the National Suicide Prevention Lifeline.';
if (!fromPattern) return text;
return `Don't say that. Get help. ${text}`;
}
};