Skip to content
Draft
Changes from all commits
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
30 changes: 28 additions & 2 deletions region/tourian/main/Metroid Room 4.json
Original file line number Diff line number Diff line change
Expand Up @@ -357,9 +357,18 @@
"link": [1, 2],
"name": "Tank the Damage",
"requires": [
{"metroidFrames": 240}
{"metroidFrames": 240},
{"or": [
"Plasma",
"Wave",
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
"Wave",

I dont see any reason to include wave. It's trivially easy to open the door if you know how (jump shoot), but wave behaves the same as all other beams besides Plasma. Using Wave to open the door while above seems like a higher skill as well though, especially because it's possible to hit the Metroid, or if you dont prepare and shoot it, youre in the same scenario of needing to jump shoot.

"canDodgeWhileShooting"
]}
],
"flashSuitChecked": true,
"unlocksDoors": [
{"nodeId": 2, "types": ["missiles"], "requires": ["canDodgeWhileShooting", {"metroidFrames": 50}]},
Copy link
Contributor

Choose a reason for hiding this comment

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

It's kind of funny, because you can actually shoot missiles normally. But I see the reason for wanting to have this here.

I think PBs should be added as well with some extra frames.

{"nodeId": 2, "types": ["super"], "requires": ["canTrickyJump", {"metroidFrames": 50}]}
],
"note": [
"Taking a rinka hit stops the Metroid damage for a while and is less damage.",
"Note that angle-down shots with a Metroid on Samus are unreliable, so it is recommended to jump and shoot down to open the door."
Expand Down Expand Up @@ -563,7 +572,24 @@
"name": "Tank the Damage",
"requires": [
{"enemyDamage": {"enemy": "Rinka", "type": "contact", "hits": 1}},
{"metroidFrames": 256}
{"metroidFrames": 256},
{"or": [
"Plasma",
"Wave",
"canDodgeWhileShooting"
]}
Comment on lines +575 to +580
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
{"metroidFrames": 256},
{"or": [
"Plasma",
"Wave",
"canDodgeWhileShooting"
]}
{"metroidFrames": 256}

If the door is blue, I dont see any reason for this. You'll still run to the door and keep firing, so it'll open once youre close enough.

],
"unlocksDoors": [
Copy link
Contributor

Choose a reason for hiding this comment

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

I'm on the fence with these. The missiles you might fire a couple extra, but you could also stand further back and when they arent firing you might panic.

With Supers, you'll be running towards the door, so your super might be eaten, but your second super should hit.

{"nodeId": 1, "types": ["missiles"], "requires": ["canDodgeWhileShooting", {"metroidFrames": 50}]},
{"nodeId": 1, "types": ["super"], "requires": [
{"or": [
{"and": [
"canDodgeWhileShooting",
{"ammo": {"type": "Super", "count": 1}}
]},
"canTrickyJump"
]}
]}
],
"flashSuitChecked": true,
"note": "Taking a rinka hit stops the Metroid damage for a while and is less damage.",
Expand Down