增加米卡面板治疗量计算与展示

This commit is contained in:
terry.huang 2023-07-24 11:34:11 +08:00
parent 08edd41ce7
commit ff5eadcba3

View File

@ -0,0 +1,13 @@
export const details = [ {
title: 'Q施放治疗量',
dmg: ({ talent, calc, attr }, { heal }) =>
heal(talent.q['施放治疗量2'][0] * calc(attr.hp) / 100 + talent.q['施放治疗量2'][1])
}, {
title: '鹰翎治疗量',
dmg: ({ talent, calc, attr }, { heal }) =>
heal(talent.q['鹰翎治疗量2'][0] * calc(attr.hp) / 100 + talent.q['鹰翎治疗量2'][1])
}]
export const mainAttr = 'recharge,hp,cpct,cdmg'
export const buffs = []