From 0b4e44a6764b14b51c4b72b9c47c5a162352850d Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 22 十月 2025 11:48:31 +0800
Subject: [PATCH] 16 卡牌服务端(删除 PlayerBattle)

---
 PySysDB/PySysDBPY.h |   59 +++++------------------------------------------------------
 1 files changed, 5 insertions(+), 54 deletions(-)

diff --git a/PySysDB/PySysDBPY.h b/PySysDB/PySysDBPY.h
index 0f31164..f263862 100644
--- a/PySysDB/PySysDBPY.h
+++ b/PySysDB/PySysDBPY.h
@@ -1409,29 +1409,20 @@
 
 //商城表
 
-struct tagStore
+struct Store
 {
 	DWORD		_ID;	//ID
 	DWORD		ShopType;	//商店类型
-	BYTE		OperationActionShop;	//是否运营活动商店
 	DWORD		ItemID;	//物品ID
 	WORD		ItemCnt;	//物品数量
-	BYTE		IsBind;	//是否绑定
 	list		ItemListEx;	//扩展物品列表[[物品ID,个数,是否绑定],...]
-	DWORD		MainItemID;	//标的物品ID
-	list		JobItem;	//职业替换物品
-	BYTE		RefreshLimit;	//是否限制刷新限购次数,即是否永久限购,包含活动也不重置
-	BYTE		RefreshType;	//刷新类型 0-不重置,1-onWeek0点,2-onWeek5点,3-OnDay0点,4-OnDay5点
-	list		LimitVIPLV;	//VIP限制
-	DWORD		LimitLV;	//等级限制
-	list		LimitCnt;	//个人限制数量
-	DWORD		ServerLimitCnt;	//全服限制数量
+	BYTE		ResetType;	//重置类型
+	DWORD		LimitCnt;	//个人限制数量
 	BYTE		MoneyType;	//金钱类型
 	DWORD		MoneyNum;	//金钱数量
 	DWORD		MoneyOriginal;	//原价
-	DWORD		LimitValue;	//限制条件
-	char		NotifyMark;	//广播提示
-	char		MailKey;	//背包不足时邮件KEY
+	BYTE		UnlockType;	//解锁类型
+	DWORD		UnlockValue;	//解锁所需值
 };
 
 //限时特惠表
@@ -1626,27 +1617,6 @@
 	DWORD		LVExp;		//除经验点总经验外升级还需的经验
 	DWORD		AddMinAtk;	//增加最小攻击
 	DWORD		AddMaxAtk;	//增加最大攻击
-};
-
-
-//全民冲榜排行奖励表
-
-struct tagOSCBillRankAward
-{
-	BYTE		_OSCBillType;	//冲榜类型
-	BYTE		RankA;	//排名A
-	BYTE		RankB;	//至排名B
-	dict		RankAward; //排名奖励 {"职业":[[物品ID,个数],...], ...}
-};
-
-
-//全民冲榜达成奖励表
-
-struct tagOSCBillTagAward
-{
-	BYTE		_OSCBillType;	//冲榜类型
-	WORD		TagCondition;	//目标条件值
-	dict		TagAward; //目标奖励 {"职业":[[物品ID,个数],...], ...}
 };
 
 //七天登录奖励表
@@ -2812,14 +2782,6 @@
 	list		AwardItemList;	//奖励物品列表[[物品ID,个数,是否拍品], ...]
 };
 
-//神秘商店表
-
-struct tagMysteryShop
-{
-	list		LVRange;	//等级范围
-	DWORD		GoodsID;	//商城表ID
-};
-
 //装备位背包索引映射表
 
 struct tagEquipPlaceIndexMap
@@ -2927,17 +2889,6 @@
 	BYTE		_ItemGroupNum;	//物品组编号
 	DWORD		ItemWeight;	//随机权重
 	list		ItemList;	//物品列表[[物品ID,个数,是否拍品], ...]
-};
-
-//仙盟阵法表
-
-struct tagFamilyZhenfa
-{
-	BYTE		_ZhenfaType;	// 阵法类型
-	WORD		_ZhenfaLV;	// 阵法等级
-	DWORD		LVUpNeedExp;	//升下一级所需经验
-	list		LVAttrType;	//累计总属性类型
-	list		LVAttrValue;	//累计总属性值
 };
 
 //装备洗练等级上限

--
Gitblit v1.8.0