Cave Command

This commit is contained in:
Dragon Fire
2020-06-16 11:41:50 -04:00
parent c967a60922
commit dcb9dc944e
4 changed files with 22 additions and 2 deletions
+2 -1
View File
@@ -227,7 +227,7 @@ in the appropriate channel's topic to use it.
## Commands
Total: 488
Total: 489
### Utility:
@@ -365,6 +365,7 @@ Total: 488
### Single Response:
* **cave:** Sends a Minecraft cave that blends in with the chat.
* **dark-light:** Determines whether you use dark or light theme.
* **eat-pant:** Eat pant.
* **eggs-get-laid:** Sends the ultimate roast.
Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

+19
View File
@@ -0,0 +1,19 @@
const Command = require('../../structures/Command');
const path = require('path');
module.exports = class CaveCommand extends Command {
constructor(client) {
super(client, {
name: 'cave',
aliases: ['cavern', 'mine'],
group: 'single',
memberName: 'cave',
description: 'Sends a Minecraft cave that blends in with the chat.',
clientPermissions: ['ATTACH_FILES']
});
}
run(msg) {
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'cave.png')] });
}
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "116.29.6",
"version": "116.30.0",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {