feat(spoiler): introducing custom spoiler levels
This commit is contained in:
@@ -4,14 +4,14 @@
|
||||
"action": "store_true",
|
||||
"type": "bool"
|
||||
},
|
||||
"create_spoiler": {
|
||||
"action": "store_false",
|
||||
"dest": "suppress_spoiler",
|
||||
"type": "bool",
|
||||
"help": "suppress"
|
||||
},
|
||||
"suppress_spoiler": {
|
||||
"action": "store_true"
|
||||
"spoiler": {
|
||||
"choices": [
|
||||
"none",
|
||||
"settings",
|
||||
"semi",
|
||||
"full",
|
||||
"debug"
|
||||
]
|
||||
},
|
||||
"mystery": {
|
||||
"action": "store_true",
|
||||
|
||||
@@ -60,7 +60,15 @@
|
||||
},
|
||||
"help": {
|
||||
"lang": [ "App Language, if available, defaults to English" ],
|
||||
"create_spoiler": [ "Output a Spoiler File" ],
|
||||
"spoiler": [
|
||||
"Spoiler File Options. (default: %(default)s)",
|
||||
"None: No Spoiler",
|
||||
"Meta: Meta information only about game. Intended for mystery settings",
|
||||
"Settings: Only settings information",
|
||||
"Semi: ",
|
||||
"Full: Full spoiler generated",
|
||||
"Debug: Includes debug information"
|
||||
],
|
||||
"bps": [ "Output BPS patches instead of ROMs"],
|
||||
"logic": [
|
||||
"Select Enforcement of Item Requirements. (default: %(default)s)",
|
||||
|
||||
@@ -206,7 +206,12 @@
|
||||
|
||||
|
||||
"randomizer.generation.bps": "Create BPS Patches",
|
||||
"randomizer.generation.createspoiler": "Create Spoiler Log",
|
||||
"randomizer.generation.spoiler": "Create Spoiler Log",
|
||||
"randomizer.generation.spoiler.none": "None",
|
||||
"randomizer.generation.spoiler.settings": "Settings Only",
|
||||
"randomizer.generation.spoiler.semi": "Semi (Entrances and Prizes)",
|
||||
"randomizer.generation.spoiler.full": "Full",
|
||||
"randomizer.generation.spoiler.debug": "Debug",
|
||||
"randomizer.generation.createrom": "Create Patched ROM",
|
||||
"randomizer.generation.calcplaythrough": "Calculate Playthrough",
|
||||
"randomizer.generation.print_custom_yaml": "Print Customizer File",
|
||||
|
||||
@@ -2,7 +2,16 @@
|
||||
"checkboxes": {
|
||||
"createrom": { "type": "checkbox" },
|
||||
"bps": { "type": "checkbox" },
|
||||
"createspoiler": { "type": "checkbox" },
|
||||
"spoiler": {
|
||||
"type": "selectbox",
|
||||
"options": [
|
||||
"none",
|
||||
"settings",
|
||||
"semi",
|
||||
"full",
|
||||
"debug"
|
||||
]
|
||||
},
|
||||
"calcplaythrough": { "type": "checkbox" },
|
||||
"print_custom_yaml": { "type": "checkbox" }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user