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
31
model/damage/character/妮可/calc.js
Normal file
31
model/damage/character/妮可/calc.js
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
/** @type {import('../../BuffManager.ts').BuffManager['buffs']} */
|
||||
export const buffs = [
|
||||
{
|
||||
name: '6影',
|
||||
type: '暴击率',
|
||||
value: 0.015 * 10
|
||||
},
|
||||
{
|
||||
name: '核心被动:机关箱',
|
||||
type: '无视防御',
|
||||
value: 'T'
|
||||
},
|
||||
{
|
||||
name: '额外能力:狡兔三窟',
|
||||
type: '增伤',
|
||||
value: 0.25,
|
||||
element: 'Ether'
|
||||
}
|
||||
]
|
||||
|
||||
/** @type {import('../../Calculator.ts').Calculator['skills']} */
|
||||
export const skills = [
|
||||
{ name: '侵蚀每次', type: '侵蚀' },
|
||||
{ name: '闪避反击:牵制炮击', type: 'CF' },
|
||||
{ name: '强化E:夹心糖衣炮弹炮击', type: 'EQP0', isHide: true },
|
||||
{ name: '强化E:夹心糖衣炮弹(点按)', type: 'EQP', after: ({ damage }) => damage.add('EQP0') },
|
||||
{ name: '连携技:高价以太爆弹炮击', type: 'RL0', isHide: true },
|
||||
{ name: '连携技:高价以太爆弹', type: 'RL', after: ({ damage }) => damage.add('RL0') },
|
||||
{ name: '终结技:特制以太榴弹炮击', type: 'RZ0', isHide: true },
|
||||
{ name: '终结技:特制以太榴弹', type: 'RZ', after: ({ damage }) => damage.add('RZ0') },
|
||||
]
|
||||
30
model/damage/character/妮可/data.json
Normal file
30
model/damage/character/妮可/data.json
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"skill": {
|
||||
"CF": [
|
||||
1.824,1.99,2.156,2.322,2.488,2.654,2.82,2.986,3.152,3.318,3.484,3.65,3.816,3.982,4.148,4.314
|
||||
],
|
||||
"EQP0": [
|
||||
2.15,2.346,2.542,2.738,2.934,3.13,3.326,3.522,3.718,3.914,4.11,4.306,4.502,4.698,4.894,5.09
|
||||
],
|
||||
"EQP": [
|
||||
3.87,4.222,4.574,4.926,5.278,5.63,5.982,6.334,6.686,7.038,7.39,7.742,8.094,8.446,8.798,9.15
|
||||
],
|
||||
"RL0": [
|
||||
2.096,2.288,2.48,2.672,2.864,3.056,3.248,3.44,3.632,3.824,4.016,4.208,4.4,4.592,4.784,4.976
|
||||
],
|
||||
"RL": [
|
||||
2.83,3.088,3.346,3.604,3.862,4.12,4.378,4.636,4.894,5.152,5.41,5.668,5.926,6.184,6.442,6.7
|
||||
],
|
||||
"RZ0": [
|
||||
6.468,7.056,7.644,8.232,8.82,9.408,9.996,10.584,11.172,11.76,12.348,12.936,13.524,14.112,14.7,15.288
|
||||
],
|
||||
"RZ": [
|
||||
8.732,9.526,10.32,11.114,11.908,12.702,13.496,14.29,15.084,15.878,16.672,17.466,18.26,19.054,19.848,20.642
|
||||
]
|
||||
},
|
||||
"buff": {
|
||||
"T": [
|
||||
0.2,0.25,0.3,0.34,0.36,0.38,0.4
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue