Finish bps work
Fixing a couple bugs
This commit is contained in:
@@ -63,6 +63,13 @@
|
||||
"action": "store_true",
|
||||
"type": "bool"
|
||||
},
|
||||
"mixed_travel" : {
|
||||
"choices": [
|
||||
"prevent",
|
||||
"allow",
|
||||
"force"
|
||||
]
|
||||
},
|
||||
"timer": {
|
||||
"choices": [
|
||||
"none",
|
||||
|
||||
@@ -245,6 +245,12 @@
|
||||
"keyshuffle": [ "Small Keys are no longer restricted to their dungeons, but can be anywhere. (default: %(default)s)" ],
|
||||
"bigkeyshuffle": [ "Big Keys are no longer restricted to their dungeons, but can be anywhere. (default: %(default)s)" ],
|
||||
"keydropshuffle": [ "Key Drops (Pots and Enemies) are shuffled and other items can take their place (default: %(default)s)" ],
|
||||
"mixed_travel": [
|
||||
"How to handle potential traversal between dungeon in Crossed door shuffle",
|
||||
"Prevent: Rails are placed to prevent bombs jump and hovering from changing dungeon except with glitched logic settings",
|
||||
"Allow: Take the rails off, \"I know what I'm doing\"",
|
||||
"Force: Force these troublesome connections to be in the same dungeon (but not in logic). No rails will appear"
|
||||
],
|
||||
"retro": [
|
||||
"Keys are universal, shooting arrows costs rupees,",
|
||||
"and a few other little things make this more like Zelda-1. (default: %(default)s)"
|
||||
|
||||
@@ -72,6 +72,10 @@
|
||||
"randomizer.dungeon.dungeon_counters.on": "On",
|
||||
"randomizer.dungeon.dungeon_counters.pickup": "On Compass Pickup",
|
||||
|
||||
"randomizer.dungeon.mixed_travel": "Mixed Dungeon Travel ",
|
||||
"randomizer.dungeon.mixed_travel.prevent": "Prevent Mixed Dungeon Travel",
|
||||
"randomizer.dungeon.mixed_travel.allow": "Allow Mixed Dungeon Travel",
|
||||
"randomizer.dungeon.mixed_travel.force": "Force Reachable Areas to Same Dungeon",
|
||||
|
||||
"randomizer.enemizer.potshuffle": "Pot Shuffle",
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
"random"
|
||||
],
|
||||
"config": {
|
||||
"width": 40
|
||||
"width": 35
|
||||
}
|
||||
},
|
||||
"experimental": { "type": "checkbox" },
|
||||
@@ -32,6 +32,18 @@
|
||||
"on",
|
||||
"pickup"
|
||||
]
|
||||
},
|
||||
"mixed_travel": {
|
||||
"type" : "selectbox",
|
||||
"default": "auto",
|
||||
"options": [
|
||||
"prevent",
|
||||
"allow",
|
||||
"force"
|
||||
],
|
||||
"config": {
|
||||
"width": 35
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user