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

Tell us what’s happening:

Hey everyone!! Been all over the forum, and I’m a bit lost. Not sure if I am plugging in the if statement wrong or if I am completely missing the mark here. I saw some similar posts with code close to the provided and users stated they passed, but I keep getting the error “You should add an IF statement.” Appreciate the help!

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;
  }

  };
  healthText.innerText = health;
  monsterHealthText.innerText = monsterHealth;
  if (health <= 0) {
    lose();
  } else if (monsterHealth <= 0) {
    if (fighting === 2) {
      winGame();
    } else {
      defeatMonster();
    }
  }
}

// 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/127.0.0.0 Safari/537.36 Edg/127.0.0.0

Challenge Information:

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

try erasing that extra };

1 Like

OMG - PASSED!!! Been working on this for 90 minutes. THANK YOU!

1 Like