miao-plugin/resources/meta/character/雷电将军/calc_auto.js
panganqi 72daeac477
自动根据当前命座匹配队友命座,在单人伤害栏增加组队伤害 (#334)
* add team dmg

* add auto team calc

* Update calc_auto.js

* 增加妮露丰穰之核伤害

增加妮露丰穰之核伤害

* Create calc.js

* 增加散兵专武数据

* 余响改为按期望计算
2022-12-04 03:47:23 +08:00

132 lines
3.4 KiB
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: '零愿力Q首刀',
params: {
type: 1,
num: 0,
ban: 0,
team:false
},
dmg: ({ talent, attr }, dmg) => dmg(talent.q['梦想一刀基础伤害'], 'q')
}, {
title: '满愿力Q首刀',
params: {
type: 0,
num: 60,
ban: 0,
team:false
},
dmg: ({ talent, attr }, dmg) => dmg(talent.q['梦想一刀基础伤害'], 'q')
},{
title: '雷九八万满愿力Q首刀',
params: {
type: 0,
num: 60,
ban: 0,
team:true
},
dmg: ({ talent, attr }, dmg) => dmg(talent.q['梦想一刀基础伤害'], 'q')
}, {
title: '雷九万班满愿力Q首刀',
params: {
type: 0,
num: 60,
ban: 1,
team:true
},
dmg: ({ talent, attr }, dmg) => dmg(talent.q['梦想一刀基础伤害'], 'q')
}, {
title: '雷九万班满愿力重击',
params: {
type: 1,
num: 60,
ban: 1,
team:true
},
dmg: ({ talent, attr }, dmg) => dmg(talent.q['重击伤害'], 'q')
}]
export const defParams = {
ban: 1,
num: 60,
type: 0,
team:true
}
export const defDmgIdx = 2
export const mainAttr = 'atk,cpct,cdmg,recharge,mastery'
export const buffs = [
{
title: '恶曜开眼开E元素爆发伤害提升[qDmg]%',
data: {
qDmg: ({ talent }) => talent.e['元素爆发伤害提高'] * 90
}
}, {
title: '梦想真说Q满愿力获得[qPct]%大招倍率加成',
data: {
qPct: ({ talent, params }) => talent.q['愿力加成'][params.type || 0] * params.num
}
}, {
check: ({ cons }) => cons >= 2,
title: '雷神2命大招无视敌人[qIgnore]%防御力',
data: {
qIgnore: 60
}
}, {
title: '雷神被动:基于元素充能获得[dmg]%雷伤加成',
data: {
dmg: ({ attr }) => Math.max(attr.recharge.base + attr.recharge.plus - 100, 0) * 0.4
}
}, {check: ({ params }) => params.team === true,
title: '风鹰宗室班:增加[atkPlus]点攻击力与[atkPct]%攻击力',
data: {
atkPct: ({ params }) =>20 * params.ban,
atkPlus: ({ params }) =>1202.35 * params.ban
}
}, {check: ({ cons,params }) => cons > 2 && params.team === true,
title: '八重4命增加20%雷伤',
data: {
dmg: ({ params }) =>20 * (1 - params.ban)
}
}, {check: ({ cons,params }) => cons <= 1 && params.team === true,
title: '精1苍古0命万叶获得[dmg]%增伤(苍古普攻16增伤),增加[atkPct]%攻击,减抗[kx]%',
data: {
aDmg:16,
a2Dmg:16,
a3Dmg:16,
dmg: 40,
atkPct:20,
kx:40,
}
}, {check: ({ cons,params }) => (cons < 3&& cons > 1&& params.team === true),
title: '精1苍古2命万叶获得[dmg]%增伤(苍古普攻16增伤),增加[atkPct]%攻击,减抗[kx]%,精通[mastery]',
data: {
aDmg:16,
a2Dmg:16,
a3Dmg:16,
dmg: 48,
atkPct:20,
kx:40,
mastery:200
}
}, {check: ({ cons,params }) => (cons >= 3 && params.team === true),
title: '精5苍古6命万叶获得[dmg]%增伤(苍古普攻32增伤),增加[atkPct]%攻击,减抗[kx]%,精通[mastery]',
data: {
aDmg:32,
a2Dmg:32,
a3Dmg:32,
dmg: 48,
atkPct:40,
kx:40,
mastery:200
}
}, {check: ({ params }) => params.team === true,
title: '教官天空九条:增加[atkPlus]点攻击力与[cdmg]%爆伤,精通[mastery]',
data: {
atkPlus: 794.2,
cdmg:60,
mastery:120
}
}
]