Files
xiao/commands/text-edit/superscript.js
T
Daniel Odendahl Jr 023e8e9cac Superscript
2017-10-12 21:03:32 +00:00

27 lines
642 B
JavaScript

const { Command } = require('discord.js-commando');
const { letterTrans } = require('custom-translate');
const dictionary = require('../../assets/json/superscript');
module.exports = class SuperscriptCommand extends Command {
constructor(client) {
super(client, {
name: 'superscript',
aliases: ['tiny-text', 'small-text'],
group: 'text-edit',
memberName: 'superscript',
description: 'Makes text become tiny text.',
args: [
{
key: 'text',
prompt: 'What text would you like to make tiny?',
type: 'string'
}
]
});
}
run(msg, { text }) {
return msg.say(letterTrans(text, dictionary));
}
};