From b9c1f5ec35e8020f41c26f9ea957e7299c44add2 Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期二, 05 三月 2019 10:41:16 +0800
Subject: [PATCH] 6307 【后端】【2.0】多套装备开发单(强化)

---
 ClientPack/ClientToMapServer/CA3_Item/EquipPlusEvolve.h       |    6 ++++++
 /dev/null                                                     |   16 ----------------
 ClientPack/ClientToMapServer/CA3_Item/EquipPlusEvolve.des     |    1 +
 ServerPack/MapServerPack/HA3_Function/MCEquipPartPlusInfo     |    0 
 ServerPack/MapServerPack/HA3_Function/MCEquipPartPlusInfo.des |    2 ++
 ClientPack/ClientToMapServer/CA3_Item/EquipPlusEvolve         |    0 
 ServerPack/MapServerPack/HA3_Function/MCEquipPartPlusInfo.h   |   17 +++++++++++++++++
 7 files changed, 26 insertions(+), 16 deletions(-)

diff --git a/ClientPack/ClientToMapServer/CA3_Item/EquipPlusEvolve b/ClientPack/ClientToMapServer/CA3_Item/EquipPlusEvolve
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ClientPack/ClientToMapServer/CA3_Item/EquipPlusEvolve
diff --git a/ClientPack/ClientToMapServer/CA3_Item/EquipPlusEvolve.des b/ClientPack/ClientToMapServer/CA3_Item/EquipPlusEvolve.des
new file mode 100644
index 0000000..cbaef2c
--- /dev/null
+++ b/ClientPack/ClientToMapServer/CA3_Item/EquipPlusEvolve.des
@@ -0,0 +1 @@
+A3 16 装备强化进化 #tagCMEquipPlusEvolve
diff --git a/ClientPack/ClientToMapServer/CA3_Item/EquipPlusEvolve.h b/ClientPack/ClientToMapServer/CA3_Item/EquipPlusEvolve.h
new file mode 100644
index 0000000..dc26bb0
--- /dev/null
+++ b/ClientPack/ClientToMapServer/CA3_Item/EquipPlusEvolve.h
@@ -0,0 +1,6 @@
+// A3 16 装备强化进化 #tagCMEquipPlusEvolve
+struct	tagCMEquipPlusEvolve
+{
+	tagHead		Head;
+	WORD		ItemIndex;		//装备在背包中索引
+};
diff --git a/ServerPack/MapServerPack/HA3_Function/MCEquipPartStarLVInfo b/ServerPack/MapServerPack/HA3_Function/MCEquipPartPlusInfo
similarity index 100%
rename from ServerPack/MapServerPack/HA3_Function/MCEquipPartStarLVInfo
rename to ServerPack/MapServerPack/HA3_Function/MCEquipPartPlusInfo
Binary files differ
diff --git a/ServerPack/MapServerPack/HA3_Function/MCEquipPartPlusInfo.des b/ServerPack/MapServerPack/HA3_Function/MCEquipPartPlusInfo.des
new file mode 100644
index 0000000..caef356
--- /dev/null
+++ b/ServerPack/MapServerPack/HA3_Function/MCEquipPartPlusInfo.des
@@ -0,0 +1,2 @@
+A3 B3 装备部位强化信息 #tagMCEquipPartPlusInfo
+
diff --git a/ServerPack/MapServerPack/HA3_Function/MCEquipPartPlusInfo.h b/ServerPack/MapServerPack/HA3_Function/MCEquipPartPlusInfo.h
new file mode 100644
index 0000000..93a4fba
--- /dev/null
+++ b/ServerPack/MapServerPack/HA3_Function/MCEquipPartPlusInfo.h
@@ -0,0 +1,17 @@
+// A3 B3 装备部位强化信息 #tagMCEquipPartPlusInfo
+
+struct	tagMCEquipPartPlusLV
+{
+	BYTE		PackType;		
+                BYTE		EquipIndex;
+	WORD		EquipPartStarLV;
+	DWORD		Proficiency;
+                BYTE		EvolveLV;
+};
+
+struct	tagMCEquipPartPlusInfo
+{
+	tagHead		Head;
+	BYTE		Count;		// 信息个数
+	tagMCEquipPartPlusLV	InfoList[Count];	// 信息列表
+};
diff --git a/ServerPack/MapServerPack/HA3_Function/MCEquipPartStarLVInfo.des b/ServerPack/MapServerPack/HA3_Function/MCEquipPartStarLVInfo.des
deleted file mode 100644
index e7c3c22..0000000
--- a/ServerPack/MapServerPack/HA3_Function/MCEquipPartStarLVInfo.des
+++ /dev/null
@@ -1 +0,0 @@
-A3 B3 装备部位星级信息 #tagMCEquipPartStarLVInfo
diff --git a/ServerPack/MapServerPack/HA3_Function/MCEquipPartStarLVInfo.h b/ServerPack/MapServerPack/HA3_Function/MCEquipPartStarLVInfo.h
deleted file mode 100644
index a191e7c..0000000
--- a/ServerPack/MapServerPack/HA3_Function/MCEquipPartStarLVInfo.h
+++ /dev/null
@@ -1,16 +0,0 @@
-// A3 B3 装备部位星级信息 #tagMCEquipPartStarLVInfo
-
-struct	tagMCEquipPartStarLV
-{
-	BYTE		PackType;		
-                BYTE		EquipIndex;
-	WORD		EquipPartStarLV;
-	DWORD		Proficiency;
-};
-
-struct	tagMCEquipPartStarLVInfo
-{
-	tagHead		Head;
-	BYTE		Count;		// 信息个数
-	tagMCEquipPartStarLV	InfoList[Count];	// 信息列表
-};

--
Gitblit v1.8.0