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

Merge pull request !30 from 心远/master
This commit is contained in:
Kokomi 2023-07-25 21:10:05 +00:00 committed by Gitee
commit f0529bdcf0
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

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 = []