Colosseum: Base

Room ID: 189

Wiki
Base (Medium)
Colosseum
From: 1
Left Door
To: 3
Top Right Door

Cross the room with Grapple or wall jumps. Under the sand is spikes. Be sure not to turn around before landing or Samus will fall straight through the sand. Breaking spin while midair, such as by tapping an angle button, will help Samus land less deep in the sand - a quick jump when landing will give her a much higher jump. The last wall jump to get around the corner is tricky but it does not require a delayed wall jump, even without HiJump.

Requires:

"Gravity"
{
  "or": [
    {
      "and": [
        "HiJump",
        "canWalljump",
        {
          "or": [
            "canPlayInSand",
            "canConsecutiveWalljump"
          ]
        }
      ]
    },
    {
      "and": [
        "canTrickyWalljump",
        "canConsecutiveWalljump"
      ]
    },
    {
      "and": [
        "canPreciseGrapple",
        "canCarefulJump"
      ]
    }
  ]
}
{
  "or": [
    {
      "ammo": {
        "type": "Missile",
        "count": 2
      }
    },
    {
      "ammo": {
        "type": "Super",
        "count": 2
      }
    },
    "canUseGrapple",
    "canDodgeWhileShooting",
    "Spazer",
    "Wave",
    "Plasma",
    "ScrewAttack",
    {
      "enemyDamage": {
        "enemy": "Mochtroid",
        "type": "contact",
        "hits": 1
      }
    }
  ]
}
{
  "or": [
    "canPlayInSand",
    {
      "spikeHits": 2
    }
  ]
}