hxp
4 天以前 4e3d1ff7e0b98fc18b0b6e63e449f3d7577c0ba6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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