mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-22 06:58:24 +00:00
update models/dmg/DmgCalcMeta.js.
Signed-off-by: liangshi <1142607614@qq.com>
This commit is contained in:
parent
a7e0b11ede
commit
e312dff464
@ -5,6 +5,8 @@ export const erType = {
|
|||||||
// 增幅反应
|
// 增幅反应
|
||||||
vaporize: { type: 'pct', num: ({ element }) => element === '水' ? 2 : 1.5, title: '蒸发' },
|
vaporize: { type: 'pct', num: ({ element }) => element === '水' ? 2 : 1.5, title: '蒸发' },
|
||||||
melt: { type: 'pct', num: ({ element }) => element === '火' ? 2 : 1.5, title: '融化' },
|
melt: { type: 'pct', num: ({ element }) => element === '火' ? 2 : 1.5, title: '融化' },
|
||||||
|
// 结晶护盾
|
||||||
|
crystallize: { type: 'shield', num: () => 1, title: '结晶' },
|
||||||
// 剧变反应
|
// 剧变反应
|
||||||
burning: { type: 'fusion', num: () => 1, title: '燃烧' },
|
burning: { type: 'fusion', num: () => 1, title: '燃烧' },
|
||||||
superConduct: { type: 'fusion', num: () => 2, title: '超导' },
|
superConduct: { type: 'fusion', num: () => 2, title: '超导' },
|
||||||
@ -134,6 +136,100 @@ export const eleBaseDmg = {
|
|||||||
90: 361.713
|
90: 361.713
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 各等级结晶护盾基础吸收量
|
||||||
|
export const cryBaseDmg = {
|
||||||
|
1: 91.18,
|
||||||
|
2: 98.71,
|
||||||
|
3: 106.24,
|
||||||
|
4: 113.76,
|
||||||
|
5: 121.29,
|
||||||
|
6: 128.82,
|
||||||
|
7: 136.35,
|
||||||
|
8: 143.88,
|
||||||
|
9: 151.41,
|
||||||
|
10: 158.94,
|
||||||
|
11: 169.99,
|
||||||
|
12: 181.08,
|
||||||
|
13: 192.19,
|
||||||
|
14: 204.05,
|
||||||
|
15: 215.94,
|
||||||
|
16: 227.86,
|
||||||
|
17: 247.69,
|
||||||
|
18: 267.54,
|
||||||
|
19: 287.43,
|
||||||
|
20: 303.83,
|
||||||
|
21: 320.23,
|
||||||
|
22: 336.63,
|
||||||
|
23: 352.32,
|
||||||
|
24: 368.01,
|
||||||
|
25: 383.70,
|
||||||
|
26: 394.43,
|
||||||
|
27: 405.18,
|
||||||
|
28: 415.95,
|
||||||
|
29: 426.74,
|
||||||
|
30: 437.54,
|
||||||
|
31: 450.60,
|
||||||
|
32: 463.70,
|
||||||
|
33: 476.85,
|
||||||
|
34: 491.13,
|
||||||
|
35: 502.55,
|
||||||
|
36: 514.01,
|
||||||
|
37: 531.41,
|
||||||
|
38: 549.98,
|
||||||
|
39: 568.58,
|
||||||
|
40: 585.00,
|
||||||
|
41: 605.67,
|
||||||
|
42: 626.39,
|
||||||
|
43: 646.05,
|
||||||
|
44: 665.76,
|
||||||
|
45: 685.50,
|
||||||
|
46: 700.84,
|
||||||
|
47: 723.33,
|
||||||
|
48: 745.87,
|
||||||
|
49: 768.44,
|
||||||
|
50: 786.79,
|
||||||
|
51: 809.54,
|
||||||
|
52: 832.33,
|
||||||
|
53: 855.16,
|
||||||
|
54: 878.04,
|
||||||
|
55: 899.48,
|
||||||
|
56: 919.36,
|
||||||
|
57: 946.04,
|
||||||
|
58: 974.76,
|
||||||
|
59: 1003.58,
|
||||||
|
60: 1030.08,
|
||||||
|
61: 1056.64,
|
||||||
|
62: 1085.25,
|
||||||
|
63: 1113.92,
|
||||||
|
64: 1149.26,
|
||||||
|
65: 1178.06,
|
||||||
|
66: 1200.22,
|
||||||
|
67: 1227.66,
|
||||||
|
68: 1257.24,
|
||||||
|
69: 1284.92,
|
||||||
|
70: 1314.75,
|
||||||
|
71: 1342.67,
|
||||||
|
72: 1372.75,
|
||||||
|
73: 1396.32,
|
||||||
|
74: 1427.31,
|
||||||
|
75: 1458.37,
|
||||||
|
76: 1482.34,
|
||||||
|
77: 1511.91,
|
||||||
|
78: 1541.55,
|
||||||
|
79: 1569.15,
|
||||||
|
80: 1596.15,
|
||||||
|
81: 1622.42,
|
||||||
|
82: 1648.07,
|
||||||
|
83: 1666.38,
|
||||||
|
84: 1684.68,
|
||||||
|
85: 1702.98,
|
||||||
|
86: 1726.10,
|
||||||
|
87: 1754.67,
|
||||||
|
88: 1785.87,
|
||||||
|
89: 1817.14,
|
||||||
|
90: 1851.06
|
||||||
|
}
|
||||||
|
|
||||||
// 各等级击破基础伤害
|
// 各等级击破基础伤害
|
||||||
export const breakBaseDmg = {
|
export const breakBaseDmg = {
|
||||||
1: 54.00,
|
1: 54.00,
|
||||||
|
Loading…
Reference in New Issue
Block a user