miao-plugin/resources/meta-sr/character/彦卿/calc.js
2023-05-27 06:10:26 +08:00

39 lines
991 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const details = [{
title: '普攻伤害',
dmg: ({ talent }, dmg) => dmg(talent.a['技能伤害'], 'a')
}, {
title: '战技伤害',
dmg: ({ talent }, dmg) => dmg(talent.e['技能伤害'], 'e')
}, {
title: '终结技伤害',
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
}
}, {
title: '终结技释放终结技提高60%暴击率,智剑连心提高爆伤[qCdmg]%',
data: {
qCpct: 60,
qCdmg: ({ talent }) => talent.q['暴伤提高'] * 100
}
}, {
title: '彦卿4命生命值大于80%时提高12%的冰抗穿透',
cons: 4,
data: {
kx: 12
}
}, {
title: '行迹-轻吕触发暴击时速度提高10%',
tree: 3,
data: {
speedPct: 10
}
}]