miao-plugin/resources/meta-sr/character/瓦尔特/calc.js
2023-09-23 05:44:45 +08:00

31 lines
740 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['技能伤害'], 'a')
}, {
title: '战技主目标伤害',
dmg: ({ talent }, dmg) => dmg(talent.e['技能伤害'], 'e')
}, {
title: '终结技伤害',
dmg: ({ talent }, dmg) => dmg(talent.q['技能伤害'], 'q')
}, {
title: '天赋附加伤害',
dmg: ({ talent }, dmg) => dmg(talent.t['附加伤害'], 't')
}]
export const defDmgIdx = 1
export const mainAttr = 'atk,cpct,cdmg'
export const buffs = [{
title: '行迹-惩戒施放终结技提高敌人受到伤害12%',
tree: 1,
data: {
dmg: 12
}
}, {
title: '行迹-裁决弱点击破的敌方目标造成的伤害提高20%',
tree: 3,
data: {
dmg: 20
}
}]