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

26 lines
734 B
JavaScript
Raw Normal View History

export const details = [{
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,hp,cpct,cdmg";
export const buffs = [{
title: "皇女2命施放夜巡影翼时能额外造成200%攻击力的伤害",
data: {
ePct: ({ params }) => params.e ? 200 : 0
}
}, {
title: "皇女4命施放夜巡影翼时能额外造成200%攻击力的伤害",
data: {
qPct: ({ params }) => params.q ? 222 : 0
}
}];