From b4ba68e227370e3dc9dfca06ce5b9c8225bf4faa Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期六, 24 十一月 2018 00:13:49 +0800
Subject: [PATCH] 4997 【后端】【1.3】冰晶矿脉AI--技能指定NPCID使用

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py |    4 +++-
 1 files changed, 3 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 5d2c27b..e71aeff 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
@@ -573,7 +573,7 @@
 Def_Skill_Effect_AttackMove = 2100    # NPC位移战斗
 Def_Skill_Effect_RandSkill = 2101    # 从效果值获取随机技能
 Def_Skill_Effect_HPPerLimit = 2102    # 血量限制
-
+Def_Skill_Effect_AppointNPC = 2103    # 指定释放的NPCID 和 Def_UseSkillTag_AppointNPC 搭配使用
 #-----------
 #变身技能(召唤)效果ID
 Def_Skill_Effect_SummonMapNPC = 1162
@@ -1181,6 +1181,7 @@
     Def_UseSkillTag_SummonMaster,      #召唤兽主人 12
     Def_UseSkillTag_CanAttackBaseNPC,      #可攻击的野外小怪(含精英)怪物 13
     Def_UseSkillTag_FriendNPC,         #友好NPC 14
+    Def_UseSkillTag_AppointNPC,         #指定NPC 15 必须和效果值配合 Def_Skill_Effect_AppointNPC
     
 ) = range( 0, Def_UseSkillTag_Type )
 
@@ -1202,6 +1203,7 @@
     Def_UseSkillTag_SummonMaster : [IPY_GameWorld.gotPlayer, IPY_GameWorld.gotNPC],
     Def_UseSkillTag_CanAttackBaseNPC : [IPY_GameWorld.gotNPC],
     Def_UseSkillTag_FriendNPC : [IPY_GameWorld.gotNPC],
+    Def_UseSkillTag_AppointNPC : [IPY_GameWorld.gotNPC],
 }
 
 

--
Gitblit v1.8.0