mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-23 18:05:01 +02:00
Cave Command
This commit is contained in:
@@ -227,7 +227,7 @@ in the appropriate channel's topic to use it.
|
|||||||
|
|
||||||
## Commands
|
## Commands
|
||||||
|
|
||||||
Total: 488
|
Total: 489
|
||||||
|
|
||||||
### Utility:
|
### Utility:
|
||||||
|
|
||||||
@@ -365,6 +365,7 @@ Total: 488
|
|||||||
|
|
||||||
### Single Response:
|
### Single Response:
|
||||||
|
|
||||||
|
* **cave:** Sends a Minecraft cave that blends in with the chat.
|
||||||
* **dark-light:** Determines whether you use dark or light theme.
|
* **dark-light:** Determines whether you use dark or light theme.
|
||||||
* **eat-pant:** Eat pant.
|
* **eat-pant:** Eat pant.
|
||||||
* **eggs-get-laid:** Sends the ultimate roast.
|
* **eggs-get-laid:** Sends the ultimate roast.
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
@@ -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
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xiao",
|
"name": "xiao",
|
||||||
"version": "116.29.6",
|
"version": "116.30.0",
|
||||||
"description": "Your personal server companion.",
|
"description": "Your personal server companion.",
|
||||||
"main": "Xiao.js",
|
"main": "Xiao.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user