Standing Items initial commit

This commit is contained in:
aerinon
2021-12-16 16:02:11 -07:00
parent c651d1d584
commit b2f2565271
26 changed files with 618 additions and 469 deletions

View File

@@ -65,8 +65,11 @@
"type": "bool"
},
"keydropshuffle" : {
"action": "store_true",
"type": "bool"
"choices": [
"none",
"keydrops",
"potsanity"
]
},
"mixed_travel" : {
"choices": [

View File

@@ -254,7 +254,11 @@
"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)" ],
"shopsanity": ["Shop contents are shuffle in the main item pool and other items can take their place. (default: %(default)s)"],
"keydropshuffle": [ "Key Drops (Pots and Enemies) are shuffled and other items can take their place (default: %(default)s)" ],
"keydropshuffle": [ "Key Drops (Pots and Enemies) are shuffled and other items can take their place:",
"None: No pots or enemies are included",
"Keydrops: Only key drops are included",
"Potsanity: All key drops and all normal pots are included"
],
"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",

View File

@@ -53,7 +53,10 @@
"randomizer.dungeon.compassshuffle": "Compasses",
"randomizer.dungeon.smallkeyshuffle": "Small Keys",
"randomizer.dungeon.bigkeyshuffle": "Big Keys",
"randomizer.dungeon.keydropshuffle": "Key Drops (pots and enemies)",
"randomizer.dungeon.keydropshuffle": "Drops and Pots",
"randomizer.dungeon.keydropshuffle.none": "None",
"randomizer.dungeon.keydropshuffle.keydrops": "Only Key Drops",
"randomizer.dungeon.keydropshuffle.potsanity": "All Pots and Key Drops",
"randomizer.dungeon.dungeondoorshuffle": "Dungeon Door Shuffle",
"randomizer.dungeon.dungeondoorshuffle.vanilla": "Vanilla",

View File

@@ -3,7 +3,6 @@
"mapshuffle": { "type": "checkbox" },
"compassshuffle": { "type": "checkbox" },
"smallkeyshuffle": { "type": "checkbox" },
"bigkeyshuffle": { "type": "checkbox" },
"keydropshuffle": { "type": "checkbox" }
"bigkeyshuffle": { "type": "checkbox" }
}
}

View File

@@ -22,6 +22,15 @@
"width": 45
}
},
"keydropshuffle": {
"type": "selectbox",
"default": "none",
"options": [
"none",
"keydrops",
"potsanity"
]
},
"potshuffle": { "type": "checkbox" },
"experimental": { "type": "checkbox" },
"dungeon_counters": {