2022-05-20 21:26:53 +00:00
|
|
|
|
export const details = [{
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: 'E提升攻击力',
|
2022-05-20 21:26:53 +00:00
|
|
|
|
dmg: ({ talent, attr }) => {
|
|
|
|
|
return {
|
|
|
|
|
avg: talent.e['攻击力加成比例'] * attr.atk.base / 100
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, {
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: 'E后Q首段伤害',
|
2022-05-20 21:26:53 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.q['天狗咒雷·金刚坏 伤害'], 'q')
|
|
|
|
|
}, {
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: 'E后Q每段',
|
2022-05-20 21:26:53 +00:00
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.q['天狗咒雷·雷砾 伤害'], 'q')
|
2022-07-30 21:06:00 +00:00
|
|
|
|
}]
|
2022-05-20 21:26:53 +00:00
|
|
|
|
|
2022-07-30 21:06:00 +00:00
|
|
|
|
export const defDmgIdx = 1
|
|
|
|
|
export const mainAttr = 'atk,cpct,cdmg'
|
2022-05-20 21:26:53 +00:00
|
|
|
|
|
|
|
|
|
export const buffs = [{
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: '九条E技能:提升攻击力[atkPlus]',
|
2022-05-20 21:26:53 +00:00
|
|
|
|
data: {
|
|
|
|
|
atkPlus: ({ attr, talent }) => talent.e['攻击力加成比例'] * attr.atk.base / 100
|
|
|
|
|
}
|
|
|
|
|
}, {
|
2022-07-30 21:06:00 +00:00
|
|
|
|
title: '九条6命:提升60%雷元素爆伤',
|
2022-05-20 21:26:53 +00:00
|
|
|
|
cons: 6,
|
|
|
|
|
data: {
|
|
|
|
|
cdmg: 60
|
|
|
|
|
}
|
|
|
|
|
}]
|