新增剩余所有角色伤害计算

This commit is contained in:
UCPr 2025-01-24 16:46:42 +08:00
parent a62109a6c0
commit afce42af23
31 changed files with 744 additions and 11 deletions

View file

@ -0,0 +1,30 @@
/** @type {import('../../BuffManager.ts').BuffManager['buffs']} */
export const buffs = [
{
name: '2影',
type: '无视抗性',
value: 0.085
},
{
name: '额外能力:技术支持班组',
type: '异常增伤',
value: 0.18 * 2,
range: ['感电']
}
]
/** @type {import('../../Calculator.ts').Calculator['skills']} */
export const skills = [
{ name: '感电每次', type: '感电' },
{ name: '紊乱', type: '紊乱' },
{ name: '闪避反击:违章处罚', type: 'CF' },
{
name: '强化特殊技:超规工程清障',
type: 'EQ',
after: ({ avatar, damage }) => {
damage.x(avatar.rank >= 6 ? 6 : 2)
}
},
{ name: '连携技:协作施工', type: 'RL' },
{ name: '终结技:工程爆破请勿接近', type: 'RZ' }
]

View file

@ -0,0 +1,16 @@
{
"skill": {
"CF": [
1.642,1.792,1.942,2.092,2.242,2.392,2.542,2.692,2.842,2.992,3.142,3.292,3.442,3.592,3.742,3.892
],
"EQ": [
1.669,1.821,1.973,2.125,2.277,2.429,2.581,2.733,2.885,3.037,3.189,3.341,3.493,3.645,3.797,3.949
],
"RL": [
5.713,6.233,6.753,7.273,7.793,8.313,8.833,9.353,9.873,10.393,10.913,11.433,11.953,12.473,12.993,13.513
],
"RZ": [
14.788,16.132,17.478,18.823,20.168,21.513,22.858,24.203,25.548,26.893,28.238,29.583,30.928,32.272,33.618,34.963
]
}
}