| #!/usr/bin/python  | 
| # -*- coding: GBK -*-  | 
| #-------------------------------------------------------------------------------  | 
| #  | 
| #-------------------------------------------------------------------------------  | 
| #  | 
| ##@package SkillModule_17  | 
| #  | 
| # @todo: °´ÊÍ·ÅÆøÑªÉÏÏÞÌí¼Ó³ðºÞÖµ  | 
| # @author Alee  | 
| # @date 2011-04-06 16:40  | 
| # @version 1.0  | 
| #  | 
| # ÏêϸÃèÊö:  | 
| #------------------------------------------------------------------------------   | 
| """Version = 2011-04-06 16:40"""  | 
|   | 
| import IPY_GameWorld  | 
| import ChConfig  | 
| import NPCCommon  | 
| import BaseAttack  | 
| import GameObj  | 
| ##°´ÑªÁ¿ÉÏÏÞÌí¼Ó³ðºÞ  | 
| # @param attacker ¹¥»÷ÕßʵÀý  | 
| # @param defender ·ÀÊØÕßʵÀý  | 
| # @param curSkill ¼¼ÄÜʵÀý  | 
| # @param tagRoundPosX ÇøÓò×ø±êX  | 
| # @param tagRoundPosY ÇøÓò×ø±êY  | 
| # @param isEnhanceSkill ÊÇ·ñΪ¸½¼Ó¼¼ÄÜ  | 
| # @param tick Ê±¼ä´Á  | 
| # @return ·µ»ØÖµÎªÕæ, Êͷųɹ¦  | 
| # @remarks °´ÑªÁ¿ÉÏÏÞÌí¼Ó³ðºÞ  | 
| def UseSkill(attacker, defender, curSkill, tagRoundPosX, tagRoundPosY, isEnhanceSkill, tick):  | 
|     #²»ÊÇNPC²»´¦Àí  | 
|     if defender.GetGameObjType() != IPY_GameWorld.gotNPC:  | 
|         return  | 
|       | 
|     #²»¸øËÀÍöµÄNPCÌí¼Ó³ðºÞ  | 
|     if GameObj.GetHP(defender) <= 0:  | 
|         return False  | 
|       | 
|     #---¼ÆËãÌí¼ÓµÄ³ðºÞÖµ---  | 
|     #Ìí¼Ó³ðºÞЧ¹û  | 
|     angryEffect = curSkill.GetEffect(0)  | 
|     angryPer = angryEffect.GetEffectValue(0) / float(ChConfig.Def_MaxRateValue)  | 
|     angryEnhance = angryEffect.GetEffectValue(1)  | 
|     addAngryValue = int(GameObj.GetMaxHP(attacker)* angryPer + angryEnhance)  | 
|       | 
|     #---¸øNPCÌí¼Ó³ðºÞ---  | 
|     npcControl = NPCCommon.NPCControl(defender)  | 
|     npcControl.AddObjToAngryList(attacker, addAngryValue, True, False)  | 
|       | 
|     #´¦Àí¼¼ÄÜ´¥·¢ºÍ¹¥»÷³É¹¦Âß¼  | 
|     return BaseAttack.DoSkillEx_AttackSucess(attacker, defender, curSkill, tick, isEnhanceSkill)  | 
|   | 
|   |