From 271ad338532b4aae31a2e4e70e535345e4f1f9dd Mon Sep 17 00:00:00 2001 From: Gregory Campbell Date: Sat, 11 Apr 2020 11:17:42 -0400 Subject: [PATCH] Doubled enemy robot health for balancing --- Assets/Scripts/GMScript.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/GMScript.cs b/Assets/Scripts/GMScript.cs index 2e28578..0e5c7e4 100644 --- a/Assets/Scripts/GMScript.cs +++ b/Assets/Scripts/GMScript.cs @@ -32,7 +32,7 @@ public class GMScript : MonoBehaviour private bool gameover = false; private bool victory = false; private int partyHealth = 16; - private int enemyHealth = 16; + private int enemyHealth = 32; private int partyAttack = 2; private int enemyAttack = 4; private static int partySize = 4;