Files
xiao/commands/number-edit/roman-numeral.js
T
Daniel Odendahl Jr 79a4b0f8c1 Gravity Command
2018-09-06 15:08:57 +00:00

36 lines
829 B
JavaScript

const Command = require('../../structures/Command');
const numerals = require('../../assets/json/roman-numeral');
module.exports = class RomanNumeralCommand extends Command {
constructor(client) {
super(client, {
name: 'roman-numeral',
aliases: ['roman'],
group: 'number-edit',
memberName: 'roman-numeral',
description: 'Converts a number to roman numerals.',
args: [
{
key: 'number',
prompt: 'What number would you like to convert to roman numerals?',
type: 'integer',
min: 0,
max: 4999
}
]
});
}
run(msg, { number }) {
if (number === 0) return msg.reply('_nulla_');
let result = '';
for (const [numeral, value] of Object.entries(numerals)) {
while (number >= value) {
result += numeral;
number -= value;
}
}
return msg.reply(result);
}
};