mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2025-02-05 01:50:36 +00:00
14 lines
456 B
JavaScript
14 lines
456 B
JavaScript
|
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 = []
|