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

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,26 @@
/** @type {import('../../BuffManager.ts').BuffManager['buffs']} */
export const buffs = [
{
name: '2影',
type: '增伤',
value: 0.1 + 0.3,
element: 'Physical',
range: ['EY', 'EQF', 'RZ'] // 大招下砸攻击倍率不知道,直接当做整个技能的增伤吧
},
{
name: '额外能力:同步疾驰',
type: '增伤',
value: 0.18
}
]
/** @type {import('../../Calculator.ts').Calculator['skills']} */
export const skills = [
{ name: '强击', type: '强击' },
{ name: '普攻:准备发车四段', type: 'AP4' },
{ name: '闪避反击:动力漂移', type: 'CF' },
{ name: '强化特殊技:引擎转(每圈)', type: 'EQZ' },
{ name: '强化特殊技:非常重', type: 'EQF' },
{ name: '连携技:系好安全带', type: 'RL' },
{ name: '终结技:坐~稳~啦~', type: 'RZ' }
]

View file

@ -0,0 +1,22 @@
{
"skill": {
"AP4": [
3.206,3.498,3.79,4.082,4.374,4.666,4.958,5.25,5.542,5.834,6.126,6.418,6.71,7.002,7.294,7.586
],
"CF": [
2.69,2.935,3.18,3.425,3.67,3.915,4.16,4.405,4.65,4.895,5.14,5.385,5.63,5.875,6.12,6.365
],
"EQZ": [
0.935,1.021,1.106,1.192,1.277,1.363,1.448,1.534,1.619,1.705,1.79,1.876,1.961,2.046,2.132,2.218
],
"EQF": [
6.129,6.687,7.245,7.803,8.361,8.919,9.477,10.035,10.593,11.151,11.709,12.267,12.825,13.383,13.941,14.499
],
"RL": [
6.523,7.116,7.709,8.302,8.895,9.488,10.081,10.674,11.267,11.86,12.453,13.046,13.639,14.232,14.825,15.418
],
"RZ": [
16.604,18.114,19.624,21.134,22.644,24.154,25.664,27.174,28.684,30.194,31.704,33.214,34.724,36.234,37.744,39.254
]
}
}