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: '战技Buff加伤',
|
2023-05-22 19:19:45 +00:00
|
|
|
|
dmg: ({ talent }) => {
|
|
|
|
|
return {
|
|
|
|
|
avg: Format.percent(talent.e['伤害提高']),
|
|
|
|
|
type: 'text'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, {
|
2023-05-26 22:10:26 +00:00
|
|
|
|
title: '终结技Buff攻击力提高',
|
2023-05-22 19:19:45 +00:00
|
|
|
|
dmg: ({ talent }) => {
|
|
|
|
|
return {
|
|
|
|
|
avg: Format.percent(talent.q['攻击力提高']),
|
|
|
|
|
type: 'text'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}, {
|
2023-05-26 22:10:26 +00:00
|
|
|
|
title: '终结技Buff爆伤提高',
|
2023-05-22 19:19:45 +00:00
|
|
|
|
dmg: ({ attr, calc, talent }) => {
|
|
|
|
|
return {
|
|
|
|
|
avg: Format.percent(calc(attr.cdmg) * talent.q['百分比暴伤'] / 100 + talent.q['固定暴伤']),
|
|
|
|
|
type: 'text'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
export const mainAttr = 'atk,cpct,cdmg'
|
|
|
|
|
|
|
|
|
|
export const buffs = [{
|
|
|
|
|
title: '行迹-军势:布洛妮娅在场时,我方全体造成的伤害提高10%',
|
|
|
|
|
check: ({ trees }) => trees[103],
|
|
|
|
|
data: {
|
|
|
|
|
dmg: 10
|
|
|
|
|
}
|
|
|
|
|
}]
|