cutechicken commited on
Commit
2a955e1
·
verified ·
1 Parent(s): 387a733

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +2 -2
index.html CHANGED
@@ -1547,8 +1547,8 @@ bullets = bullets.filter(bullet => {
1547
  'hit'
1548
  ));
1549
 
1550
- // 데미지를 1.5배로 증가
1551
- let damage = currentWeapon === 'cannon' ? 1000 : 100; // 기존 250과 50 대비 상당량 증가
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) {