mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-17 00:07:36 +02:00
Automatic Response group
This commit is contained in:
@@ -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?');
|
||||
}
|
||||
};
|
||||
@@ -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.');
|
||||
}
|
||||
};
|
||||
@@ -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');
|
||||
}
|
||||
};
|
||||
@@ -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.');
|
||||
}
|
||||
};
|
||||
@@ -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('┬─┬ ノ( ゜-゜ノ)');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user