Nymbo commited on
Commit
b9fed9a
·
verified ·
1 Parent(s): 75b1060

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +1 -1
index.html CHANGED
@@ -263,7 +263,7 @@
263
  }
264
 
265
  function bossDamage() {
266
- const damageAmount = 15;
267
  const targetAlly = allies[Math.floor(Math.random() * allies.length)];
268
  targetAlly.hp = Math.max(targetAlly.hp - damageAmount, 0);
269
  updateHealthBar(targetAlly, document.querySelectorAll('.health-bar')[targetAlly.id]);
 
263
  }
264
 
265
  function bossDamage() {
266
+ const damageAmount = 8;
267
  const targetAlly = allies[Math.floor(Math.random() * allies.length)];
268
  targetAlly.hp = Math.max(targetAlly.hp - damageAmount, 0);
269
  updateHealthBar(targetAlly, document.querySelectorAll('.health-bar')[targetAlly.id]);