diff --git a/README.md b/README.md index 46d930ee..2bdf8c65 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/commands/single/kazuma-kazuma.js b/commands/single/kazuma-kazuma.js new file mode 100644 index 00000000..de5628a0 --- /dev/null +++ b/commands/single/kazuma-kazuma.js @@ -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.'); + } +}; diff --git a/package.json b/package.json index 16d52aeb..6e435856 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "105.0.1", + "version": "105.1.0", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {