miao-plugin/resources/meta/character/菲谢尔/calc.js

26 lines
728 B
JavaScript
Raw Normal View History

export const details = [{
2022-08-07 18:26:25 +00:00
title: '奥兹攻击伤害',
dmg: ({ talent }, dmg) => dmg(talent.e['奥兹攻击伤害'], 'e')
}, {
2022-08-07 18:26:25 +00:00
title: '奥兹召唤伤害',
params: { e: true },
dmg: ({ talent, cons }, dmg) => dmg(talent.e['召唤伤害'], 'e')
}, {
2022-08-07 18:26:25 +00:00
title: '至夜幻现伤害',
dmg: ({ talent, cons }, dmg) => dmg(talent.q['落雷伤害'], 'q')
2022-08-07 18:26:25 +00:00
}]
export const mainAttr = 'atk,cpct,cdmg'
export const buffs = [{
2022-08-07 18:26:25 +00:00
title: '皇女2命施放夜巡影翼时能额外造成200%攻击力的伤害',
data: {
ePct: ({ params }) => params.e ? 200 : 0
}
}, {
2022-08-07 18:26:25 +00:00
title: '皇女4命施放夜巡影翼时能额外造成200%攻击力的伤害',
data: {
qPct: ({ params }) => params.q ? 222 : 0
}
2022-08-07 18:26:25 +00:00
}]