From 05095633b39a5ba99fb4881f5c4499359d2b54e6 Mon Sep 17 00:00:00 2001 From: Gregory Campbell Date: Sun, 3 May 2020 15:04:58 -0400 Subject: [PATCH] Added some unique battles for a few challenge levels --- Assets/Scripts/GMScript.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Assets/Scripts/GMScript.cs b/Assets/Scripts/GMScript.cs index fa4e374..cb47659 100644 --- a/Assets/Scripts/GMScript.cs +++ b/Assets/Scripts/GMScript.cs @@ -197,15 +197,15 @@ public class GMScript : MonoBehaviour if(PlayerPrefs.GetInt("Level") == 1) { - SeedParse(new int[] {7,7,7,7,4,4,4,4,4,4,2,2,2,2,0}); + SeedParse(new int[] {7,8,6,9,4,4,4,4,4,3,2,2,2,0}); } else if(PlayerPrefs.GetInt("Level") == 2){ - SeedParse(new int[] {7,7,7,7,4,4,4,4,4,4,2,2,2,2,0}); + SeedParse(new int[] {0,11,1,14,4,4,4,4,4,3,7,5,6,0}); } else if (PlayerPrefs.GetInt("Level") == 3){ - SeedParse(new int[] {7,7,7,7,4,4,4,4,4,4,2,2,2,2,0}); + SeedParse(new int[] {7,7,7,7,4,4,4,4,4,3,2,2,2,0}); } else if (PlayerPrefs.GetInt("Level") == 4){ - SeedParse(new int[] {7,7,7,7,4,4,4,4,4,4,2,2,2,2,0}); + SeedParse(new int[] {7,7,7,7,4,4,4,4,4,3,2,2,2,0}); } else if (PlayerPrefs.GetInt("Level") == 5){ - SeedParse(new int[] {7,7,7,7,4,4,4,4,4,4,2,2,2,2,0}); + SeedParse(new int[] {7,7,7,7,4,4,4,4,4,3,2,2,2,0}); } else if (PlayerPrefs.GetInt("Level") == 6){ SeedParse(new int[] {7,7,7,7,4,4,4,4,4,4,2,2,2,2,0}); } else if(PlayerPrefs.GetInt("Level") == 7){