Kazuma, Kazuma!

This commit is contained in:
Daniel Odendahl Jr
2019-05-22 00:22:57 +00:00
parent ccd9637f8e
commit 138f54c4ce
3 changed files with 20 additions and 2 deletions
+2 -1
View File
@@ -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.
+17
View File
@@ -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
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "105.0.1",
"version": "105.1.0",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {