Room ID: 145
|
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. |