mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
Automatic Response group
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "110.9.2",
|
||||
"version": "110.9.3",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user