2023-05-28 18:35:26 +00:00
|
|
|
export const details = [{
|
2023-10-06 23:44:15 +00:00
|
|
|
title: '秘法·惊喜特派伤害',
|
|
|
|
talent: 'q',
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.q['技能伤害'], 'q')
|
2023-05-28 18:35:26 +00:00
|
|
|
}, {
|
2023-10-06 23:44:15 +00:00
|
|
|
title: '护盾最大吸收量',
|
|
|
|
talent: 'e',
|
|
|
|
dmg: ({ talent, calc, attr }, { shield }) => shield(talent.e['护盾吸收量上限2'][0] * calc(attr.hp) / 100 + talent.e['护盾吸收量上限2'][1] * 1)
|
2023-05-28 18:35:26 +00:00
|
|
|
}]
|
|
|
|
|
|
|
|
export const mainAttr = 'atk,hp,cpct,cdmg'
|
|
|
|
|
2023-10-06 23:44:15 +00:00
|
|
|
export const buffs = [{
|
|
|
|
title: '绮良良被动:基于绮良良的生命上限,秘法·惊喜特派伤害提升[qDmg]%',
|
|
|
|
sort: 9,
|
|
|
|
data: {
|
|
|
|
qDmg: ({ attr, calc }) => calc(attr.hp) / 1000 * 0.3
|
|
|
|
}
|
2023-05-28 18:35:26 +00:00
|
|
|
}]
|