mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-11 03:14:35 +02:00
Kazuma, Kazuma!
This commit is contained in:
@@ -45,7 +45,7 @@ Xiao is a Discord bot coded in JavaScript with
|
||||
6. Run `npm i -g pm2` to install PM2.
|
||||
7. Run `pm2 start Xiao.js --name xiao` to run the bot.
|
||||
|
||||
## Commands (341)
|
||||
## Commands (342)
|
||||
### Utility:
|
||||
|
||||
* **eval:** Executes JavaScript code.
|
||||
@@ -136,6 +136,7 @@ Xiao is a Discord bot coded in JavaScript with
|
||||
* **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.
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
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]
|
||||
});
|
||||
}
|
||||
|
||||
run(msg) {
|
||||
return msg.say('Hai, Kazuma desu.');
|
||||
}
|
||||
};
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "105.0.1",
|
||||
"version": "105.1.0",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user