Moving Display Collection Rate option away from post-gen options

This commit is contained in:
codemann8
2023-09-10 14:51:43 -05:00
parent 9bb29d32d8
commit 1024126835
5 changed files with 4 additions and 4 deletions

View File

@@ -375,6 +375,7 @@
"Random: Take any caves can replace a random set of un-interesting caves. See documentation for full list", "Random: Take any caves can replace a random set of un-interesting caves. See documentation for full list",
"Fixed: Take any caves will replace certain location. See documentation for full list" "Fixed: Take any caves will replace certain location. See documentation for full list"
], ],
"collection_rate": [ "Display collection rate (default: %(default)s)" ],
"pseudoboots": [ " Start with pseudo boots that allow dashing but no item checks (default: %(default)s)"], "pseudoboots": [ " Start with pseudo boots that allow dashing but no item checks (default: %(default)s)"],
"bombbag": ["Start with 0 bomb capacity. Two capacity upgrades (+10) are added to the pool (default: %(default)s)" ], "bombbag": ["Start with 0 bomb capacity. Two capacity upgrades (+10) are added to the pool (default: %(default)s)" ],
"startinventory": [ "Specifies a list of items that will be in your starting inventory (separated by commas). (default: %(default)s)" ], "startinventory": [ "Specifies a list of items that will be in your starting inventory (separated by commas). (default: %(default)s)" ],
@@ -425,7 +426,6 @@
"reduce_flashing": [ "Reduce some in-game flashing (default: %(default)s)" ], "reduce_flashing": [ "Reduce some in-game flashing (default: %(default)s)" ],
"shuffle_sfx": [ "Shuffle sounds effects (default: %(default)s)" ], "shuffle_sfx": [ "Shuffle sounds effects (default: %(default)s)" ],
"msu_resume": [ "Enable MSU Resume (default: %(default)s)" ], "msu_resume": [ "Enable MSU Resume (default: %(default)s)" ],
"collection_rate": [ "Display collection rate (default: %(default)s)" ],
"create_rom": [ "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)" ], "gui": [ "Launch the GUI. (default: %(default)s)" ],
"jsonout": [ "jsonout": [

View File

@@ -191,7 +191,6 @@
"randomizer.gameoptions.reduce_flashing": "Reduce Flashing", "randomizer.gameoptions.reduce_flashing": "Reduce Flashing",
"randomizer.gameoptions.shuffle_sfx": "Shuffle Sound Effects", "randomizer.gameoptions.shuffle_sfx": "Shuffle Sound Effects",
"randomizer.gameoptions.msu_resume": "MSU Resume", "randomizer.gameoptions.msu_resume": "MSU Resume",
"randomizer.gameoptions.collection_rate": "Display Collection Rate",
"randomizer.gameoptions.heartcolor": "Heart Color", "randomizer.gameoptions.heartcolor": "Heart Color",
"randomizer.gameoptions.heartcolor.red": "Red", "randomizer.gameoptions.heartcolor.red": "Red",
@@ -249,6 +248,7 @@
"randomizer.item.race": "Generate \"Race\" ROM", "randomizer.item.race": "Generate \"Race\" ROM",
"randomizer.item.retro": "Retro mode", "randomizer.item.retro": "Retro mode",
"randomizer.item.pseudoboots": "Pseudoboots", "randomizer.item.pseudoboots": "Pseudoboots",
"randomizer.item.collection_rate": "Display Collection Rate",
"randomizer.item.worldstate": "World State", "randomizer.item.worldstate": "World State",
"randomizer.item.worldstate.standard": "Standard", "randomizer.item.worldstate.standard": "Standard",

View File

@@ -2,7 +2,6 @@
"checkboxes": { "checkboxes": {
"nobgm": { "type": "checkbox" }, "nobgm": { "type": "checkbox" },
"msu_resume": { "type": "checkbox" }, "msu_resume": { "type": "checkbox" },
"collection_rate": {"type": "checkbox"},
"quickswap": { "type": "checkbox" }, "quickswap": { "type": "checkbox" },
"reduce_flashing": { "type": "checkbox" }, "reduce_flashing": { "type": "checkbox" },
"shuffle_sfx": { "type": "checkbox" } "shuffle_sfx": { "type": "checkbox" }

View File

@@ -2,6 +2,7 @@
"checkboxes": { "checkboxes": {
"hints": { "type": "checkbox" }, "hints": { "type": "checkbox" },
"pseudoboots": { "type": "checkbox" }, "pseudoboots": { "type": "checkbox" },
"collection_rate": {"type": "checkbox"},
"race": { "type": "checkbox" } "race": { "type": "checkbox" }
}, },
"leftItemFrame": { "leftItemFrame": {

View File

@@ -57,6 +57,7 @@ SETTINGSTOPROCESS = {
"item": { "item": {
"hints": "hints", "hints": "hints",
"pseudoboots": "pseudoboots", "pseudoboots": "pseudoboots",
'collection_rate': 'collection_rate',
"race": "race", "race": "race",
"worldstate": "mode", "worldstate": "mode",
@@ -139,7 +140,6 @@ SETTINGSTOPROCESS = {
"reduce_flashing": "reduce_flashing", "reduce_flashing": "reduce_flashing",
"shuffle_sfx": "shuffle_sfx", "shuffle_sfx": "shuffle_sfx",
'msu_resume': 'msu_resume', 'msu_resume': 'msu_resume',
'collection_rate': 'collection_rate',
}, },
"generation": { "generation": {
"bps": "bps", "bps": "bps",