#!/usr/bin/python
|
# -*- coding: GBK -*-
|
#-------------------------------------------------------------------------------
|
#
|
##@package Skill.PassiveTrigger.PassiveEff_6005
|
#
|
# @todo:Ôö¼Ó±¾´Î¼¼ÄÜÍò·Ö±È£¨°´¶ÓÓÑËÀÍöÊý£©
|
# @author hxp
|
# @date 2025-10-30
|
# @version 1.0
|
#
|
# ÏêϸÃèÊö: Ôö¼Ó±¾´Î¼¼ÄÜÍò·Ö±È£¨°´¶ÓÓÑËÀÍöÊý£©
|
#
|
#-------------------------------------------------------------------------------
|
#"""Version = 2025-10-30 10:00"""
|
#-------------------------------------------------------------------------------
|
|
def GetHappenValue(attacker, defender, curEffect, effSkill, effBuff, **skillkwargs):
|
addPer = curEffect.GetEffectValue(0) # ÿ²ãÔö¼ÓµÄÍò·Ö±È
|
batLineup = attacker.GetBatLineup()
|
deadCnt = batLineup.getDeadObjCnt()
|
return deadCnt * addPer
|