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 서로 공격을 주고받은 모습