Added option to keep original palettes in crossed dungeon mode

If sanc if in a DW dungeon because of crossed+ ER, then you start in bunny form
Mirroring from sanc to the portal is now in logic
Another fix for animated tiles (fairy fountains)
GT Big Key stat changed on credits

Some standard logic fixes for lobbies (more outstanding)
This commit is contained in:
aerinon
2020-11-16 10:51:26 -07:00
parent 11154e1544
commit 4dda394a90
24 changed files with 186 additions and 37 deletions

View File

@@ -70,6 +70,12 @@
"force"
]
},
"standardize_palettes" : {
"choices": [
"standardize",
"original"
]
},
"timer": {
"choices": [
"none",

View File

@@ -251,6 +251,11 @@
"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"
],
"standardize_palettes": [
"In cross dungeon shuffle, we can keep the rooms original palette or attempt to standardize them",
"Standardize: Attempts to make the palette the same between dungeons",
"Original: Dungeons rooms retain original palettes"
],
"retro": [
"Keys are universal, shooting arrows costs rupees,",
"and a few other little things make this more like Zelda-1. (default: %(default)s)"

View File

@@ -77,6 +77,10 @@
"randomizer.dungeon.mixed_travel.allow": "Allow Mixed Dungeon Travel",
"randomizer.dungeon.mixed_travel.force": "Force Reachable Areas to Same Dungeon",
"randomizer.dungeon.standardize_palettes": "Crossed Dungeon Palette ",
"randomizer.dungeon.standardize_palettes.standardize": "Standardize Palettes",
"randomizer.dungeon.standardize_palettes.original": "Keep Original Palettes",
"randomizer.enemizer.potshuffle": "Pot Shuffle",
"randomizer.enemizer.enemyshuffle": "Enemy Shuffle",

View File

@@ -35,7 +35,7 @@
},
"mixed_travel": {
"type" : "selectbox",
"default": "auto",
"default": "prevent",
"options": [
"prevent",
"allow",
@@ -44,6 +44,17 @@
"config": {
"width": 35
}
},
"standardize_palettes" : {
"type": "selectbox",
"default": "standardize",
"options": [
"standardize",
"original"
],
"config": {
"width": 35
}
}
}
}