You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: region/brinstar/green/Early Supers Room.json
+78-3Lines changed: 78 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -556,11 +556,86 @@
556
556
"devNote": [
557
557
"Slightly higher run speeds can work but with greater difficulty.",
558
558
"FIXME: comeInGettingBlueSpeed is not technically the right entrance condition, since the jump needs to happen in the other room;",
559
-
"we ignore this for now since it makes less than a tile of difference to the runway in the other room.",
560
-
"At some point we should support entrance conditions for entering spinning with upward momentum (possibly from disconnected runways like in Dust Torizo Room);",
561
-
"coming in with a blue Space Jump could also work."
559
+
"we ignore this for now since it makes less than a tile of difference to the runway in the other room."
562
560
]
563
561
},
562
+
{
563
+
"link": [2, 1],
564
+
"name": "Blue Space Jump Speedball, Leave With Temporary Blue",
Copy file name to clipboardExpand all lines: strats.md
+26-1Lines changed: 26 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -617,6 +617,7 @@ In all strats with an `entranceCondition`, the `from` node of the strat must be
617
617
-_comeInRunning_: This indicates that Samus must run into the room, with speed in a certain range.
618
618
-_comeInJumping_: This indicates that Samus must run and jump just before hitting the transition, with speed in a certain range.
619
619
-_comeInSpaceJumping_: This indicates that Samus must Space Jump through the bottom of the doorway.
620
+
-_comeInBlueSpaceJumping_: This indicates that Samus must Space Jump through the bottom of the doorway while having blue speed.
620
621
-_comeInShinecharging_: This indicates that Samus must run into the room with enough space to complete a shinecharge.
621
622
-_comeInShinecharged_: This indicates that Samus must enter the room with a shinecharge.
622
623
-_comeInShinechargedJumping_: This indicates that Samus must jump into the the room with a shinecharge.
@@ -766,6 +767,30 @@ A `comeInSpaceJumping` entrance condition must match with a `leaveSpaceJumping`
766
767
}
767
768
```
768
769
770
+
### Come In Blue Space Jumping
771
+
772
+
A `comeInBlueSpaceJumping` entrance condition indicates that Samus must come in with a Space Jump through the bottom of the doorway, while having blue speed, applicable to horizontal transitions. It has the following properties:
773
+
774
+
-_minExtraRunSpeed_: The minimum extra run speed (as a hexadecimal string) needed. This only needs to be specified if something would prevent the strat from working at too low of a speed.
775
+
-_maxExtraRunSpeed_: The maximum extra run speed (as a hexadecimal string) needed. This only needs to be specified if something would prevent the strat from working at too high of a speed.
776
+
777
+
A `comeInBlueSpaceJumping` entrance condition must match with a `leaveSpaceJumping` on the other side of the door, with the following requirements:
778
+
- The `blue` property of the matching `leaveSpaceJumping` must be "yes" or "any".
779
+
-`SpeedBooster` and `SpaceJump` item requirements.
780
+
- There must exist a possible value of extra run speed satisfying any applicable constraints, including any `minExtraRunSpeed` or `maxExtraRunSpeed` properties in the entrance condition and/or exit condition, along with implicit constraints based on shortcharge skill and the effective runway length of the `remoteRunway` in the exit condition (see the [blue run speed table](#blue-run-speed-table)).
781
+
782
+
```json
783
+
{
784
+
"name": "Come In Blue Space Jumping",
785
+
"entranceCondtion": {
786
+
"comeInBlueSpinning": {
787
+
"maxExtraRunSpeed": "$2.1"
788
+
}
789
+
},
790
+
"requires": []
791
+
}
792
+
```
793
+
769
794
### Come In Shinecharging
770
795
771
796
A `comeInShinecharging` entrance condition represents the need for Samus to run into the room with enough space to complete a shinecharge. It has the following properties describing the geometry of the runway in the current room which can be used to help complete the shinecharge (see [runway geometry](#runway-geometry) above for details):
@@ -1079,7 +1104,7 @@ A `comeInSpinning` entrance condition must match with a `leaveSpinning` or `leav
1079
1104
1080
1105
### Come In Blue Spinning
1081
1106
1082
-
A `comeInBlueSpinning` entrance condition indicates that Samus must come in with a spin jump through the doorway, possibly while having blue speed, applicable to horizontal transitions. It has the following properties:
1107
+
A `comeInBlueSpinning` entrance condition indicates that Samus must come in with a spin jump through the doorway, while having blue speed, applicable to horizontal transitions. It has the following properties:
1083
1108
1084
1109
-_unusableTiles_: For a runway connected to the door, the number of tiles before the door that are unusable for gaining speed, because of needing to jump.
1085
1110
-_minExtraRunSpeed_: The minimum extra run speed (as a hexadecimal string) needed. This only needs to be specified if something would prevent the strat from working at too low of a speed.
0 commit comments