miao-plugin/resources/meta-gs/character/旅行者/electro/calc.js
2024-03-01 22:09:34 +08:00

39 lines
958 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.

import { Format } from '#miao'
export const details = [{
title: 'E伤害',
dmg: ({ talent }, dmg) => dmg(talent.e['技能伤害'], 'e')
}, {
title: 'E提供元素充能加成',
dmg: ({ attr }) => {
return {
avg: Format.percent(0.2 + attr.recharge * 0.1 / 100),
type: 'text'
}
}
}, {
title: 'Q释放伤害',
dmg: ({ talent }, dmg) => dmg(talent.q['技能伤害'], 'q')
}, {
title: 'Q协同伤害',
dmg: ({ talent }, dmg) => dmg(talent.q['威光落雷伤害'], 'q')
}]
export const defDmgIdx = 1
export const mainAttr = 'atk,cpct,cdmg'
export const buffs = [{
title: '天赋-回响的轰雷基于自身元素充能效率的10%提升E的勾玉提供的元素充能效率[_eRecharge]%',
data: {
_eRecharge: ({ attr }) => attr.recharge * 0.1
}
}, {
title: '雷主2命Q的协同攻击会使敌人的雷元素抗性降低[kx]%',
cons: 2,
data: {
kx: 15
}
}]
export const createdBy = 'Aluxes'