2022-05-13 19:31:49 +00:00
|
|
|
|
export const details = [{
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: 'E每跳治疗',
|
2022-12-27 20:01:22 +00:00
|
|
|
|
dmg: ({ talent, attr, calc }, { heal }) =>
|
|
|
|
|
heal(talent.e['持续治疗量2'][0] * calc(attr.atk) / 100 + talent.e['持续治疗量2'][1] * 1)
|
2022-05-13 19:31:49 +00:00
|
|
|
|
}, {
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: '度厄真符每次治疗',
|
2022-05-13 19:31:49 +00:00
|
|
|
|
dmg: ({ talent, attr, calc }, { heal }) => heal(talent.q['治疗量2'][0] * calc(attr.atk) / 100 + talent.q['治疗量2'][1] * 1)
|
2022-12-27 20:01:22 +00:00
|
|
|
|
}, {
|
|
|
|
|
title: '重击伤害',
|
|
|
|
|
dmg: ({ talent, attr, calc }, dmg) => dmg(talent.a['重击伤害'], 'a2', 'phy')
|
2022-07-30 21:06:00 +00:00
|
|
|
|
}]
|
2022-05-13 19:31:49 +00:00
|
|
|
|
|
2022-07-30 21:06:00 +00:00
|
|
|
|
export const mainAttr = 'atk,cpct,cdmg'
|
2022-05-13 19:31:49 +00:00
|
|
|
|
|
2022-12-27 20:01:22 +00:00
|
|
|
|
export const buffs = [{
|
|
|
|
|
title: '七七二命:对受冰元素影响的敌人普攻及重击伤害提升15%',
|
|
|
|
|
cons: 2,
|
|
|
|
|
data: {
|
|
|
|
|
a2: 15
|
|
|
|
|
}
|
|
|
|
|
}]
|