mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
Really high roman numerals
This commit is contained in:
@@ -1,4 +1,16 @@
|
||||
{
|
||||
"M̅": 1000000,
|
||||
"C̅M̅": 9000000,
|
||||
"D̅": 500000,
|
||||
"C̅D̅": 400000,
|
||||
"C̅": 100000,
|
||||
"X̅C̅": 90000,
|
||||
"L̅": 50000,
|
||||
"X̅L̅": 40000,
|
||||
"X̅": 10000,
|
||||
"I̅X̅": 9000,
|
||||
"V̅": 5000,
|
||||
"̅I̅V̅": 4000,
|
||||
"M": 1000,
|
||||
"CM": 900,
|
||||
"D": 500,
|
||||
|
||||
@@ -15,7 +15,7 @@ module.exports = class RomanCommand extends Command {
|
||||
prompt: 'What number would you like to convert to roman numerals?',
|
||||
type: 'integer',
|
||||
min: 0,
|
||||
max: 4999
|
||||
max: Number.MAX_SAFE_INTEGER
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "112.19.6",
|
||||
"version": "112.19.7",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user