basepatch changes
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -34,3 +34,5 @@ get-pip.py
|
|||||||
|
|
||||||
venv
|
venv
|
||||||
test
|
test
|
||||||
|
*.zspr
|
||||||
|
data/base2current.json
|
||||||
|
|||||||
6
Rom.py
6
Rom.py
@@ -27,7 +27,7 @@ from EntranceShuffle import door_addresses, exit_ids
|
|||||||
|
|
||||||
|
|
||||||
JAP10HASH = '03a63945398191337e896e5771f77173'
|
JAP10HASH = '03a63945398191337e896e5771f77173'
|
||||||
RANDOMIZERBASEHASH = '30147375153cc57197805eddf38c2a23'
|
RANDOMIZERBASEHASH = '8350a310f10293f2ef2b84305bad489e'
|
||||||
|
|
||||||
|
|
||||||
class JsonRom(object):
|
class JsonRom(object):
|
||||||
@@ -1293,9 +1293,9 @@ def patch_rom(world, rom, player, team, enemized):
|
|||||||
|
|
||||||
# Set basepatch switches for the futuro mode
|
# Set basepatch switches for the futuro mode
|
||||||
if world.futuro[player]:
|
if world.futuro[player]:
|
||||||
rom.write_byte(0x18008D, 0x00)
|
|
||||||
else:
|
|
||||||
rom.write_byte(0x18008D, 0x01)
|
rom.write_byte(0x18008D, 0x01)
|
||||||
|
else:
|
||||||
|
rom.write_byte(0x18008D, 0x00)
|
||||||
|
|
||||||
equip[0x343] = min(equip[0x343], starting_max_bombs)
|
equip[0x343] = min(equip[0x343], starting_max_bombs)
|
||||||
rom.write_byte(0x180034, starting_max_bombs)
|
rom.write_byte(0x180034, starting_max_bombs)
|
||||||
|
|||||||
Binary file not shown.
File diff suppressed because one or more lines are too long
@@ -185,7 +185,7 @@
|
|||||||
|
|
||||||
|
|
||||||
"randomizer.item.retro": "Retro mode (universal keys)",
|
"randomizer.item.retro": "Retro mode (universal keys)",
|
||||||
"randomizer.item.futuro": "Futuro mode (OoT-like start)",
|
"randomizer.item.futuro": "Futuro",
|
||||||
|
|
||||||
"randomizer.item.worldstate": "World State",
|
"randomizer.item.worldstate": "World State",
|
||||||
"randomizer.item.worldstate.standard": "Standard",
|
"randomizer.item.worldstate.standard": "Standard",
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"checkboxes": {
|
"checkboxes": {
|
||||||
"retro": { "type": "checkbox" }
|
"retro": { "type": "checkbox" },
|
||||||
|
"futuro": { "type": "checkbox" }
|
||||||
},
|
},
|
||||||
"leftItemFrame": {
|
"leftItemFrame": {
|
||||||
"worldstate": {
|
"worldstate": {
|
||||||
|
|||||||
Reference in New Issue
Block a user