Skip to content

Commit d7dfb9b

Browse files
committed
Merge 'Add water hop to morpha and compass chest + MQ' (OoTRandomizer#2496)
2 parents 1fc50de + 0b6122c commit d7dfb9b

5 files changed

Lines changed: 22 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* The `Free Reward from Rauru` has a new `Yes (Forced)` option which forces the check to be a dungeon reward even if these are otherwise shuffled.
66
* The `Maps & Compasses` shuffle setting has been split into separate `Maps` and `Compasses` settings.
77
* The Farore's Wind text box now distinguishes between Ganon's Castle and Ganon's Tower.
8+
* New `Water Hop` trick added to advanced logic.
89

910
## Bug fixes
1011
* Fix a potential softlock when talking to Pierre (the upper scarecrow) as child in Lake Hylia.

SettingsListTricks.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2872,6 +2872,18 @@
28722872
You can also do the same by abusing invincibility frames
28732873
if not on ohko.
28742874
'''},
2875+
'(Advanced) Water Hop': {
2876+
'name' : 'adv_water_hop',
2877+
'tags' : ("Advanced",),
2878+
'tooltip' : '''\
2879+
By equipping the Iron Boots right before surfacing,
2880+
you can keep the momentum from the swim up from a dive
2881+
to propel yourself out of the water higher than usual
2882+
allowing ledges to be grabbed.
2883+
2884+
Notably allows for access to Morpha's ledge and the
2885+
Eastern Middle Layer ledge in Water Temple.
2886+
'''},
28752887
'(Glitch) Water Temple Antigrav to Boss Key Area': {
28762888
'name' : 'glitch_water_bk_area_antigrav',
28772889
'tags' : ("Glitch","Adult","Water Temple","Water Temple MQ",),

data/Glitched World/Water Temple MQ.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,11 @@
5151
is_adult and (Zora_Tunic or logic_fewer_tunic_requirements) and Iron_Boots
5252
)",
5353
"Water Temple Storage Room": "is_adult and Iron_Boots and
54-
(Zora_Tunic or logic_fewer_tunic_requirements) and Hookshot",
54+
(Zora_Tunic or logic_fewer_tunic_requirements) and
55+
(Hookshot or adv_water_hop)",
5556
"Water Temple Before Boss Lower": "can_use(Longshot) or
5657
(adv_hovers_recoil and can_use(Hover_Boots) and Megaton_Hammer) or
58+
(adv_water_hop and can_use(Iron_Boots) and Raise_Water_Level) or
5759
((can_mega or can_hess or can_superslide) and can_use(Hover_Boots)) or
5860
can_hover",
5961
"Water Temple After Waterfall Room": "

data/Glitched World/Water Temple.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,13 @@
3333
((logic_water_temple_torch_longshot and Longshot) or Iron_Boots)
3434
)",
3535
"Water Temple Compass Room": "is_adult and Iron_Boots and
36-
(Zora_Tunic or logic_fewer_tunic_requirements) and Hookshot",
36+
(Zora_Tunic or logic_fewer_tunic_requirements) and
37+
(Hookshot
38+
or (adv_water_hop and can_live_dmg(1.0,false,false))
39+
)",
3740
"Water Temple Before Boss": "can_use(Longshot) or
3841
(adv_hovers_recoil and can_use(Hover_Boots) and Megaton_Hammer) or
42+
(adv_water_hop and can_use(Iron_Boots) and Raise_Water_Level) or
3943
((can_mega or can_hess or can_superslide) and can_use(Hover_Boots)) or
4044
can_hover",
4145
"Water Temple North Basement": "can_use(Iron_Boots) and (Zora_Tunic or logic_fewer_tunic_requirements)

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '9.0.12'
1+
__version__ = '9.0.13'
22

33
# This is a supplemental version number for branches based off of main dev.
44
supplementary_version = 0

0 commit comments

Comments
 (0)