From 10f29653d4cf13514f319c8445ae01c36de9926a Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期六, 01 六月 2019 11:07:48 +0800
Subject: [PATCH] 860312 套装技能战斗力
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/PrintSkill.py | 2 ++
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 4 +++-
2 files changed, 5 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 00ea4c5..45f4ca4 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
@@ -5071,7 +5071,8 @@
Def_SkillFuncType_RealmSuppress, #11为境界压制 目前是NPC在用
Def_SkillFuncType_Dogz, #12 神兽技能
Def_SkillFuncType_ZhuXian, #13 诛仙技能
-) = range(14)
+Def_SkillFuncType_SuiteSkill, #14 套装技能
+) = range(15)
# 受技能效果完全影响的怪, 对应 Def_BattleRelationType_CommNoBoss
Def_SkillAttack_NPCIsBoss = [ Def_NPCType_Ogre_Normal , #平凡小怪 0 # c++ 定义为普通NPC视野刷新
@@ -5103,6 +5104,7 @@
Def_SkillFuncType_HorseSkill:ShareDefine.Def_MFPType_Horse,
Def_SkillFuncType_PetSkill:ShareDefine.Def_MFPType_Pet,
Def_SkillFuncType_GWSkill:ShareDefine.Def_MFPType_Prestige,
+ Def_SkillFuncType_SuiteSkill:ShareDefine.Def_MFPType_Equip,
}
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/PrintSkill.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/PrintSkill.py
index 5af84f1..548dc4d 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/PrintSkill.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/PrintSkill.py
@@ -39,6 +39,7 @@
skillDict[funcType].append(curSkill.GetSkillID())
showDict = {
+ 0 : "随意",
1 : "人族法宝",
2 : "魔族法宝",
3 : "法宝专精",
@@ -52,6 +53,7 @@
11 : "NPC境界",
12 : "神兽技能",
13 : "诛仙技能",
+ 14 : "套装技能",
}
for funcType, skillList in skillDict.items():
--
Gitblit v1.8.0