From e7ef89771f8c16b9d0d9623c80538c8a6bb82f15 Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期六, 01 九月 2018 10:30:56 +0800
Subject: [PATCH] fix:增加复活CD中提示
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 34 ++++++++++++++--------------------
1 files changed, 14 insertions(+), 20 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
index 2c1d982..26c9c8e 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
@@ -397,6 +397,7 @@
Def_Effect_AddDienstgrad = 204 #使用物品获得称号
Def_Effect_UseItemGiveZhenQi = 205 #使用道具给予真气
Def_Effect_ItemGiveFamilyActivity = 208 #使用道具给予仙盟活跃令
+Def_Effect_ItemGiveFamilyContribution = 209 #使用道具给予仙盟贡献
Def_Effect_TJGAddTime = 210 #增加脱机挂时间
Def_Effect_ItemAddExp = 213 #给经验道具
Def_Effect_ItemAddLV = 214 #直接升级道具
@@ -554,7 +555,8 @@
Def_Skill_Effect_SummonAttr = 1013 # 召唤兽属性
Def_Skill_Effect_BoomSeedID = 1014 # 引爆BUFF种子
Def_Skill_Effect_RandWarn = 1061 # 随机预警
-Def_Skill_Effect_AttackReplaceByNPCSeries = 1062 # 对指定系的伤害
+Def_Skill_Effect_AttackReplaceByNPCSeries = 1062 # 对指定系的伤害
+Def_Skill_Effect_AvgHurtFMCnt = 1064 # NPC技能按仙盟成员数均摊伤害
Def_Skill_Effect_AreaAttackkCount = 1200 #区域技能攻击数量
Def_Skill_Effect_PowerPart = 1206 # 充能能量分段,触发即算一次充能,拉进度条蓄力
Def_Skill_Effect_ProcessAttack = 1314 # 间隔性攻击,A值为攻击次数,B值为是否广播客户端
@@ -1027,13 +1029,13 @@
) = range( 0, Def_PA_MaxReason )
#提示原因及对应的提示mark组成的字典
-Def_MessageDic = {Def_PASysMessage_NewGuy:"XW_RY_CancelWay01", #攻击新手
+Def_MessageDic = {Def_PASysMessage_NewGuy:"FairyGrabBossNewPlayer", #攻击新手
Def_PASysMessage_IsSafeArea: "CannotAtk01", #安全区域
Def_PASysMessage_AttackMode:"AtkModeErr", #攻击模式
Def_PASysMessage_CountrySafe:"PlayerPK_Error_GoalLvLow",#国家保护
Def_PASysMessage_IsSafeArea_Country:"Cadres_PK_Lost", #国家安全区保护
Def_PASysMessage_NewGuyNotPK:"PK_lhs_0", #新手不能PK
- Def_PASysMessage_NotAttackNewGuy:"PK_lhs_31379", #不能攻击新手
+ Def_PASysMessage_NotAttackNewGuy:"FairyGrabBossNewPlayer", #不能攻击新手
Def_PASysMessage_NotAttackFamily:"Old_andyshao_161795", #不能攻击同家族成员
Def_PASysMessage_NotAttackTeam:"PK_lhs_861048", #不能攻击队友
Def_PASysMessage_AttackNotPK:"PK_lhs_202580", #攻击方PK值过大,不能PK
@@ -1912,6 +1914,7 @@
Map_Player_AreaReward_GetCnt = "AreaAward_GetCnt%s" # 玩家战场区域福利-累计获得次数
#---地图NPC---
+Map_NPC_ActivityBossRebornCount = 'ActivityBossRebornCount_%s' # 活动boss已刷新只数,参数(标识点)
Map_NPC_WorldBossLastReBornTick = 'WorldBossLastReBornTick_%s' # 世界boss上次重生时间
Map_NPC_WorldBossDeadTick = 'WorldBossDeadTick_%s' # 世界boss死亡时间
Map_NPC_RandomMapNPCID = 'RandMapNPCID_%s' # 当前地图随机NPCID, 参数为标识点mark
@@ -2034,6 +2037,7 @@
Def_NPCHurtTypeAll = 4 #所有玩家
Def_NPCHurtTypeFaction= 5 #阵营
Def_NPCHurtTypeSpecial= 6 #特殊, 指定某些玩家, 玩家ID取ShareDefine.Def_MapItemInfo_SpecOwner
+Def_NPCHurtTypeFamily = 7 #仙盟 7
#掉落归属类型-NPC表的定义
DropOwnerType = (
@@ -2044,7 +2048,8 @@
DropOwnerType_MaxHurtPlayer, # 最大伤血玩家, 伤血不会被重置, 仅限玩家 4
DropOwnerType_Faction, # 阵营 5
DropOwnerType_Special, # 特殊 6
-) = range(7)
+DropOwnerType_Family, # 仙盟 7
+) = range(8)
#------------------------------------------------
#技能类型
@@ -3348,7 +3353,7 @@
Def_PDict_TreasureStartCalcFreeCntTime = "TreasureFreeCntTime_%s" # 寻宝 - 开始计算免费次数CD时间, 参数(寻宝编号)
Def_PDict_TreasureFreeTime = "TreasureFreeTime_%s_%s" # 寻宝开始免费计时time值, 参数(寻宝类型, 寻宝索引)
-Def_PDict_TreasureCount = "TreasureCount_%s" # 寻宝次数, 参数(寻宝类型)
+Def_PDict_TreasureCount = "TreasureCount_%s_%s" # 寻宝次数, 参数(寻宝类型,是否免费)
Def_PDict_TreasureLuck = "TreasureLuck_%s" # 寻宝当前幸运值, 参数(寻宝类型)
Def_Player_Dict_LastAutoOpenPackTick = "LastAutoOpenPackTick219_%s" #上一次自动购买的tick<背包类型>
@@ -3380,6 +3385,7 @@
Def_PDict_FirstGoldTry = "FirstGoldTry" # 首充试用状态 0-不可试用 1-可试用 2-已试用
Def_PDict_DailyGoldChargeState = "DailyGoldChargeState" # 天天首充活动状态,0-未开启;1-已开启
Def_PDict_DailyChargeState = "DailyChargeState" # 当日是否已充值
+Def_PDict_SuperGiftData = "SuperGiftData" # 超值礼包数据
Def_PDict_DailyGoldChargePrizeRecord = "DailyGoldChargePrizeRecord" # 天天首充领奖记录,0-不可领;1-可领;2-已领
Def_PDict_DailyGoldChargeCnt = "DailyGoldChargeCnt" # 当日已充值数
Def_PDict_SingleGoldGiftIndex = "SingleGoldGiftIndex" # 单日充值多选一礼包领取状态, 0-未领取,>0已领取索引
@@ -3535,6 +3541,9 @@
#上古战场
Def_Player_Dict_ElderBattlefieldStage = "ElderBattlefieldStage" # 本次达到阶段
+
+#仙盟宴会
+Def_Player_Dict_FamilyPartyAnswerCnt = "FamilyPartyAnswerCnt" # 答题数量
#虚拟背包物品数据
Def_PDict_VPackItem = "VPackItem_%s_%s" # 虚拟背包物品数据, 参数(背包类型, 位置索引)
@@ -4283,21 +4292,6 @@
TriggerType_OneDamage, # 伤害降低到1点 49
) = range(1, 50)
-#增强类型定义,参考SkillBoosts下的SkillBoost_文件
-BoostType_HappenRate = 4 # 触发几率特殊处理 - 增强
-WeakenType_HappenRate = 104 # 触发几率特殊处理 - 减弱
-
-#MapConfig表中的索引定义-----------------------------------------------------------
-# 表SkillBoostEffDropRate 中的 列表索引定义
-(
-Def_SkillBoostTable_SkillTypeID,
-Def_SkillBoostTable_BoostType,
-Def_SkillBoostTable_SkillEffectID,
-Def_SkillBoostTable_ParentSkillTypeID, # 相对Def_SkillBoostTable_SkillTypeID的父技能如召唤
-Def_SkillBoostTable_MinValue,
-Def_SkillBoostTable_MaxValue,
-Def_SkillBoostTable_NotifyValue,
-) = range(7)
# NPC功能类型定义
Def_NPCFuncType_Goblin = 70 # 盗宝哥布林
--
Gitblit v1.8.0