From b8686ee11bb94f348ba1245a07af201582a43dff Mon Sep 17 00:00:00 2001 From: Gregory Campbell Date: Sat, 18 Apr 2020 14:32:55 -0400 Subject: [PATCH] Nerfed base enemy attack --- Assets/Scripts/GMScript.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/GMScript.cs b/Assets/Scripts/GMScript.cs index 73d8ecf..af938ad 100644 --- a/Assets/Scripts/GMScript.cs +++ b/Assets/Scripts/GMScript.cs @@ -44,7 +44,7 @@ public class GMScript : MonoBehaviour private int partyHealth = 16; private int enemyHealth = 32; private int partyAttack = 2; - private int enemyAttack = 4; + private int enemyAttack = 2; private static int partySize = 4; private string[] PartyMemberOrder = new string[partySize]; private int[] OrderNumbers = new int[partySize]; @@ -649,7 +649,7 @@ public class GMScript : MonoBehaviour { int modifier = 0; - int modifiedAttack = 4; + int modifiedAttack = 2; for(int i = 0; i < 2; i++){ for(int j = 0; j < partySize; j++){