2023-05-22 19:19:45 +00:00
|
|
|
|
import { Format } from '#miao'
|
|
|
|
|
|
|
|
|
|
export const details = [{
|
|
|
|
|
title: '普攻伤害',
|
|
|
|
|
dmg: ({ talent }, dmg) => dmg(talent.a['技能伤害'], 'a')
|
|
|
|
|
}, {
|
2023-05-26 22:10:26 +00:00
|
|
|
|
title: '赐福提高攻击力上限',
|
2023-05-22 19:19:45 +00:00
|
|
|
|
dmg: ({ attr, calc, talent }) => {
|
|
|
|
|
return {
|
|
|
|
|
avg: calc(attr.atk) * talent.e['攻击力上限']
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, {
|
2023-05-26 22:10:26 +00:00
|
|
|
|
title: '终结技伤害提高',
|
2023-05-22 19:19:45 +00:00
|
|
|
|
dmg: ({ talent }) => {
|
|
|
|
|
return {
|
|
|
|
|
avg: Format.percent(talent.q['伤害提高']),
|
|
|
|
|
type: 'text'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}]
|
|
|
|
|
|
2023-09-22 21:44:45 +00:00
|
|
|
|
export const defDmgIdx = 1
|
2023-05-22 19:19:45 +00:00
|
|
|
|
export const mainAttr = 'atk,cpct,cdmg'
|
|
|
|
|
|
|
|
|
|
export const buffs = [{
|
|
|
|
|
title: '行迹-止厄:普攻造成的伤害提高40%',
|
|
|
|
|
tree: 2,
|
|
|
|
|
data: {
|
|
|
|
|
aDmg: 40
|
|
|
|
|
}
|
|
|
|
|
}]
|