miao-plugin/resources/meta/character/夜兰/calc.js

28 lines
787 B
JavaScript
Raw Normal View History

export const details = [{
title: "破局矢伤害",
dmg: ({ talent, attr, calc }, { basic }) => basic(calc(attr.hp) * talent.a['破局矢伤害'] / 100, 'a2')
}, {
title: "E络命丝伤害",
dmg: ({ talent, attr, calc }, { basic }) => basic(calc(attr.hp) * talent.e['技能伤害'] / 100, 'e')
}, {
title: "Q协同攻击伤害",
dmg: ({ talent, attr, calc, cons }, { basic }) =>
basic(calc(attr.hp) * (talent.q['玄掷玲珑伤害'] / 100), 'q')
}];
export const mainAttr = "hp,atk,cpct,cdmg";
export const buffs = [{
title: "夜兰被动有4个不同元素类型角色时夜兰生命值上限提高30%",
data: {
hpPct: 30
}
}, {
title: "夜兰4命E络命丝爆发提高生命值满Buff下提高40%",
cons: 4,
data: {
hpPct: 40
}
}];