miao-plugin/resources/meta-gs/character/琳妮特/calc.js

35 lines
925 B
JavaScript
Raw Normal View History

export const details = [{
title: 'E技能伤害',
dmg: ({ talent }, dmg) => dmg(talent.e['谜影突刺伤害'], 'e')
}, {
title: 'Q释放伤害',
dmg: ({ talent }, dmg) => dmg(talent.q['技能伤害'], 'q')
}, {
title: 'Q每段风伤',
dmg: ({ talent }, dmg) => dmg(talent.q['惊奇猫猫盒伤害'], 'q')
}, {
title: 'Q转化元素每段伤害',
dmg: ({ talent }, dmg) => dmg(talent.q['彩练术弹伤害'], 'q', 'phy')// 以物伤近似
}]
export const defDmgIdx = 0
export const mainAttr = 'atk,cpct,cdmg'
export const buffs = [{
title: '天赋-巧施协同开Q后队伍中所有角色攻击力提升20%(按四色队计算)',
data: {
atkPct: 20
}
}, {
title: '天赋-道具完备Q发生元素转化后Q造成伤害提升15%',
data: {
qDmg: 15
}
}, {
title: '琳妮特6命释放E突刺时风元素伤害加成提升20%',
cons: 6,
data: {
dmg: 20
}
}]