miao-plugin/resources/meta/character/荒泷一斗/calc.js
2022-08-08 02:26:25 +08:00

33 lines
917 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.a['荒泷逆袈裟连斩伤害'], 'a2')
}, {
title: '开大后重击尾段',
dmg: ({ talent }, dmg) => dmg(talent.a['荒泷逆袈裟终结伤害'], 'a2')
}, {
title: '开大后牛牛伤害',
dmg: ({ talent }, dmg) => dmg(talent.e['技能伤害'], 'e')
}]
export const mainAttr = 'atk,cpct,cdmg'
export const enemyName = '魔偶/女士/雷神'
export const buffs = [{
title: '一斗被动:荒泷逆袈裟造成的伤害基于防御值提高[a2Plus]',
data: {
a2Plus: ({ attr, calc }) => calc(attr.def) * 0.35
}
}, {
title: '一斗6命重击的暴击伤害提高70%',
cons: 6,
data: {
a2Cdmg: 70
}
}, {
title: '一斗大招:怒目鬼王状态提高攻击力[atkPlus]',
data: {
atkPlus: ({ attr, calc, talent }) => talent.q['攻击力提高'] * calc(attr.def) / 100
}
}]