2022-05-13 19:31:49 +00:00
|
|
|
export const details = [{
|
2022-07-30 21:06:00 +00:00
|
|
|
title: 'E每跳治疗',
|
2022-05-13 19:31:49 +00:00
|
|
|
dmg: ({
|
2022-07-30 21:06:00 +00:00
|
|
|
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-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
|
|
|
|
|
|
|
export const buffs = []
|