mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-17 13:47:44 +00:00
完全重构伤害计算;支持异常伤害计算;支持所有武器、套装计算;新增悠真计算等
This commit is contained in:
parent
f7e1066773
commit
3f8e64af66
99 changed files with 4243 additions and 1615 deletions
37
model/damage/character/11号/calc.js
Normal file
37
model/damage/character/11号/calc.js
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/** @type {import('../../BuffManager.ts').BuffManager['buffs']} */
|
||||
export const buffs = [
|
||||
{
|
||||
name: '6影',
|
||||
type: '无视抗性',
|
||||
value: 0.25,
|
||||
element: 'Fire',
|
||||
range: ['AQ']
|
||||
},
|
||||
{
|
||||
name: '2影',
|
||||
type: '增伤',
|
||||
value: 0.03 * 12,
|
||||
range: ['AP', 'CC', 'CF']
|
||||
},
|
||||
{
|
||||
name: '核心被动:热浪',
|
||||
type: '增伤',
|
||||
value: 'T',
|
||||
range: ['AQ', 'CCQ']
|
||||
},
|
||||
{
|
||||
name: '额外能力:燎原',
|
||||
type: '增伤',
|
||||
value: 0.1, // 暂不计入失衡0.225
|
||||
element: 'Fire'
|
||||
}
|
||||
]
|
||||
|
||||
/** @type {import('../../Calculator.ts').Calculator['skills']} */
|
||||
export const skills = [
|
||||
{ name: '普攻:火力镇压四段', type: 'AQ4' },
|
||||
{ name: '闪避反击:逆火', type: 'CF' },
|
||||
{ name: '强化特殊技:盛燃烈火', type: 'EQ' },
|
||||
{ name: '连携技:昂扬烈焰', type: 'RL' },
|
||||
{ name: '终结技:轰鸣烈焰', type: 'RZ' }
|
||||
]
|
||||
22
model/damage/character/11号/data.json
Normal file
22
model/damage/character/11号/data.json
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"skill": {
|
||||
"AQ4": [
|
||||
3.407,3.717,4.027,4.337,4.647,4.957,5.267,5.577,5.887,6.197,6.507,6.817,7.127,7.437,7.747,8.057
|
||||
],
|
||||
"CF": [
|
||||
2.62,2.859,3.098,3.337,3.576,3.815,4.054,4.293,4.532,4.771,5.01,5.249,5.488,5.727,5.966,6.205
|
||||
],
|
||||
"EQ": [
|
||||
6.75,7.364,7.978,8.592,9.206,9.82,10.434,11.048,11.662,12.276,12.89,13.504,14.118,14.732,15.346,15.96
|
||||
],
|
||||
"RL": [
|
||||
6.325,6.9,7.475,8.05,8.625,9.2,9.775,10.35,10.925,11.5,12.075,12.65,13.225,13.8,14.375,14.95
|
||||
],
|
||||
"RZ": [
|
||||
21.03,22.942,24.854,26.766,28.678,30.59,32.502,34.414,36.326,38.238,40.15,42.062,43.974,45.886,47.798,49.71
|
||||
]
|
||||
},
|
||||
"buff": {
|
||||
"T": [0.35,0.408,0.466,0.525,0.583,0.641,0.7]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue