더북(TheBook)
  if (input === '1') { // 1번 공격 선택 시
    hero.attack(monster);
    $heroHp.textContent = `HP: ${hero.hp}/${hero.maxHp}`;
    $monsterHp.textContent = `HP: ${monster.hp}/${monster.maxHp}`;
    $message.textContent = `${hero.att}의 피해를 주고, ${monster.att}의 피해를 받았다.`;
  } else if (input === '2') { // 2번 회복 선택 시
  } else if (input === '3') { // 3번 도망 선택 시
  }
});

그림 12-6 서로 공격을 주고받은 모습

신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.