Haha-Yes/commands/fun/emotesay.js

31 lines
886 B
JavaScript
Raw Normal View History

const { Command } = require('discord.js-commando');
const emojiCharacters = require('../../emojiCharacters');
2018-09-22 18:35:43 +02:00
module.exports = class emoteSayCommand extends Command {
constructor(client) {
super(client, {
name: 'emotesay',
group: 'fun',
memberName: 'emotesay',
description: `repeat the text in dancing letters`,
args: [
{
key: 'text',
prompt: 'What do you want me to say',
type: 'string',
}
]
});
}
async run(message, { text }) {
2018-09-23 20:01:07 +02:00
message.delete();
text.toLowerCase().split('')
let emojiArray = [];
2018-09-23 19:33:53 +02:00
for (let i = 0; i < text.length; i++) {
2018-09-23 20:04:16 +02:00
emojiArray[i] = emojiCharacters[text[i]];
}
2018-09-23 19:33:53 +02:00
message.say(emojiArray.join(""))
}
};