Added roman numerals
This commit is contained in:
@ -51,6 +51,16 @@ MODIFIERS = {
|
||||
"s": 1,
|
||||
}
|
||||
|
||||
ROMANS = {
|
||||
'i': 1,
|
||||
'v': 5,
|
||||
'x': 10,
|
||||
'l': 50,
|
||||
'c': 100,
|
||||
'd': 500,
|
||||
'm': 1000
|
||||
}
|
||||
|
||||
# pylint: disable=locally-disabled, too-many-lines
|
||||
|
||||
SCALES = {
|
||||
|
||||
Reference in New Issue
Block a user