mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-17 21:57:44 +00:00
完全重构伤害计算;支持异常伤害计算;支持所有武器、套装计算;新增悠真计算等
This commit is contained in:
parent
f7e1066773
commit
3f8e64af66
99 changed files with 4243 additions and 1615 deletions
40
model/damage/character/猫又/calc.js
Normal file
40
model/damage/character/猫又/calc.js
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
/** @type {import('../../BuffManager.ts').BuffManager['buffs']} */
|
||||
export const buffs = [
|
||||
{
|
||||
name: '6影',
|
||||
type: '暴击伤害',
|
||||
value: 0.18 * 3
|
||||
},
|
||||
{
|
||||
name: '4影',
|
||||
type: '暴击率',
|
||||
value: 0.07 * 2
|
||||
},
|
||||
{
|
||||
name: '1影',
|
||||
type: '无视抗性',
|
||||
value: 0.16,
|
||||
element: 'Physical'
|
||||
},
|
||||
{
|
||||
name: '核心被动:猫步诡影',
|
||||
type: '增伤',
|
||||
value: 'T'
|
||||
},
|
||||
{
|
||||
name: '额外能力:猫步秀',
|
||||
type: '增伤',
|
||||
value: 0.35 * 2,
|
||||
range: ['EQ']
|
||||
}
|
||||
]
|
||||
|
||||
/** @type {import('../../Calculator.ts').Calculator['skills']} */
|
||||
export const skills = [
|
||||
{ name: '强击', type: '强击' },
|
||||
{ name: '普攻:猫猫爪刺四段', type: 'AP4' },
|
||||
{ name: '闪避反击:虚影双刺', type: 'CF' },
|
||||
{ name: '强化特殊技:超~凶奇袭!', type: 'EQ' },
|
||||
{ name: '连携技:刃爪挥击', type: 'RL' },
|
||||
{ name: '终结技:刃爪强袭', type: 'RZ' }
|
||||
]
|
||||
24
model/damage/character/猫又/data.json
Normal file
24
model/damage/character/猫又/data.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"skill": {
|
||||
"AP4": [
|
||||
1.702,1.857,2.012,2.167,2.322,2.477,2.632,2.787,2.942,3.097,3.252,3.407,3.562,3.717,3.872,4.027
|
||||
],
|
||||
"CF": [
|
||||
2.279,2.487,2.695,2.903,3.111,3.319,3.527,3.735,3.943,4.151,4.359,4.567,4.775,4.983,5.191,5.399
|
||||
],
|
||||
"EQ": [
|
||||
5.397,5.888,6.379,6.87,7.361,7.852,8.343,8.834,9.325,9.816,10.307,10.798,11.289,11.78,12.271,12.762
|
||||
],
|
||||
"RL": [
|
||||
5.362,5.85,6.338,6.826,7.314,7.802,8.29,8.778,9.266,9.754,10.242,10.73,11.218,11.706,12.194,12.682
|
||||
],
|
||||
"RZ": [
|
||||
15.711,17.14,18.569,19.998,21.427,22.856,24.285,25.714,27.143,28.572,30.001,31.43,32.859,34.288,35.717,37.146
|
||||
]
|
||||
},
|
||||
"buff": {
|
||||
"T": [
|
||||
0.3,0.35,0.4,0.45,0.5,0.55,0.6
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue