From 5bc2cc9a3e007b96a0de96e70e87f25bc5a254a2 Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期一, 21 七月 2025 19:22:45 +0800
Subject: [PATCH] 125 【战斗】战斗系统 战斗系统迭代 协议接入 阵容部分代码
---
Main/Config/Configs/HeroSkinConfig.cs | 21 ++++++++++++++++++---
1 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/Main/Config/Configs/HeroSkinConfig.cs b/Main/Config/Configs/HeroSkinConfig.cs
index a46d967..b9c6ef2 100644
--- a/Main/Config/Configs/HeroSkinConfig.cs
+++ b/Main/Config/Configs/HeroSkinConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: YYL
-// [ Date ]: Friday, June 27, 2025
+// [ Date ]: 2025骞�7鏈�7鏃�
//--------------------------------------------------------
using System.Collections.Generic;
@@ -13,11 +13,16 @@
public partial class HeroSkinConfig : ConfigBase<int, HeroSkinConfig>
{
- public int SkinNPCID;
+ public int SkinID;
public int[] WearAttrIDList;
public int[] WearAttrValueList;
public int[] AllBatAttrIDList;
public int[] AllBatAttrValueList;
+ public string Tachie;
+ public string SquareIcon;
+ public string RectangleIcon;
+ public string SpineRes;
+ public string BigSizeSpine;
public override int LoadKey(string _key)
{
@@ -29,7 +34,7 @@
{
try {
string[] tables = input.Split('\t');
- int.TryParse(tables[0],out SkinNPCID);
+ int.TryParse(tables[0],out SkinID);
if (tables[1].Contains("["))
{
@@ -86,6 +91,16 @@
int.TryParse(AllBatAttrValueListStringArray[i],out AllBatAttrValueList[i]);
}
}
+
+ Tachie = tables[5];
+
+ SquareIcon = tables[6];
+
+ RectangleIcon = tables[7];
+
+ SpineRes = tables[8];
+
+ BigSizeSpine = tables[9];
}
catch (Exception exception)
{
--
Gitblit v1.8.0