mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 15:07:42 +02:00
Remove inhale, make eat be like sleep
This commit is contained in:
@@ -55,7 +55,6 @@ HIGH_FIVE_ALBUM_ID=
|
||||
HIT_WITH_SHOVEL_ALBUM_ID=
|
||||
HOLD_HANDS_ALBUM_ID=
|
||||
HUG_ALBUM_ID=
|
||||
INHALE_ALBUM_ID=
|
||||
KILL_ALBUM_ID=
|
||||
KISS_ALBUM_ID=
|
||||
MARRY_ALBUM_ID=
|
||||
|
||||
@@ -15,7 +15,7 @@ Xiao is a Discord bot coded in JavaScript with
|
||||
The bot is no longer available for invite. You can self-host the bot, or use her
|
||||
on the [home server](https://discord.gg/sbMe32W).
|
||||
|
||||
## Commands (305)
|
||||
## Commands (304)
|
||||
### Utility:
|
||||
|
||||
* **eval**: Executes JavaScript code.
|
||||
@@ -352,7 +352,6 @@ on the [home server](https://discord.gg/sbMe32W).
|
||||
* **hit-with-shovel**: Hits a user with a shovel.
|
||||
* **hold-hands**: Holds hands with a user.
|
||||
* **hug**: Hugs a user.
|
||||
* **inhale**: Inhales a user.
|
||||
* **kill**: Kills a user.
|
||||
* **kiss**: Kisses a user.
|
||||
* **marry**: Marries a user.
|
||||
|
||||
@@ -85,7 +85,6 @@
|
||||
"badguy": "special enemy",
|
||||
"school": "skool",
|
||||
"um": "p...",
|
||||
"elizabeth": "ebears",
|
||||
"yeah": "yaya",
|
||||
"yea": "yaya",
|
||||
"uh-huh": "yaya",
|
||||
|
||||
@@ -7,20 +7,21 @@ module.exports = class EatCommand extends RoleplayCommand {
|
||||
name: 'eat',
|
||||
group: 'roleplay',
|
||||
memberName: 'eat',
|
||||
description: 'Eats a user.',
|
||||
description: 'Feeds a user.',
|
||||
clientPermissions: ['ATTACH_FILES'],
|
||||
albumID: EAT_ALBUM_ID,
|
||||
args: [
|
||||
{
|
||||
key: 'user',
|
||||
prompt: 'What user do you want to roleplay with?',
|
||||
type: 'user'
|
||||
type: 'user',
|
||||
default: msg => msg.author
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
generateText(msg, user) {
|
||||
return `_**${msg.author.username}** eats **${user.username}**._`;
|
||||
return `_**${user.username}** eats._`;
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1,26 +0,0 @@
|
||||
const RoleplayCommand = require('../../structures/commands/Roleplay');
|
||||
const { INHALE_ALBUM_ID } = process.env;
|
||||
|
||||
module.exports = class InhaleCommand extends RoleplayCommand {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'inhale',
|
||||
group: 'roleplay',
|
||||
memberName: 'inhale',
|
||||
description: 'Inhales a user.',
|
||||
clientPermissions: ['ATTACH_FILES'],
|
||||
albumID: INHALE_ALBUM_ID,
|
||||
args: [
|
||||
{
|
||||
key: 'user',
|
||||
prompt: 'What user do you want to roleplay with?',
|
||||
type: 'user'
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
generateText(msg, user) {
|
||||
return `_**${msg.author.username}** inhales **${user.username}** but gained no ability..._`;
|
||||
}
|
||||
};
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "88.6.0",
|
||||
"version": "89.0.0",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user