Room ID: 82
|
Kill the pirates by placing Bombs next to them without touching them. With low Energy, it is possible to jump over the pirates and kill Mini-Kraid first, but it is difficult to do so damageless. Requires: "canDash"
"canDodgeWhileShooting"
{
"enemyKill": {
"enemies": [
[
"Green Space Pirate (standing)",
"Green Space Pirate (standing)",
"Green Space Pirate (standing)"
]
],
"explicitWeapons": [
"Bombs"
]
}
}
{
"or": [
"canTrickyJump",
{
"enemyDamage": {
"enemy": "Green Space Pirate (standing)",
"type": "contact",
"hits": 1
}
}
]
}
{
"or": [
"canInsaneJump",
{
"enemyDamage": {
"enemy": "Mini-Kraid",
"type": "spike",
"hits": 4
}
}
]
}
{
"or": [
"h_complexToCarryFlashSuit",
{
"enemyDamage": {
"enemy": "Mini-Kraid",
"type": "spike",
"hits": 3
}
}
]
}Clears obstacles: A Dev note: FIXME: Collecting the drops from the pirates could make the Mini-Kraid spike hits not matter much. |