From 0b1dcab3dd24c48fb787b0b6ba567fc2f5f9a18d Mon Sep 17 00:00:00 2001
From: Paolo Brasolin <paolo.brasolin@eurac.edu>
Date: Wed, 13 Apr 2022 12:20:00 +0200
Subject: [PATCH] fix: #fe base health

---
 frontend/src/js/fight_scene.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontend/src/js/fight_scene.ts b/frontend/src/js/fight_scene.ts
index b7733c4..500d13a 100644
--- a/frontend/src/js/fight_scene.ts
+++ b/frontend/src/js/fight_scene.ts
@@ -110,7 +110,7 @@ export default class FightScene extends Phaser.Scene {
 
   init() {
     this.score = 0;
-    this.health = 1;
+    this.health = 100;
 
     this.uiDimensions = this.initUiDimensions();
     this.hud = new HUD(this, {
-- 
GitLab