Learn Basic JavaScript by Building a Role Playing Game - Step 157

Tell us what’s happening:

This is my code:

if (Math.random() <= .1) {
text.innerText += " Your " + inventory.pop() + " breaks.";
currentWeaponIndex-- && inventory.length !== 1;
}
}

I have tried experimenting to no avail. Can someone please give me some advice? Thanking you .

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

function attack() {
  text.innerText = "The " + monsters[fighting].name + " attacks.";
  text.innerText += " You attack it with your " + weapons[currentWeaponIndex].name + ".";
  health -= getMonsterAttackValue(monsters[fighting].level);
  if (isMonsterHit()) {
    monsterHealth -= weapons[currentWeaponIndex].power + Math.floor(Math.random() * xp) + 1;    
  } else {
    text.innerText += " You miss.";
  }
  healthText.innerText = health;
  monsterHealthText.innerText = monsterHealth;
  if (health <= 0) {
    lose();
  } else if (monsterHealth <= 0) {
    if (fighting === 2) {
      winGame();
    } else {
      defeatMonster();
    }
  }
  if (Math.random() <= .1) {
    text.innerText += " Your " + inventory.pop() + " breaks.";
    currentWeaponIndex-- && inventory.length !== 1;
  }
}

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0

Challenge Information:

Learn Basic JavaScript by Building a Role Playing Game - Step 157

this is the if statement the instructions want you to modify
This if has 1 condition right now. They want you to add a second condition using the logical and operator

Thanks it worked. I appreciate your guidance.

1 Like