mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 21:00:05 +00:00
22 lines
683 B
JavaScript
22 lines
683 B
JavaScript
export const details = [{
|
||
title: 'E每跳治疗',
|
||
dmg: ({ talent, attr, calc }, { heal }) =>
|
||
heal(talent.e['持续治疗量2'][0] * calc(attr.atk) / 100 + talent.e['持续治疗量2'][1] * 1)
|
||
}, {
|
||
title: '度厄真符每次治疗',
|
||
dmg: ({ talent, attr, calc }, { heal }) => heal(talent.q['治疗量2'][0] * calc(attr.atk) / 100 + talent.q['治疗量2'][1] * 1)
|
||
}, {
|
||
title: '重击伤害',
|
||
dmg: ({ talent, attr, calc }, dmg) => dmg(talent.a['重击伤害'], 'a2', 'phy')
|
||
}]
|
||
|
||
export const mainAttr = 'atk,cpct,cdmg'
|
||
|
||
export const buffs = [{
|
||
title: '七七二命:对受冰元素影响的敌人普攻及重击伤害提升15%',
|
||
cons: 2,
|
||
data: {
|
||
a2: 15
|
||
}
|
||
}]
|