mirror of
https://github.com/danbulant/Shasha
synced 2026-05-24 12:22:00 +00:00
typing
This commit is contained in:
parent
13f8a4d43a
commit
e51cfabee0
8 changed files with 8 additions and 0 deletions
|
|
@ -14,6 +14,7 @@ module.exports = class baka extends commando.Command {
|
|||
});
|
||||
}
|
||||
async run(msg) {
|
||||
msg.channel.startTyping();
|
||||
const title = `${msg.guild ? msg.member.displayName : msg.author.username} is getting dere-dere~ =>`;
|
||||
const image = await fetchNeko("baka");
|
||||
const emb = defaultImageEmbed(msg, image, title);
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ module.exports = class cry extends commando.Command {
|
|||
});
|
||||
}
|
||||
async run(msg) {
|
||||
msg.channel.startTyping();
|
||||
const title = `${msg.guild ? msg.member.displayName : msg.author.username} is crying :<`;
|
||||
const image = await fetchNeko("cry");
|
||||
const emb = defaultImageEmbed(msg, image, title);
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ module.exports = class dance extends commando.Command {
|
|||
});
|
||||
}
|
||||
async run(msg) {
|
||||
msg.channel.startTyping();
|
||||
const title = `${msg.guild ? msg.member.displayName : msg.author.username} is dancin :>`;
|
||||
const image = await fetchNeko("dance");
|
||||
const emb = defaultImageEmbed(msg, image, title);
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ module.exports = class laugh extends commando.Command {
|
|||
});
|
||||
}
|
||||
async run(msg) {
|
||||
msg.channel.startTyping();
|
||||
const title = `${msg.guild ? msg.member.displayName : msg.author.username} is laughin XD`;
|
||||
const image = await fetchNeko("laugh");
|
||||
const emb = defaultImageEmbed(msg, image, title);
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ module.exports = class neko extends commando.Command {
|
|||
});
|
||||
}
|
||||
async run(msg) {
|
||||
msg.channel.startTyping();
|
||||
const title = `${msg.guild ? msg.member.displayName : msg.author.username} ~Nyann~ (UwU) <3`;
|
||||
const image = await fetchNeko("nekos");
|
||||
const emb = defaultImageEmbed(msg, image, title);
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ module.exports = class smile extends commando.Command {
|
|||
});
|
||||
}
|
||||
async run(msg) {
|
||||
msg.channel.startTyping();
|
||||
const title = `${msg.guild ? msg.member.displayName : msg.author.username} is smilin :D`;
|
||||
const image = await fetchNeko("smile");
|
||||
const emb = defaultImageEmbed(msg, image, title);
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ module.exports = class smug extends commando.Command {
|
|||
});
|
||||
}
|
||||
async run(msg) {
|
||||
msg.channel.startTyping();
|
||||
const title = `${msg.guild ? msg.member.displayName : msg.author.username} got a smug face >:]`;
|
||||
const image = await fetchNeko("smug");
|
||||
const emb = defaultImageEmbed(msg, image, title);
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ module.exports = class wave extends commando.Command {
|
|||
});
|
||||
}
|
||||
async run(msg) {
|
||||
msg.channel.startTyping();
|
||||
const title = `${msg.guild ? msg.member.displayName : msg.author.username} is waving :)`;
|
||||
const image = await fetchNeko("wave");
|
||||
const emb = defaultImageEmbed(msg, image, title);
|
||||
|
|
|
|||
Loading…
Reference in a new issue