mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-16 21:27:47 +00:00
新增莱卡恩伤害计算
This commit is contained in:
parent
b51acca73e
commit
5bacdbbbc9
3 changed files with 46 additions and 591 deletions
24
model/damage/character/莱卡恩/calc.js
Normal file
24
model/damage/character/莱卡恩/calc.js
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
/** @type {import('../../BuffManager.ts').BuffManager['buffs']} */
|
||||
export const buffs = [
|
||||
{
|
||||
name: '6影',
|
||||
type: '增伤',
|
||||
value: 0.1 * 5
|
||||
},
|
||||
{
|
||||
name: '核心被动:金属狼足',
|
||||
type: '无视抗性',
|
||||
value: 0.25,
|
||||
element: 'Ice'
|
||||
}
|
||||
]
|
||||
|
||||
/** @type {import('../../Calculator.ts').Calculator['skills']} */
|
||||
export const skills = [
|
||||
{ name: '蓄力普攻:五段一级', type: 'AX51' },
|
||||
{ name: '蓄力普攻:五段二级', type: 'AX52' },
|
||||
{ name: '闪避反击:保持清洁', type: 'CF' },
|
||||
{ name: '蓄力强化特殊技:狂猎时刻', type: 'EQX' },
|
||||
{ name: '连携技:遵命', type: 'RL' },
|
||||
{ name: '终结技:不辱使命', type: 'RZ' }
|
||||
]
|
||||
22
model/damage/character/莱卡恩/data.json
Normal file
22
model/damage/character/莱卡恩/data.json
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"skill": {
|
||||
"AX51": [
|
||||
2.776,3.029,3.282,3.535,3.788,4.041,4.294,4.547,4.8,5.053,5.306,5.559,5.812,6.065,6.318,6.571
|
||||
],
|
||||
"AX52": [
|
||||
3.557,3.881,4.205,4.529,4.853,5.177,5.501,5.825,6.149,6.473,6.797,7.121,7.445,7.769,8.093,8.417
|
||||
],
|
||||
"CF": [
|
||||
1.87,2.04,2.21,2.38,2.55,2.72,2.89,3.06,3.23,3.4,3.57,3.74,3.91,4.08,4.25,4.42
|
||||
],
|
||||
"EQX": [
|
||||
7.895,8.614,9.333,10.052,10.771,11.49,12.209,12.928,13.647,14.366,15.085,15.804,16.523,17.242,17.961,18.68
|
||||
],
|
||||
"RL": [
|
||||
6.378,6.958,7.538,8.118,8.698,9.278,9.858,10.438,11.018,11.598,12.178,12.758,13.338,13.918,14.498,15.078
|
||||
],
|
||||
"RZ": [
|
||||
16.941,18.482,20.023,21.564,23.105,24.646,26.187,27.728,29.269,30.81,32.351,33.892,35.433,36.974,38.515,40.056
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue