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