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
12 changes: 12 additions & 0 deletions helpers.json
Original file line number Diff line number Diff line change
Expand Up @@ -1034,6 +1034,18 @@
]}
]
},
{
"name": "h_avoidScrewStuck",
"requires": [
{"or": [
"Morph",
"canCarefulJump"
]}
],
"devNote": [
"ScrewAttack can create 2 tile high spaces with Samus in spinjump leading to a crouch, resulting in a potential softlock."
]
},
{
"name": "h_shinechargeMaxRunway",
"requires": [
Expand Down
7 changes: 6 additions & 1 deletion region/brinstar/pink/Dachora Room.json
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@
{"and": [
"canDash",
"ScrewAttack",
"h_avoidScrewStuck",
{"cycleFrames": 620}
]},
{"and": [
Expand Down Expand Up @@ -405,6 +406,7 @@
{"or": [
"h_getBlueSpeedMaxRunway",
"h_destroyBombWalls",
"h_avoidScrewStuck",
{"obstaclesCleared": ["A"]}
]}
],
Expand Down Expand Up @@ -1106,7 +1108,10 @@
"h_getBlueSpeedMaxRunway",
"canCarefulJump"
]},
"h_destroyBombWalls",
{"and": [
"h_destroyBombWalls",
"h_avoidScrewStuck"
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 worry a bit about the readability of this. I wouldve thought the helper would include screw.

]},
{"obstaclesCleared": ["A"]}
]}
],
Expand Down
25 changes: 19 additions & 6 deletions region/crateria/central/Landing Site.json
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,10 @@
"name": "Base",
"requires": [
{"or": [
"h_destroyBombWalls",
{"and": [
"h_destroyBombWalls",
"h_avoidScrewStuck"
]},
{"obstaclesCleared": ["A"]}
]}
],
Expand Down Expand Up @@ -822,7 +825,8 @@
"requires": [
"canSpeedyJump",
"canCarefulJump",
"ScrewAttack"
"ScrewAttack",
"h_avoidScrewStuck"
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 think having this include screw would be nicer for this one as well - because this strat already included a careful jump, so it feels a bit weird to have this helper which is technically just careful jump or morph

Copy link
Copy Markdown
Contributor

@kjbranch kjbranch Apr 18, 2026

Choose a reason for hiding this comment

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

The careful jump should remain here, as it wouldnt be required if you have Morph.

Edit: (A little confused, the preview here shows it remains, but the Files Changed shows it removed)

],
"clearsObstacles": ["A"],
"flashSuitChecked": true,
Expand Down Expand Up @@ -1699,7 +1703,10 @@
]}
]},
{"or": [
"h_destroyBombWalls",
{"and": [
"h_destroyBombWalls",
"h_avoidScrewStuck"
]},
{"obstaclesCleared": ["A"]}
]}
],
Expand Down Expand Up @@ -1746,7 +1753,8 @@
"h_storedSpark",
"canMidairShinespark",
{"shinespark": {"frames": 31, "excessFrames": 2}},
"h_destroyBombWalls"
"h_destroyBombWalls",
"h_avoidScrewStuck"
],
"clearsObstacles": ["A"],
"flashSuitChecked": true,
Expand Down Expand Up @@ -1951,7 +1959,10 @@
"canJumpIntoIBJ"
]},
{"or": [
"h_destroyBombWalls",
{"and": [
"h_destroyBombWalls",
"h_avoidScrewStuck"
]},
{"obstaclesCleared": ["A"]}
]}
],
Expand All @@ -1970,6 +1981,7 @@
"h_bombThings",
{"and": [
"ScrewAttack",
"h_avoidScrewStuck",
{"or": [
"canTwoTileSqueeze",
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.

It took me a minute to figure out how to do this and I wasn't sure if it was reasonable, or if it should need a description. But this strat is technically a walljumpless strat, so maybe it doesnt matter as much.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

I find its really different from the other 2high stand up strats so I upped the difficulty, calling it a tunnel crawl.

"canSpeedyJump",
Expand Down Expand Up @@ -2008,7 +2020,8 @@
"requires": [
"h_storedSpark",
{"shinespark": {"frames": 7, "excessFrames": 2}},
"h_destroyBombWalls"
"h_destroyBombWalls",
"h_avoidScrewStuck"
],
"clearsObstacles": ["A"],
"flashSuitChecked": true,
Expand Down
10 changes: 8 additions & 2 deletions region/crateria/west/Gauntlet Energy Tank Room.json
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,10 @@
{"acidFrames": 35}
]},
{"or": [
"ScrewAttack",
{"and": [
"ScrewAttack",
"h_avoidScrewStuck"
]},
{"obstaclesCleared": ["A", "B"]}
]}
],
Expand Down Expand Up @@ -1334,7 +1337,10 @@
{"acidFrames": 35}
]},
{"or": [
"ScrewAttack",
{"and": [
"ScrewAttack",
"h_avoidScrewStuck"
]},
{"and": [
{"obstaclesCleared": ["A"]},
{"obstaclesCleared": ["B"]}
Expand Down
2 changes: 2 additions & 0 deletions region/crateria/west/Gauntlet Entrance.json
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@
"name": "Base",
"requires": [
"ScrewAttack",
"h_avoidScrewStuck",
{"or": [
"canCarefulJump",
{"acidFrames": 15}
Expand Down Expand Up @@ -798,6 +799,7 @@
"name": "Base",
"requires": [
"ScrewAttack",
"h_avoidScrewStuck",
{"or": [
"canCarefulJump",
{"acidFrames": 15}
Expand Down
2 changes: 2 additions & 0 deletions region/lowernorfair/east/Pillar Room.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@
"requires": [
"canDash",
"ScrewAttack",
"h_avoidScrewStuck",
{"or": [
"canCarefulJump",
{"heatFrames": 60}
Expand Down Expand Up @@ -686,6 +687,7 @@
"canDash",
"canCarefulJump",
"ScrewAttack",
"h_avoidScrewStuck",
{"or": [
{"and": [
"canSuitlessLavaDive",
Expand Down
1 change: 1 addition & 0 deletions schema/m3-string-requirements.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,7 @@
"h_additionalBomb",
"h_useSpringBall",
"h_hasBeamUpgrade",
"h_avoidScrewStuck",
"h_shinechargeMaxRunway",
"h_getBlueSpeedMaxRunway",
"h_shinechargeSlideTemporaryBlue",
Expand Down
Loading