2023-05-22 19:19:45 +00:00
|
|
|
|
export const details = [{
|
2023-05-26 22:10:26 +00:00
|
|
|
|
title: '普攻伤害',
|
2023-05-22 19:19:45 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.a['技能伤害'], 'a')
|
|
|
|
|
}, {
|
2023-05-26 22:10:26 +00:00
|
|
|
|
title: '战技伤害',
|
2023-05-22 19:19:45 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.e['技能伤害'], 'e')
|
|
|
|
|
}, {
|
2023-05-26 22:10:26 +00:00
|
|
|
|
title: '终结技伤害',
|
2023-05-22 19:19:45 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.q['技能伤害'], 'q')
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
export const mainAttr = 'atk,cpct,cdmg'
|
|
|
|
|
|
|
|
|
|
export const buffs = [{
|
|
|
|
|
title: '彦卿天赋:智剑连心提高[cpct]%暴击率和[cdmg]%爆伤',
|
|
|
|
|
data: {
|
|
|
|
|
cpct: ({ talent }) => talent.t['暴击率提高'] * 100,
|
|
|
|
|
cdmg: ({ talent }) => talent.t['爆伤提高'] * 100
|
|
|
|
|
}
|
|
|
|
|
}, {
|
2023-05-26 22:10:26 +00:00
|
|
|
|
title: '终结技:释放终结技提高60%暴击率,智剑连心提高爆伤[qCdmg]%',
|
2023-05-22 19:19:45 +00:00
|
|
|
|
data: {
|
|
|
|
|
qCpct: 60,
|
|
|
|
|
qCdmg: ({ talent }) => talent.q['暴伤提高'] * 100
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
title: '彦卿4命:生命值大于80%时提高12%的冰抗穿透',
|
|
|
|
|
cons: 4,
|
|
|
|
|
data: {
|
|
|
|
|
kx: 12
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
title: '行迹-轻吕:触发暴击时,速度提高10%',
|
|
|
|
|
tree: 3,
|
|
|
|
|
data: {
|
|
|
|
|
speedPct: 10
|
|
|
|
|
}
|
|
|
|
|
}]
|