hch
2019-06-01 10f29653d4cf13514f319c8445ae01c36de9926a
860312 套装技能战斗力
2个文件已修改
6 ■■■■ 已修改文件
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/PrintSkill.py 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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,
                           }
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():