mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-17 05:37:46 +00:00
Upd:零号·安比、波可娜等伤害计算
This commit is contained in:
parent
c293eba2d7
commit
ca29580286
13 changed files with 302 additions and 15 deletions
69
model/damage/character/零号·安比/calc.js
Normal file
69
model/damage/character/零号·安比/calc.js
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
/** @type {import('../../BuffManager.ts').BuffManager['buffs']} */
|
||||
export const buffs = [
|
||||
{
|
||||
name: '2影',
|
||||
type: '暴击率',
|
||||
value: 0.12,
|
||||
isForever: true
|
||||
},
|
||||
{
|
||||
name: '4影',
|
||||
type: '无视抗性',
|
||||
value: 0.12,
|
||||
element: 'Electric'
|
||||
},
|
||||
{
|
||||
name: '核心被动:电位差',
|
||||
type: '增伤',
|
||||
value: 'T1'
|
||||
},
|
||||
{
|
||||
name: '核心被动:电位差',
|
||||
type: '暴击伤害',
|
||||
value: ({ calc }) => calc.get_CRITDMG() * calc.calc_value('T2'),
|
||||
range: ['追加攻击']
|
||||
},
|
||||
{
|
||||
name: '额外能力:超频',
|
||||
type: '暴击率',
|
||||
value: 0.1
|
||||
},
|
||||
{
|
||||
name: '额外能力:超频',
|
||||
type: '增伤',
|
||||
value: 0.25,
|
||||
range: ['追加攻击'],
|
||||
is: {
|
||||
team: true
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
/** @type {import('../../Calculator.ts').Calculator['skills']} */
|
||||
export const skills = [
|
||||
{ name: '感电每次', type: '感电' },
|
||||
{ name: '普攻:电击穿五段', type: 'AP5' },
|
||||
{ name: '闪避反击:地闪回击', type: 'CF' },
|
||||
{ name: '特殊技:苍光0', type: 'EPC0', isHide: true },
|
||||
{
|
||||
name: '特殊技:苍光',
|
||||
type: 'EPC',
|
||||
redirect: '追加攻击',
|
||||
after: ({ damage }) => damage.add('EPC0')
|
||||
},
|
||||
{
|
||||
name: '特殊技:雷殛',
|
||||
type: 'EPL',
|
||||
redirect: '追加攻击'
|
||||
},
|
||||
{ name: '强化特殊技:极雷断空', type: 'EQ' },
|
||||
{ name: '连携技:疾跃落雷', type: 'RL' },
|
||||
{ name: '终结技:斩空掠电', type: 'RZ' },
|
||||
{
|
||||
name: '6影电磁涡流',
|
||||
type: 'Y6',
|
||||
check: 6,
|
||||
fixedMultiplier: 10,
|
||||
redirect: '追加攻击'
|
||||
}
|
||||
]
|
||||
36
model/damage/character/零号·安比/data.json
Normal file
36
model/damage/character/零号·安比/data.json
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"skill": {
|
||||
"AP5": [
|
||||
1.485,1.62,1.755,1.89,2.025,2.16,2.295,2.43,2.565,2.7,2.835,2.97,3.105,3.24,3.375,3.51
|
||||
],
|
||||
"CF": [
|
||||
2.506,2.734,2.962,3.19,3.418,3.646,3.874,4.102,4.33,4.558,4.786,5.014,5.242,5.47,5.698,5.926
|
||||
],
|
||||
"EPC0": [
|
||||
0.43,0.47,0.51,0.55,0.59,0.63,0.67,0.71,0.75,0.79,0.83,0.87,0.91,0.95,0.99,1.03
|
||||
],
|
||||
"EPC": [
|
||||
1.672,1.824,1.976,2.128,2.28,2.432,2.584,2.736,2.888,3.04,3.192,3.344,3.496,3.648,3.8,3.952
|
||||
],
|
||||
"EPL": [
|
||||
1.881,2.052,2.223,2.394,2.565,2.736,2.907,3.078,3.249,3.42,3.591,3.762,3.933,4.104,4.275,4.446
|
||||
],
|
||||
"EQ": [
|
||||
3.796,4.142,4.488,4.834,5.18,5.526,5.872,6.218,6.564,6.91,7.256,7.602,7.948,8.294,8.64,8.986
|
||||
],
|
||||
"RL": [
|
||||
5.638,6.151,6.664,7.177,7.69,8.203,8.716,9.229,9.742,10.255,10.768,11.281,11.794,12.307,12.82,13.333
|
||||
],
|
||||
"RZ": [
|
||||
17.349,18.927,20.505,22.083,23.661,25.239,26.817,28.395,29.973,31.551,33.129,34.707,36.285,37.863,39.441,41.019
|
||||
]
|
||||
},
|
||||
"buff": {
|
||||
"T1": [
|
||||
0.125,0.145,0.165,0.188,0.208,0.23,0.25
|
||||
],
|
||||
"T2": [
|
||||
0.15,0.175,0.2,0.225,0.25,0.275,0.3
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue