Fix var loading again
Update Deprecated Args Parse CLI Parse Settings Fix defaults Fix priority Add Enemizer error Fix Custom Item Array again Make output more verbose Fix double-negative options
This commit is contained in:
@@ -107,10 +107,10 @@
|
||||
},
|
||||
"dungeon_counters": {
|
||||
"choices": [
|
||||
"default",
|
||||
"off",
|
||||
"on",
|
||||
"pickup",
|
||||
"default"
|
||||
"pickup"
|
||||
]
|
||||
},
|
||||
"crystals_ganon": {
|
||||
@@ -198,15 +198,6 @@
|
||||
"action": "store_true",
|
||||
"type": "bool"
|
||||
},
|
||||
"shuffleganon": {
|
||||
"action": "store_true",
|
||||
"type": "bool"
|
||||
},
|
||||
"no-shuffleganon": {
|
||||
"action": "store_false",
|
||||
"dest": "shuffleganon",
|
||||
"help": "suppress"
|
||||
},
|
||||
"heartbeep": {
|
||||
"choices": [
|
||||
"normal",
|
||||
@@ -240,20 +231,39 @@
|
||||
]
|
||||
},
|
||||
"sprite": {},
|
||||
"create_rom": {
|
||||
"action": "store_false",
|
||||
"type": "bool"
|
||||
},
|
||||
"suppress_rom": {
|
||||
"action": "store_true",
|
||||
"dest": "create_rom",
|
||||
"help": "suppress"
|
||||
},
|
||||
"shuffleganon": {
|
||||
"action": "store_false",
|
||||
"type": "bool"
|
||||
},
|
||||
"no_shuffleganon": {
|
||||
"action": "store_true",
|
||||
"dest": "shuffleganon",
|
||||
"help": "suppress"
|
||||
},
|
||||
"calc_playthrough": {
|
||||
"action": "store_false",
|
||||
"type": "bool"
|
||||
},
|
||||
"skip_playthrough": {
|
||||
"action": "store_true",
|
||||
"dest": "calc_playthrough",
|
||||
"help": "suppress"
|
||||
},
|
||||
"gui": {
|
||||
"action": "store_true"
|
||||
},
|
||||
"jsonout": {
|
||||
"action": "store_true"
|
||||
},
|
||||
"skip_playthrough": {
|
||||
"action": "store_true",
|
||||
"type": "bool"
|
||||
},
|
||||
"enemizercli": {
|
||||
"setting": "enemizercli"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"cli": {
|
||||
"yes": "Yes",
|
||||
"no": "No",
|
||||
"app.title": "ALttP Door Randomizer Version %s - Seed: %d",
|
||||
"version": "Version",
|
||||
"seed": "Seed",
|
||||
@@ -33,7 +35,11 @@
|
||||
"cannot.reach.progression": "Not all progression items reachable. Something went terribly wrong here.",
|
||||
"cannot.reach.required": "Not all required items reachable. Something went terribly wrong here.",
|
||||
"patching.rom": "Patching ROM",
|
||||
"patching.spoiler": "Creating Spoiler",
|
||||
"calc.playthrough": "Calculating playthrough",
|
||||
"made.rom": "Patched ROM: %s",
|
||||
"made.playthrough": "Printed Playthrough: %s",
|
||||
"made.spoiler": "Printed Spoiler: %s",
|
||||
"done": "Done. Enjoy.",
|
||||
"total.time": "Total Time: %s",
|
||||
"finished.run": "Finished run",
|
||||
@@ -262,7 +268,7 @@
|
||||
"Alternatively, can be a ALttP Rom patched with a Link",
|
||||
"sprite that will be extracted."
|
||||
],
|
||||
"suppress_rom": [ "Do not create an output rom file. (default: %(default)s)" ],
|
||||
"create_rom": [ "Create an output rom file. (default: %(default)s)" ],
|
||||
"gui": [ "Launch the GUI. (default: %(default)s)" ],
|
||||
"jsonout": [
|
||||
"Output .json patch to stdout instead of a patched rom. Used",
|
||||
|
||||
Reference in New Issue
Block a user