Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion region/tourian/main/Metroid Room 1.json
Original file line number Diff line number Diff line change
Expand Up @@ -801,10 +801,14 @@
]},
{"and": [
{"or": [
"canWalljump",
"canTrickyWalljump",
"HiJump"
]},
{"acidFrames": 20}
]},
{"and": [
"canPreciseWalljump",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this walljump looks that hard. For walljump vs consecutivewalljump, the basic player could be expected to miss a simple walljump but I don't see that with preciseWalljump. So this looks like walljump+miss leniency to me.
Not wanting basic to acid dive would be fine, but I don't think canPreciseWalljump needs the leniency then.

And avoiding Metroids with Ice is going to be a little hard to manage still.

Copy link
Copy Markdown
Contributor Author

@kjbranch kjbranch Apr 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've found this jump to be annoying, maybe because of the change in physics as youre jumping out or the low visibility or the high pressure to not mess up. But I can move it to just a canPreciseWalljump.

{"acidFrames": 40}
]}
]},
{"or": [
Expand Down
19 changes: 14 additions & 5 deletions region/tourian/main/Mother Brain Room.json
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,11 @@
"requires": [
"f_KilledZebetites1",
{"or": [
"canCarefulJump",
"canDodgeWhileShooting",
{"and": [
"canCarefulJump",
"ScrewAttack"
]},
{"enemyDamage": {"enemy": "Rinka", "type": "contact", "hits": 1}}
]}
],
Expand All @@ -672,7 +676,8 @@
"devNote": [
"Requires 18 ammo to fully break the glass, which will remain broken if Samus leaves.",
"Or, it takes 6 ammo to partially break the glass, and then 3000 damage is required to kill Mother Brain 1, but the glass also needs to be broken.",
"The requirements for finishing Mother Brain 1 is in the 3 to 4 link."
"The requirements for finishing Mother Brain 1 is in the 3 to 4 link.",
"This doesn't worry about the Rinkas because this strat is only useful when leaving the room afterwards and refilling."
]
},
{
Expand Down Expand Up @@ -989,7 +994,7 @@
"canMidAirMorph"
]},
{"and": [
"canCarefulJump",
"canDodgeWhileShooting",
"h_useSpringBall"
]},
{"and": [
Expand Down Expand Up @@ -1064,7 +1069,11 @@
"requires": [
"f_KilledZebetites3",
{"or": [
"canCarefulJump",
"canDodgeWhileShooting",
{"and": [
"canCarefulJump",
"ScrewAttack"
]},
{"enemyDamage": {"enemy": "Rinka", "type": "contact", "hits": 1}}
]}
],
Expand All @@ -1084,7 +1093,7 @@
"canMidAirMorph"
]},
{"and": [
"canCarefulJump",
"canDodgeWhileShooting",
"h_useSpringBall"
]},
{"and": [
Expand Down
Loading