Wasteland: G-Mode, Collect the Item and Return to the Right

Room ID: 138

Wiki
From: 9
G-Mode Morph Junction Left of Morph Tunnel (Off-Camera)
To: 2
Top Right Door

Exit G-mode while on the item pedestal, while off-camera, then return to the right through the Dessgeegas that can't damage Samus off-screen. It is possible to use a Power Bomb and quickly exiting G-mode to have the bomb block broken on exit, but this will also partially break the Power Bomb blocks and could make exit traversal less straightforward.

Requires:

"h_heatedGMode"
"Morph"
{
  "or": [
    {
      "and": [
        "h_useMorphBombs",
        {
          "heatFrames": 1000
        }
      ]
    },
    {
      "and": [
        {
          "heatFrames": 850
        },
        {
          "ammo": {
            "type": "PowerBomb",
            "count": 3
          }
        }
      ]
    }
  ]
}
{
  "or": [
    "canOffScreenMovement",
    {
      "heatFrames": 200
    }
  ]
}
{
  "or": [
    {
      "and": [
        "canInsaneJump",
        {
          "heatFrames": 60
        }
      ]
    },
    {
      "obstaclesCleared": [
        "E"
      ]
    },
    "h_useSpringBall",
    {
      "hibashiHits": 1
    },
    {
      "ammo": {
        "type": "PowerBomb",
        "count": 1
      }
    }
  ]
}

Dev note: FIXME: The Hibashi doesn't need a 4th PB in the power bomb case.