From fbc7f855aa676d2a623bec2cfb07e19d91b6bc26 Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期二, 20 一月 2026 16:49:23 +0800
Subject: [PATCH] 411 定军阁-客户端 开出展示npc配置,隐藏敌将信息按钮,隐藏定军阁战场血条相关信息

---
 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