From 761d6a3a33c200f338dca6e05c27738244796538 Mon Sep 17 00:00:00 2001 From: hch <305670599@qq.com> Date: 星期二, 06 十一月 2018 17:02:56 +0800 Subject: [PATCH] 2683 子 天赋技能和新增双职业各两个技能 / 【后端】天赋技能 ----- 通用类 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py index 367993d..9745bfb 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -5085,4 +5085,12 @@ Def_PPAct_Pray, #祈愿 11 Def_PPAct_BossHome, #boss之家 12 Def_PPAct_VIPBoss, #vipBOSS 13 -) = range(1, 13+1) \ No newline at end of file +) = range(1, 13+1) + +# 套装枚举,普通套装,强化套装 +(EquipSuitType_Normal, +EquipSuitType_Plus, +) = range(1,3) + +EquipGroupType_Armor = '1' # 防具套装 +EquipGroupType_Relics = '2' # 仙器套装 -- Gitblit v1.8.0