Implement prelim enums

This commit is contained in:
Mike A. Trethewey
2020-03-12 16:16:15 -07:00
parent d8ea5b0fd0
commit 4b0f30a85f
9 changed files with 160 additions and 40 deletions

View File

@@ -155,9 +155,9 @@
"randomizer.generation.spoiler": "Create Spoiler Log",
"randomizer.generation.suppressrom": "Do not create patched ROM",
"randomizer.generation.usestartinventory": "Use starting inventory",
"randomizer.generation.usecustompool": "Use custom item pool",
"randomizer.generation.suppressrom": "Do Not create Patched ROM",
"randomizer.generation.usestartinventory": "Use Starting Inventory",
"randomizer.generation.usecustompool": "Use Custom Item Pool",
"randomizer.generation.saveonexit": "Save Settings on Exit",
"randomizer.generation.saveonexit.ask": "Ask Me",

View File

@@ -1,6 +1,8 @@
{
"mapshuffle": { "type": "checkbox" },
"compassshuffle": { "type": "checkbox" },
"smallkeyshuffle": { "type": "checkbox" },
"bigkeyshuffle": { "type": "checkbox" }
"keysanity": {
"mapshuffle": { "type": "checkbox" },
"compassshuffle": { "type": "checkbox" },
"smallkeyshuffle": { "type": "checkbox" },
"bigkeyshuffle": { "type": "checkbox" }
}
}

View File

@@ -1,22 +1,24 @@
{
"dungeondoorshuffle": {
"type": "selectbox",
"default": "basic",
"options": [
"vanilla",
"basic",
"crossed"
]
},
"experimental": { "type": "checkbox" },
"dungeon_counters": {
"type": "selectbox",
"default": "default",
"options": [
"default",
"off",
"on",
"pickup"
]
"widgets": {
"dungeondoorshuffle": {
"type": "selectbox",
"default": "basic",
"options": [
"vanilla",
"basic",
"crossed"
]
},
"experimental": { "type": "checkbox" },
"dungeon_counters": {
"type": "selectbox",
"default": "default",
"options": [
"default",
"off",
"on",
"pickup"
]
}
}
}

View File

@@ -1,6 +1,8 @@
{
"spoiler": { "type": "checkbox" },
"suppressrom": { "type": "checkbox" },
"usestartinventory": { "type": "checkbox" },
"usecustompool": { "type": "checkbox" }
"checkboxes": {
"spoiler": { "type": "checkbox" },
"suppressrom": { "type": "checkbox" },
"usestartinventory": { "type": "checkbox" },
"usecustompool": { "type": "checkbox" }
}
}

View File

@@ -1,10 +1,12 @@
{
"saveonexit": {
"type": "selectbox",
"options": [
"ask",
"always",
"never"
]
"widgets": {
"saveonexit": {
"type": "selectbox",
"options": [
"ask",
"always",
"never"
]
}
}
}

View File

@@ -1,3 +1,5 @@
{
"worlds": { "type": "spinbox" }
"widgets": {
"worlds": { "type": "spinbox" }
}
}

View File

@@ -0,0 +1 @@
aenum