Underworld dropshuffle

This commit is contained in:
aerinon
2022-09-30 15:38:35 -06:00
parent 3c0f6ca0e6
commit b71c7aa2b4
26 changed files with 182 additions and 136 deletions

View File

@@ -89,8 +89,11 @@
"type": "bool"
},
"dropshuffle" : {
"action": "store_true",
"type": "bool"
"choices" : [
"none",
"keys",
"underworld"
]
},
"pottery" : {
"choices" : [

View File

@@ -277,7 +277,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)"],
"dropshuffle": [ "Keys dropped by enemies are shuffled and other items can take their place. (default: %(default)s)"],
"dropshuffle": [ "Controls how enemies drop items (default: %(default)s)",
"None: Enemies drops prize packs or keys as normal",
"Keys: Enemies that drop keys can drop other items and the keys are shuffled into the pool",
"Underworld: All killable enemies in the underworld can drop items"
],
"pottery": [ "Controls how items under pots are shuffled and if other items can take their place:",
"None: No pots are changed",
"Keys: Key pots are included in the location pool and other items can take their place",

View File

@@ -59,7 +59,10 @@
"randomizer.dungeon.bigkeyshuffle": "Big Keys",
"randomizer.dungeon.keydropshuffle": "Key Drop Shuffle (Legacy)",
"randomizer.dungeon.decoupledoors": "Decouple Doors",
"randomizer.dungeon.dropshuffle": "Shuffle Enemy Key Drops",
"randomizer.dungeon.dropshuffle": "Shuffle Enemy Drops",
"randomizer.dungeon.none": "None",
"randomizer.dungeon.keys": "Small Key Enemies",
"randomizer.dungeon.underworld": "Underworld Enemies",
"randomizer.dungeon.potshuffle": "Pot Shuffle (Legacy)",
"randomizer.dungeon.pottery": "Pottery",
"randomizer.dungeon.pottery.none": "None",

View File

@@ -65,7 +65,14 @@
}
},
"colorizepots": { "type": "checkbox" },
"dropshuffle": { "type": "checkbox" },
"dropshuffle": {
"type": "selectbox",
"default": "none",
"options": [
"none",
"keys",
"underworld"
]},
"potshuffle": { "type": "checkbox" },
"experimental": { "type": "checkbox" },
"dungeon_counters": {