mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-17 13:47:44 +00:00
新增剩余所有角色伤害计算
This commit is contained in:
parent
a62109a6c0
commit
afce42af23
31 changed files with 744 additions and 11 deletions
41
model/damage/character/可琳/calc.js
Normal file
41
model/damage/character/可琳/calc.js
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
/** @type {import('../../BuffManager.ts').BuffManager['buffs']} */
|
||||
export const buffs = [
|
||||
{
|
||||
name: '1影',
|
||||
type: '增伤',
|
||||
value: 0.12
|
||||
},
|
||||
{
|
||||
name: '2影',
|
||||
type: '无视抗性',
|
||||
value: 0.005 * 20
|
||||
},
|
||||
{
|
||||
name: '6影',
|
||||
type: '倍率',
|
||||
value: 0.03 * 40,
|
||||
range: ['CF', 'EQ0', 'LK', 'LT'] // EQ只能加1次
|
||||
},
|
||||
{
|
||||
name: '核心被动:专注',
|
||||
type: '增伤',
|
||||
value: 'T',
|
||||
range: ['AP3', 'EQ']
|
||||
}
|
||||
]
|
||||
|
||||
/** @type {import('../../Calculator.ts').Calculator['skills']} */
|
||||
export const skills = [
|
||||
{ name: '强击', type: '强击' },
|
||||
{ name: '普攻:扫除开始五段', type: 'AP5' },
|
||||
{ name: '闪避反击:[舍]', type: 'CF' },
|
||||
{
|
||||
name: '强化特殊技:小心裙角',
|
||||
type: 'EQ0',
|
||||
isHide: true,
|
||||
after: ({ damage }) => damage.x(2)
|
||||
},
|
||||
{ name: '强化特殊技:小心裙角', type: 'EQ', after: ({ damage }) => damage.add('EQ0') },
|
||||
{ name: '连携技:抱歉…', type: 'RL' },
|
||||
{ name: '终结技:非、非常抱歉!', type: 'RZ' }
|
||||
]
|
||||
27
model/damage/character/可琳/data.json
Normal file
27
model/damage/character/可琳/data.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"skill": {
|
||||
"AP5": [
|
||||
4.212,4.595,4.978,5.361,5.744,6.127,6.51,6.893,7.276,7.659,8.042,8.425,8.808,9.191,9.574,9.957
|
||||
],
|
||||
"CF": [
|
||||
2.712,2.96,3.208,3.456,3.704,3.952,4.2,4.448,4.696,4.944,5.192,5.44,5.688,5.936,6.184,6.432
|
||||
],
|
||||
"EQ0": [
|
||||
3.451,3.765,4.079,4.393,4.707,5.021,5.335,5.649,5.963,6.277,6.591,6.905,7.219,7.533,7.847,8.161
|
||||
],
|
||||
"EQ": [
|
||||
10.352,11.29,12.236,13.178,14.12,15.062,16.004,16.946,17.888,18.83,19.772,20.714,21.656,22.598,23.54,24.482
|
||||
],
|
||||
"RL": [
|
||||
6.873,7.498,8.123,8.748,9.373,9.998,10.623,11.248,11.873,12.498,13.123,13.748,14.373,14.998,15.623,16.247
|
||||
],
|
||||
"RZ": [
|
||||
20.288,22.133,23.978,25.823,27.668,29.513,31.358,33.203,35.048,36.893,38.738,40.583,42.428,44.273,46.118,47.963
|
||||
]
|
||||
},
|
||||
"buff": {
|
||||
"T": [
|
||||
0.187,0.218,0.25,0.281,0.312,0.343,0.375
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue