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

30 lines
798 B
JavaScript
Raw Normal View History

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