2022-06-20 22:55:08 +00:00
|
|
|
|
export const details = [{
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: 'E释放伤害',
|
2022-06-20 23:03:49 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.e['技能伤害'], 'e')
|
|
|
|
|
}, {
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: 'E每跳治疗',
|
2022-06-21 22:07:12 +00:00
|
|
|
|
showDetail: true,
|
2022-06-20 22:55:08 +00:00
|
|
|
|
dmg: ({ talent, calc, attr }, { heal }) => {
|
2022-07-30 21:06:00 +00:00
|
|
|
|
let ec = talent.e['越祓草轮治疗量2']
|
2022-06-20 22:55:08 +00:00
|
|
|
|
return heal(calc(attr.hp) * ec[0] / 100 + ec[1] * 1 + calc(attr.mastery) * 0.75)
|
|
|
|
|
}
|
|
|
|
|
}, {
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: 'Q每跳伤害',
|
2022-06-20 22:55:08 +00:00
|
|
|
|
dmg: ({ talent, calc, attr }, { basic }) => basic(talent.q['单次伤害'] * calc(attr.hp) / 100, 'q')
|
2022-07-30 21:06:00 +00:00
|
|
|
|
}]
|
2022-06-20 22:55:08 +00:00
|
|
|
|
|
2022-07-30 21:06:00 +00:00
|
|
|
|
export const mainAttr = 'hp,atk,cpct,cdmg,mastery'
|
2022-06-20 22:55:08 +00:00
|
|
|
|
|
|
|
|
|
export const buffs = [{
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: '久岐忍被动:生命低于50%时提高治疗加成15%',
|
2022-06-20 22:55:08 +00:00
|
|
|
|
data: {
|
|
|
|
|
heal: 15
|
|
|
|
|
}
|
|
|
|
|
}, {
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: '久岐忍被动:基于元素精通提高治疗量[healNum],伤害[ePlus]',
|
2022-06-20 22:55:08 +00:00
|
|
|
|
data: {
|
2022-06-21 22:07:12 +00:00
|
|
|
|
healNum: ({ attr, calc }) => calc(attr.mastery) * 0.75,
|
2022-06-20 22:55:08 +00:00
|
|
|
|
ePlus: ({ attr, calc }) => calc(attr.mastery) * 0.25
|
|
|
|
|
}
|
2022-07-30 21:06:00 +00:00
|
|
|
|
}]
|