2022-08-30 19:36:40 +00:00
|
|
|
|
export const details = [{
|
|
|
|
|
title: 'E基础伤害提升值',
|
|
|
|
|
dmg: ({ talent, calc, attr }) => {
|
|
|
|
|
return {
|
|
|
|
|
avg: talent.e['伤害值提升'] * calc(attr.atk) / 100
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
title: 'E点按技能伤害',
|
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.e['点按技能伤害'], 'e')
|
|
|
|
|
}, {
|
|
|
|
|
title: 'E长按技能伤害',
|
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.e['长按技能伤害'], 'e')
|
|
|
|
|
}, {
|
|
|
|
|
title: 'Q每跳伤害',
|
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.q['持续伤害'], 'q')
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
export const buffs = [{
|
2023-10-06 23:44:15 +00:00
|
|
|
|
title: '天赋-大洞弥罗尊法:Q范围内冰伤提高15%',
|
2022-08-30 19:36:40 +00:00
|
|
|
|
data: {
|
|
|
|
|
dmg: 15
|
|
|
|
|
}
|
|
|
|
|
}, {
|
2023-10-06 23:44:15 +00:00
|
|
|
|
title: '天赋-缚灵通真法印:点按E提高15%元素战技及元素爆发伤害,长按E提高15%普攻、重击和下落攻击伤害',
|
2022-08-30 19:36:40 +00:00
|
|
|
|
data: {
|
2023-10-06 23:44:15 +00:00
|
|
|
|
eDmg: 15,
|
|
|
|
|
qDmg: 15,
|
|
|
|
|
aDmg: 15,
|
|
|
|
|
a2Dmg: 15,
|
|
|
|
|
a3Dmg: 15
|
2022-08-30 19:36:40 +00:00
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
title: '申鹤2命:Q范围内暴击伤害提高15%',
|
|
|
|
|
cons: 2,
|
|
|
|
|
data: {
|
|
|
|
|
cdmg: 15
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
title: '申鹤天赋:E提升冰伤害[ePlus]',
|
2023-10-06 23:44:15 +00:00
|
|
|
|
sort: 9,
|
2022-08-30 19:36:40 +00:00
|
|
|
|
data: {
|
|
|
|
|
ePlus: ({ talent, calc, attr }) => talent.e['伤害值提升'] * calc(attr.atk) / 100,
|
2023-10-06 23:44:15 +00:00
|
|
|
|
qPlus: ({ talent, calc, attr }) => talent.e['伤害值提升'] * calc(attr.atk) / 100
|
2022-08-30 19:36:40 +00:00
|
|
|
|
}
|
|
|
|
|
}]
|