Remove inhale, make eat be like sleep

This commit is contained in:
Dragon Fire
2018-09-03 12:30:12 -04:00
parent d13b086885
commit 553868c727
6 changed files with 6 additions and 34 deletions
-1
View File
@@ -55,7 +55,6 @@ HIGH_FIVE_ALBUM_ID=
HIT_WITH_SHOVEL_ALBUM_ID= HIT_WITH_SHOVEL_ALBUM_ID=
HOLD_HANDS_ALBUM_ID= HOLD_HANDS_ALBUM_ID=
HUG_ALBUM_ID= HUG_ALBUM_ID=
INHALE_ALBUM_ID=
KILL_ALBUM_ID= KILL_ALBUM_ID=
KISS_ALBUM_ID= KISS_ALBUM_ID=
MARRY_ALBUM_ID= MARRY_ALBUM_ID=
+1 -2
View File
@@ -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 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). on the [home server](https://discord.gg/sbMe32W).
## Commands (305) ## Commands (304)
### Utility: ### Utility:
* **eval**: Executes JavaScript code. * **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. * **hit-with-shovel**: Hits a user with a shovel.
* **hold-hands**: Holds hands with a user. * **hold-hands**: Holds hands with a user.
* **hug**: Hugs a user. * **hug**: Hugs a user.
* **inhale**: Inhales a user.
* **kill**: Kills a user. * **kill**: Kills a user.
* **kiss**: Kisses a user. * **kiss**: Kisses a user.
* **marry**: Marries a user. * **marry**: Marries a user.
-1
View File
@@ -85,7 +85,6 @@
"badguy": "special enemy", "badguy": "special enemy",
"school": "skool", "school": "skool",
"um": "p...", "um": "p...",
"elizabeth": "ebears",
"yeah": "yaya", "yeah": "yaya",
"yea": "yaya", "yea": "yaya",
"uh-huh": "yaya", "uh-huh": "yaya",
+4 -3
View File
@@ -7,20 +7,21 @@ module.exports = class EatCommand extends RoleplayCommand {
name: 'eat', name: 'eat',
group: 'roleplay', group: 'roleplay',
memberName: 'eat', memberName: 'eat',
description: 'Eats a user.', description: 'Feeds a user.',
clientPermissions: ['ATTACH_FILES'], clientPermissions: ['ATTACH_FILES'],
albumID: EAT_ALBUM_ID, albumID: EAT_ALBUM_ID,
args: [ args: [
{ {
key: 'user', key: 'user',
prompt: 'What user do you want to roleplay with?', prompt: 'What user do you want to roleplay with?',
type: 'user' type: 'user',
default: msg => msg.author
} }
] ]
}); });
} }
generateText(msg, user) { generateText(msg, user) {
return `_**${msg.author.username}** eats **${user.username}**._`; return `_**${user.username}** eats._`;
} }
}; };
-26
View File
@@ -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
View File
@@ -1,6 +1,6 @@
{ {
"name": "xiao", "name": "xiao",
"version": "88.6.0", "version": "89.0.0",
"description": "Your personal server companion.", "description": "Your personal server companion.",
"main": "Xiao.js", "main": "Xiao.js",
"scripts": { "scripts": {