Update index.html
Browse files- index.html +2 -2
index.html
CHANGED
@@ -1547,8 +1547,8 @@ bullets = bullets.filter(bullet => {
|
|
1547 |
'hit'
|
1548 |
));
|
1549 |
|
1550 |
-
//
|
1551 |
-
let damage = currentWeapon === 'cannon' ? 1000 :
|
1552 |
enemy.health -= damage;
|
1553 |
|
1554 |
if(enemy.health <= 0) {
|
|
|
1547 |
'hit'
|
1548 |
));
|
1549 |
|
1550 |
+
// 데미지 증가
|
1551 |
+
let damage = currentWeapon === 'cannon' ? 1000 : 150; // 기존 250과 50 대비 상당량 증가
|
1552 |
enemy.health -= damage;
|
1553 |
|
1554 |
if(enemy.health <= 0) {
|