miao-plugin/resources/meta/character/安柏/calc.js
yoimiya-kokomi 18faeae290 伤害计算增加砂糖、辛焱
`#雷神面板`展示数据API及更新时间
2022-08-21 07:40:32 +08:00

37 lines
947 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['满蓄力瞄准射击'], 'a2')
}, {
title: '兔兔伯爵爆炸',
dmg: ({ talent }, dmg) => dmg(talent.e['爆炸伤害'], 'e')
}, {
title: '兔兔伯爵蒸发',
check: ({ cons }) => cons < 2,
dmg: ({ talent }, dmg) => dmg(talent.e['爆炸伤害'], 'e', 'zf')
}, {
title: '引爆兔兔伯爵蒸发',
cons: 2,
dmg: ({ talent }, dmg) => dmg(talent.e['爆炸伤害'] * 3, 'e', 'zf')
}, {
title: 'Q箭雨总伤害',
params: { q: true },
dmg: ({ talent }, dmg) => dmg(talent.q['箭雨总伤害'], 'q')
}]
export const mainAttr = 'atk,cpct,cdmg,mastery'
export const buffs = [{
title: '安柏天赋命中弱点后攻击力提升15%',
data: {
atkPct: 15
}
}, {
title: '安柏被动Q暴击率提高10%',
data: {
qCpct: 10
}
}, {
title: '安柏2命瞄准引爆兔兔伯爵伤害提高200%',
cons: 2
}, 'zf']