miao-plugin/resources/meta-gs/character/菲谢尔/calc.js
2023-10-25 03:34:36 +08:00

29 lines
873 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.e['奥兹攻击伤害'], 'e', 'aggravate')
}, {
title: '奥兹攻击伤害',
dmg: ({ talent }, dmg) => dmg(talent.e['奥兹攻击伤害'], 'e')
}, {
title: '奥兹召唤伤害',
params: { e: true },
dmg: ({ talent, cons }, dmg) => dmg(talent.e['召唤伤害'], 'e')
}, {
title: '至夜幻现伤害',
dmg: ({ talent, cons }, dmg) => dmg(talent.q['落雷伤害'], 'q')
}]
export const mainAttr = 'atk,cpct,cdmg,mastery'
export const buffs = [{
title: '皇女2命施放夜巡影翼时能额外造成200%攻击力的伤害',
data: {
ePct: ({ params }) => params.e ? 200 : 0
}
}, {
title: '皇女4命施放夜巡影翼时能额外造成200%攻击力的伤害',
data: {
qPct: ({ params }) => params.q ? 222 : 0
}
}, 'aggravate']