mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-17 05:37:46 +00:00
新增剩余所有角色伤害计算
This commit is contained in:
parent
a62109a6c0
commit
afce42af23
31 changed files with 744 additions and 11 deletions
37
model/damage/character/比利/calc.js
Normal file
37
model/damage/character/比利/calc.js
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/** @type {import('../../BuffManager.ts').BuffManager['buffs']} */
|
||||
export const buffs = [
|
||||
{
|
||||
name: '2影',
|
||||
type: '增伤',
|
||||
value: 0.25,
|
||||
isForever: true,
|
||||
range: ['CF']
|
||||
},
|
||||
{
|
||||
name: '4影',
|
||||
type: '暴击率',
|
||||
value: 0.32,
|
||||
range: ['EQ']
|
||||
},
|
||||
{
|
||||
name: '6影',
|
||||
type: '增伤',
|
||||
value: 0.06 * 5
|
||||
},
|
||||
{
|
||||
name: '额外能力:骑士战队',
|
||||
type: '增伤',
|
||||
value: 0.5 * 2,
|
||||
range: ['RZ']
|
||||
}
|
||||
]
|
||||
|
||||
/** @type {import('../../Calculator.ts').Calculator['skills']} */
|
||||
export const skills = [
|
||||
{ name: '强击', type: '强击' },
|
||||
{ name: '冲刺攻击(周身射击)', type: 'CCS' },
|
||||
{ name: '闪避反击:公平决斗', type: 'CF' },
|
||||
{ name: '强化特殊技:清场时间', type: 'EQ' },
|
||||
{ name: '连携技:星徽荣耀幻影', type: 'RL' },
|
||||
{ name: '终结技:星徽在此闪耀', type: 'RZ' }
|
||||
]
|
||||
19
model/damage/character/比利/data.json
Normal file
19
model/damage/character/比利/data.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"skill": {
|
||||
"CCS": [
|
||||
0.63,0.688,0.746,0.804,0.862,0.92,0.978,1.036,1.094,1.152,1.21,1.268,1.326,1.384,1.442,1.5
|
||||
],
|
||||
"CF": [
|
||||
2.214,2.416,2.618,2.82,3.022,3.224,3.426,3.628,3.83,4.032,4.234,4.436,4.638,4.84,5.042,5.244
|
||||
],
|
||||
"EQ": [
|
||||
5.438,5.933,6.428,6.923,7.418,7.913,8.408,8.903,9.398,9.893,10.388,10.883,11.378,11.873,12.368,12.863
|
||||
],
|
||||
"RL": [
|
||||
7.352,8.021,8.69,9.359,10.028,10.697,11.366,12.035,12.704,13.373,14.042,14.711,15.38,16.049,16.718,17.387
|
||||
],
|
||||
"RZ": [
|
||||
15.977,17.43,18.883,20.336,21.789,23.242,24.695,26.148,27.601,29.054,30.507,31.96,33.413,34.866,36.319,37.772
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue