From 14c1220f82e00ffea6f2759e8ff11d99606220bb Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 14 十月 2021 14:48:11 +0800
Subject: [PATCH] 9300 【BT5】【主干】【后端】新增:法器进阶
---
PySysDB/PySysDBPY.h | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/PySysDB/PySysDBPY.h b/PySysDB/PySysDBPY.h
index efa6826..198c70b 100644
--- a/PySysDB/PySysDBPY.h
+++ b/PySysDB/PySysDBPY.h
@@ -358,6 +358,19 @@
DWORD FamilyStoreItemScore; //仙盟宝库积分
};
+//法器升级表
+
+struct tagFaQiLVUp
+{
+ BYTE _FaQiLV; //法器等级
+ WORD NeedEatCount; //升级所需个数(非累计)
+ list LVAttrType; //每级额外属性类型(非累积)
+ list LVAttrValue; //每级额外属性值(非累积)
+ list UpItemAttrType; //每x个培养丹增加属性类型,x=UpEatItemPerCount
+ list UpItemAttrValue; //每x个培养丹增加属性值,x=UpEatItemPerCount
+ DWORD UpEatItemPerCount; //每次培养消耗x个
+};
+
//坐骑升级表
struct tagHorseLVUp
--
Gitblit v1.8.0