mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
30 lines
758 B
JavaScript
30 lines
758 B
JavaScript
const Command = require('../../structures/Command');
|
|
const { letterTrans } = require('custom-translate');
|
|
const dictionary = require('../../assets/json/dvorak');
|
|
|
|
module.exports = class DvorakCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'dvorak',
|
|
group: 'text-edit',
|
|
memberName: 'dvorak',
|
|
description: 'Converts text to Dvorak encoding.',
|
|
args: [
|
|
{
|
|
key: 'text',
|
|
prompt: 'What text would you like to convert to Dvorak encoding?',
|
|
type: 'string',
|
|
validate: text => {
|
|
if (letterTrans(text, dictionary).length < 2000) return true;
|
|
return 'Invalid text, your text is too long.';
|
|
}
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
run(msg, { text }) {
|
|
return msg.say(letterTrans(text, dictionary));
|
|
}
|
|
};
|