From 69fdc58cb97714f856df268f08451f2ba7e5ecf2 Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期三, 21 一月 2026 10:40:56 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.1.20:10010/r/Project_SG_scripts

---
 Main/Config/Configs/FBDJGLevelConfig.cs |   20 +++++++++++++++++++-
 1 files changed, 19 insertions(+), 1 deletions(-)

diff --git a/Main/Config/Configs/FBDJGLevelConfig.cs b/Main/Config/Configs/FBDJGLevelConfig.cs
index c47f867..1c68374 100644
--- a/Main/Config/Configs/FBDJGLevelConfig.cs
+++ b/Main/Config/Configs/FBDJGLevelConfig.cs
@@ -1,6 +1,6 @@
 锘�//--------------------------------------------------------
 //    [Author]:           YYL
-//    [  Date ]:           Thursday, January 8, 2026
+//    [  Date ]:           Tuesday, January 20, 2026
 //--------------------------------------------------------
 
 using System.Collections.Generic;
@@ -23,6 +23,8 @@
 	public int[][] AwardList;
 	public int[] LineupIDList;
 	public long FightPower;
+	public int NPCID;
+	public int[] SkillIDExList;
 
     public override int LoadKey(string _key)
     {
@@ -59,6 +61,22 @@
 			}
 
 			long.TryParse(tables[6],out FightPower); 
+
+			int.TryParse(tables[7],out NPCID); 
+
+			if (tables[8].Contains("["))
+			{
+				SkillIDExList = JsonMapper.ToObject<int[]>(tables[8]);
+			}
+			else
+			{
+				string[] SkillIDExListStringArray = tables[8].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries);
+				SkillIDExList = new int[SkillIDExListStringArray.Length];
+				for (int i=0;i<SkillIDExListStringArray.Length;i++)
+				{
+					 int.TryParse(SkillIDExListStringArray[i],out SkillIDExList[i]);
+				}
+			}
         }
         catch (Exception exception)
         {

--
Gitblit v1.8.0