From 4f48659ed51c0e087e55da91ec76cbcdd7a87486 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 15 十一月 2018 17:40:58 +0800 Subject: [PATCH] 4788 【后端】【1.3】洗炼必增由消耗仙玉改为消耗道具 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py index be2b304..0778e33 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -1798,7 +1798,7 @@ Def_NoPlayerNeedProcessRefreshPointMap = [Def_FBMapID_SealDemon, Def_FBMapID_GodArea, Def_FBMapID_BossHome] # 可重复进的副本 -Def_NoLimitEnterCntMap = [Def_FBMapID_FamilyParty, Def_FBMapID_FamilyWar, Def_FBMapID_FamilyInvade] +Def_NoLimitEnterCntMap = [Def_FBMapID_FamilyParty, Def_FBMapID_FamilyWar, Def_FBMapID_FamilyInvade, Def_FBMapID_ElderBattlefield] # 无玩家时不自动关闭的自伸缩副本 Def_NoPlayerNotCloseAutoSizeMap = [Def_FBMapID_FamilyInvade, Def_FBMapID_FamilyBossMap] @@ -3816,7 +3816,7 @@ Def_PDict_MWSoulGotValue = "MWSoulGotValue_%s" #法宝特权已领取进度 参数特权ID Def_PDict_MWSoulGotItemState = "MWSoulGotItemState_%s" #法宝特权领取物品奖励状态 参数特权ID Def_PDict_MWSoulActiveState = "MWSoulActiveState_%s" #法宝之魂激活状态 参数(key编号) - +Def_PDict_MWFBPassLevel = "MWFBPassLevel_%s" #法宝副本通关关卡 参数(法宝ID) #炼丹炉 Def_PDict_AlchemyLV = "AlchemyLV" #炼丹等级 Def_PDict_AlchemyExp = "AlchemyExp" #炼丹经验 @@ -4366,7 +4366,8 @@ TriggerType_StormAttackReduceCD, # 类剑刃风暴攻击每攻击一次减少CD 58 TriggerType_AttackAddFinalPer, #增加最终伤害百分比 59 TriggerType_SummonDie, #自身召唤兽死亡触发技能 60 -) = range(1, 61) +TriggerType_GiftReduceCD, # 天赋用的减CD 61 +) = range(1, 62) # NPC功能类型定义 @@ -4938,8 +4939,9 @@ ntPet, ntTouchKill, #触碰后自杀类 17 ntUndeath, #不死类型 18 +ntRobot, #上古战场机器人类型 19 ntMax -) = range(20) +) = range(21) (Def_SkillFuncType_Common, #0为通用技能 -- Gitblit v1.8.0