#!/usr/bin/python # -*- coding: GBK -*- #------------------------------------------------------------------------------- # ##@package Skill.PassiveTrigger.PassiveEff_5022 # # @todo:¶îÍâÔö¼ÓbuffЧ¹ûID/ÊôÐÔIDÖµ # @author hxp # @date 2025-10-30 # @version 1.0 # # ÏêϸÃèÊö: ¶îÍâÔö¼ÓbuffЧ¹ûID/ÊôÐÔIDÖµ # #------------------------------------------------------------------------------- #"""Version = 2025-10-30 16:00""" #------------------------------------------------------------------------------- import GameWorld def DoSkillEffectLogic(turnFight, batObj, tagObj, effSkill, curEffect, connSkill, connBuff, **kwargs): attrID = curEffect.GetEffectValue(0) attrValue = curEffect.GetEffectValue(1) GameWorld.DebugLog("¶îÍâÔö¼ÓbuffЧ¹ûID/ÊôÐÔIDÖµ: attrID=%s,attrValue=%s" % (attrID, attrValue)) connBuff.AddEffectValueEx(attrID, attrValue) return True