Merged in DR v1.4.1.6

This commit is contained in:
codemann8
2024-02-10 18:48:05 -06:00
76 changed files with 12756 additions and 1695 deletions

View File

@@ -96,8 +96,11 @@
"type": "bool"
},
"dropshuffle" : {
"action": "store_true",
"type": "bool"
"choices" : [
"none",
"keys",
"underworld"
]
},
"pottery" : {
"choices" : [
@@ -535,9 +538,6 @@
"bps": {
"action": "store_true"
},
"enemizercli": {
"setting": "enemizercli"
},
"shufflebosses": {
"choices": [
"none",
@@ -550,9 +550,7 @@
"shuffleenemies": {
"choices": [
"none",
"shuffled",
"random",
"legacy"
"shuffled"
]
},
"enemy_health": {
@@ -571,6 +569,13 @@
"random"
]
},
"any_enemy_logic": {
"choices": [
"none",
"allow_drops",
"allow_all"
]
},
"remote_items": {
"action": "store_true",
"type": "bool"

View File

@@ -343,7 +343,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",
@@ -382,6 +386,12 @@
"collection_rate": [ "Display collection rate (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)" ],
"any_enemy_logic": [
"How to handle potential traversal between dungeon in Crossed door shuffle",
"None: Enemies that required unusual weaponry are not allowed to logical protect doors, chests, or key drops.",
"Allow_Drops: Drops are okay for those enemies, and a correct weapon is logically required",
"Allow_All: All enemies allowed anywhere. (Logic will be adapted to the placement)"
],
"startinventory": [ "Specifies a list of items that will be in your starting inventory (separated by commas). (default: %(default)s)" ],
"usestartinventory": [ "Toggle usage of Starting Inventory." ],
"customizer": ["Path to a customizer file."],

View File

@@ -134,8 +134,10 @@
"randomizer.enemizer.enemyhealth.hard": "Hard",
"randomizer.enemizer.enemyhealth.expert": "Expert",
"randomizer.enemizer.enemizercli": "EnemizerCLI path: ",
"randomizer.enemizer.enemizercli.online": "(get online)",
"randomizer.enemizer.enemylogic": "Enemy Logic",
"randomizer.enemizer.enemylogic.none": "Forbid special enemies",
"randomizer.enemizer.enemylogic.allow_drops": "Item drops may have special enemies",
"randomizer.enemizer.enemylogic.allow_all": "Allow special enemies anywhere",
"randomizer.overworld.overworldshuffle": "Layout Shuffle",
@@ -355,7 +357,10 @@
"randomizer.item.colorizepots": "Colorize Randomized Pots",
"randomizer.item.potshuffle": "Pot Shuffle (Legacy)",
"randomizer.item.dropshuffle": "Shuffle Enemy Key Drops",
"randomizer.item.dropshuffle": "Enemy Drops",
"randomizer.item.dropshuffle.none": "None",
"randomizer.item.dropshuffle.keys": "Small Key Enemies",
"randomizer.item.dropshuffle.underworld": "Underworld Enemies",
"randomizer.item.keydropshuffle": "Enable Key Drop Shuffle (Legacy)",
"randomizer.item.take_any": "Take Any Caves",

View File

@@ -4,9 +4,7 @@
"type": "selectbox",
"options": [
"none",
"shuffled",
"random",
"legacy"
"shuffled"
]
},
"bossshuffle": {
@@ -39,5 +37,19 @@
"expert"
]
}
},
"bottomEnemizerFrame": {
"enemylogic": {
"type": "selectbox",
"default": "allow_all",
"options": [
"none",
"allow_drops",
"allow_all"
],
"config": {
"width": 32
}
}
}
}

View File

@@ -158,12 +158,17 @@
}
},
"dropshuffle": {
"type": "checkbox"
}
"type": "selectbox",
"default": "none",
"options": [
"none",
"keys",
"underworld"
]}
},
"leftPoolFrame2": {
"keydropshuffle": {
"type": "button",
"type": "checkbox",
"config": {
"command": "keydropshuffle"
}