Lower Norfair Fireflea Room: Rock Breaker

Room ID: 145

Wiki
From: 3
Top Right Door
To: 2
Bottom Left Door

Destroy the Boulders with Supers or with pseudo screw.

Requires:

"canDodgeWhileShooting"
{
  "or": [
    {
      "ammo": {
        "type": "Super",
        "count": 1
      }
    },
    {
      "enemyDamage": {
        "enemy": "Boulder",
        "type": "contact",
        "hits": 1
      }
    },
    {
      "and": [
        {
          "disableEquipment": "ScrewAttack"
        },
        "canPseudoScrew"
      ]
    }
  ]
}
{
  "or": [
    "Ice",
    {
      "enemyDamage": {
        "enemy": "Boulder",
        "type": "contact",
        "hits": 1
      }
    },
    {
      "ammo": {
        "type": "Super",
        "count": 1
      }
    },
    "canTrickyJump"
  ]
}

Dev note: canDodgeWhileShooting is used partially as a knowledge check that Boulders can be destroyed and partially for dodging requirements.