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
+8 -5
View File
@@ -180,7 +180,6 @@ Total: 362
### Single Response:
* **can-you-not:** Can YOU not?
* **dark-light:** Determines whether you use dark or light theme.
* **eat-pant:** Eat pant.
* **eggs-get-laid:** Sends the ultimate roast.
@@ -190,16 +189,20 @@ Total: 362
* **isnt-joke:** Isn't joke...
* **its-joke:** It's joke!
* **just-do-it:** Sends a link to the "Just Do It!" motivational speech.
* **kazuma-kazuma:** Hai, Kazuma desu.
* **lenny:** Responds with the lenny face.
* **no-u:** no u
* **spam:** Responds with a picture of Spam.
* **suicide-hotline:** Responds with the phone number for the Suicide Hotline.
* **tableflip:** Flips a table... With animation!
* **unflip:** Unflips a flipped table.
* **wynaut:** Why not? Wynaut?
* **yoff:** Posts a picture that truly defines modern art.
### Automatic Response:
* **can-you-not:** Can YOU not?
* **kazuma-kazuma:** Hai, Kazuma desu.
* **no-u:** no u
* **suicide-hotline:** Responds with the phone number for the Suicide Hotline.
* **unflip:** Unflips a flipped table.
### Seeded Randomizers:
* **butt:** Determines a user's butt quality.
+1
View File
@@ -19,6 +19,7 @@ client.registry
['info', 'Discord Information'],
['random', 'Random Response'],
['single', 'Single Response'],
['auto', 'Automatic Response'],
['seeded', 'Seeded Randomizers'],
['events', 'Events'],
['search', 'Search'],
@@ -5,7 +5,7 @@ module.exports = class CanYouNotCommand extends Command {
super(client, {
name: 'can-you-not',
aliases: ['can-u-not'],
group: 'single',
group: 'auto',
memberName: 'can-you-not',
description: 'Can YOU not?',
patterns: [/can (you|u) not/i]
@@ -4,7 +4,7 @@ module.exports = class KazumaKazumaCommand extends Command {
constructor(client) {
super(client, {
name: 'kazuma-kazuma',
group: 'single',
group: 'auto',
memberName: 'kazuma-kazuma',
description: 'Hai, Kazuma desu.',
patterns: [/kazuma,? kazuma!?/i],
@@ -5,7 +5,7 @@ module.exports = class NoUCommand extends Command {
super(client, {
name: 'no-u',
aliases: ['no-you'],
group: 'single',
group: 'auto',
memberName: 'no-u',
description: 'no u',
patterns: [/^n+o+ u+$/i]
@@ -5,7 +5,7 @@ module.exports = class SuicideHotlineCommand extends Command {
super(client, {
name: 'suicide-hotline',
aliases: ['kms', 'kill-myself'],
group: 'single',
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],
@@ -4,7 +4,7 @@ module.exports = class UnflipCommand extends Command {
constructor(client) {
super(client, {
name: 'unflip',
group: 'single',
group: 'auto',
memberName: 'unflip',
description: 'Unflips a flipped table.',
patterns: [/\(╯°□°)╯︵ ┻━┻/i]
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "110.9.2",
"version": "110.9.3",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {