miao-plugin/resources/meta/character/刻晴/calc.js
2022-08-19 05:04:31 +08:00

33 lines
750 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: 'E后重击伤害',
dmg: ({ talent }, dmg) => dmg(talent.a['重击伤害'], 'a2')
}, {
title: 'Q单段伤害',
dmg: ({ talent }, dmg) => dmg(talent.q['连斩伤害2'][0], 'q')
}, {
title: 'Q总伤害',
params: { q: 1 },
dmg: ({ talent }, dmg) => dmg(talent.q['技能伤害'] + talent.q['连斩伤害'] + talent.q['最后一击伤害'], 'q')
}]
export const mainAttr = 'atk,cpct,cdmg'
export const buffs = [{
title: '刻晴被动释放Q获得15%暴击率',
data: {
qCpct: 15
}
}, {
title: '刻晴4命触发雷元素相关反应提升攻击力25%',
cons: 4,
data: {
atkPct: 25
}
}, {
title: '刻晴6命4层获得24%雷伤加成',
cons: 6,
data: {
dmg: 24
}
}]