miao-plugin/resources/meta/character/琳妮特/calc.js
Aluxes d110a8c8b5
fix一些伤害计算和数据,新增琳妮特伤害计算 (#636)
* fix:星铁日历显示

* fix:神子 提纳里 林尼 赛诺 伤害计算

* fix:部分武器特效数据

* 新增琳妮特及烟绯四命伤害计算

* fix:星铁数据
2023-09-04 11:17:27 +08:00

35 lines
925 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: '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
}
}]