Skip to content

Commit 99c431a

Browse files
committed
Merge 'logic bugfix for entering botw' (OoTRandomizer#2530)
2 parents d90421b + 3202e42 commit 99c431a

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +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.
8+
* New `Water Hop` trick and `BotW Cucco Dive` glitch added to advanced logic.
99
* Improve Debug menu with new options.
1010
* Refill items sold as special deals are now less likely to cost more than the "market price" of a repeatable purchase.
1111
* The heart chest texture has been tweaked to display heart icons on the lid rather than triangles.

SettingsListTricks.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2378,6 +2378,14 @@
23782378
Drop a chu, then perform a ledgeclip from the edge near windmill
23792379
entrance to clip into BotW as adult. Alternative to Odie clip.
23802380
'''},
2381+
'(Glitch) BotW Cucco Dive': {
2382+
'name' : 'glitch_botw_cucco_dive',
2383+
'tags' : ("Glitch","Child","Bottom of the Well",),
2384+
'tooltip' : '''\
2385+
Using ISG (individual trick not required) or Nuts, you can trigger
2386+
the angry cucco cutscene as you enter the water, allowing Link to
2387+
fall through it and enter the Bottom of the Well.
2388+
'''},
23812389
'(Glitch) BotW Blank A': {
23822390
'name' : 'glitch_botw_blank_a',
23832391
'tags' : ("Glitch","Child","Bottom of the Well",),

data/Glitched World/Overworld.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1971,7 +1971,9 @@
19711971
or
19721972
(is_child and
19731973
( (glitch_navi_dive and can_jumpslash)
1974-
or (at_day and (can_isg or Nuts))
1974+
or (at_day and glitch_botw_cucco_dive and
1975+
(Nuts or (can_shield and (Sticks or Kokiri_Sword or can_use(Megaton_Hammer))))
1976+
)
19751977
)
19761978
)
19771979
or

version.py

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

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

0 commit comments

Comments
 (0)