File size: 15,293 Bytes
dbae951
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
from typing import Dict

from base.skill import Skill, DotSkill, PhysicalDamage, PhysicalDotDamage
from general.skills import GENERAL_SKILLS

SKILLS: Dict[int, Skill | dict] = {
    32822: {
        "skill_class": PhysicalDamage,
        "skill_name": "破",
        "surplus_cof": [
            1048576 * (0.48875 - 1),
            1048576 * (0.146625 - 1)
        ]
    },
    22126: {
        "skill_class": PhysicalDamage,
        "skill_name": "碎风刃",
        "attack_power_cof": 16,
        "weapon_damage_cof": 1024,
        "skill_damage_addition": 205
    },
    22787: {
        "skill_class": PhysicalDamage,
        "skill_name": "幽冥窥月",
        "damage_base": [67, 152, 237, 322, 407, 493, 578, 663, 748, 833],
        "damage_rand": 10,
        "attack_power_cof": [16] * 2 +
                            [8 * i for i in range(3, 10)] +
                            [80],
        "weapon_damage_cof": 1024
    },
    **{
        skill_id: {
            "skill_class": PhysicalDamage,
            "skill_name": "星垂平野",
            "damage_base": [40, 55, 71, 86, 101, 117, 132, 147, 163, 178, 193, 209, 224, 239, 255, 270, 285, 301, 316,
                            331, 347, 362, 377, 393, 408, 423, 439, 454, 469, 485, 500],
            "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15, 15, 15, 15,
                            15, 15, 15, 15, 15, 15],
            "attack_power_cof": [24 * 1.5 * 1.3 * 0.8 * 1.1 * 1.15] * 5 +
                                [(3.6 * i + 5) * 1.5 * 1.3 * 0.8 * 1.1 * 1.15 for i in range(6, 31)] +
                                [180 * 1.3 * 0.8 * 1.1 * 1.15],
            "weapon_damage_cof": 1024
        } for skill_id in (22170, 22550, 22551)
    },
    22298: {
        "skill_class": PhysicalDamage,
        "skill_name": "星垂平野",
        "damage_base": [40, 55, 71, 86, 101, 117, 132, 147, 163, 178, 193, 209, 224, 239, 255, 270, 285, 301, 316,
                        331, 347, 362, 377, 393, 408, 423, 439, 454, 469, 485, 500],
        "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15, 15, 15, 15,
                        15, 15, 15, 15, 15, 15],
        "attack_power_cof": [24 * 1.5 * 0.4 * 1.3 * 0.8 * 1.1 * 1.15] * 5 +
                            [(3.6 * i + 5) * 1.5 * 0.4 * 1.3 * 0.8 * 1.1 * 1.15 for i in range(6, 31)] +
                            [180 * 0.4 * 1.3 * 0.8 * 1.1 * 1.15],
        "weapon_damage_cof": 1024
    },
    22621: {
        "skill_class": PhysicalDamage,
        "skill_name": "金戈回澜",
        "damage_base": [87, 134, 182, 229, 277, 324, 372, 419, 466, 514, 561, 609, 656, 704, 751, 798, 846, 893, 941,
                        988, 1036, 1083],
        "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15],
        "attack_power_cof": [52 * 1.35 * 0.9 * 1.1 * 1.15] * 3 +
                            [(10 * i + 15) * 1.35 * 0.9 * 1.1 * 1.15 for i in range(4, 22)] +
                            [260 * 1.35 * 0.9 * 1.1 * 1.15],
        "weapon_damage_cof": 2048
    },
    22620: {
        "skill_class": PhysicalDamage,
        "skill_name": "金戈回澜",
        "damage_base": [87, 134, 182, 229, 277, 324, 372, 419, 466, 514, 561, 609, 656, 704, 751, 798, 846, 893, 941,
                        988, 1036, 1083],
        "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15],
        "attack_power_cof": [52 * 1.35 * 0.1 * 0.9 * 1.1 * 1.15] * 3 +
                            [(10 * i + 15) * 1.35 * 0.1 * 0.9 * 1.1 * 1.15 for i in range(4, 22)] +
                            [260 * 1.35 * 0.1 * 0.9 * 1.1 * 1.15],
        "weapon_damage_cof": 1024
    },
    22610: {
        "skill_class": PhysicalDamage,
        "skill_name": "隐风雷",
        "damage_base": [160, 180, 200, 220, 240, 260, 280, 300, 310, 320, 330, 340, 350, 360, 370, 380, 395, 413],
        "damage_rand": [e * 0.1 for e in
                        [73, 93, 113, 133, 153, 173, 193, 213, 233, 253, 273, 293, 313, 333, 353, 373, 393, 413]],
        "attack_power_cof": [20] * 8 +
                            [(60 + (i - 8) * 0.3) for i in range(9, 18)] +
                            [70],
        "weapon_damage_cof": 1024
    },
    22611: {
        "skill_class": PhysicalDamage,
        "skill_name": "隐风雷",
        "damage_base": [160, 180, 200, 220, 240, 260, 280, 300, 310, 320, 330, 340, 350, 360, 370, 380, 395, 413],
        "damage_rand": [e * 0.1 for e in
                        [73, 93, 113, 133, 153, 173, 193, 213, 233, 253, 273, 293, 313, 333, 353, 373, 393, 413]],
        "attack_power_cof": [20 * 1.3] * 8 +
                            [(60 + (i - 8) * 0.3) * 1.3 for i in range(9, 18)] +
                            [70 * 1.3],
        "weapon_damage_cof": 1024
    },
    22612: {
        "skill_class": PhysicalDamage,
        "skill_name": "隐风雷",
        "damage_base": [160, 180, 200, 220, 240, 260, 280, 300, 310, 320, 330, 340, 350, 360, 370, 380, 395, 413],
        "damage_rand": [e * 0.1 for e in
                        [73, 93, 113, 133, 153, 173, 193, 213, 233, 253, 273, 293, 313, 333, 353, 373, 393, 413]],
        "attack_power_cof": [20 * 0.5 * 1.3] * 8 +
                            [(60 + (i - 8) * 0.3) * 0.5 * 1.3 for i in range(9, 18)] +
                            [70 * 0.5 * 1.3],
        "weapon_damage_cof": 1024
    },
    22604: {
        "skill_class": PhysicalDamage,
        "skill_name": "寂洪荒",
        "damage_base": [33, 45, 58, 70, 83, 95, 107, 120, 132, 144, 157, 169, 182, 194, 206, 219, 231, 244, 256, 268,
                        281, 293, 306, 318, 330, 343, 355, 367, 380, 392, 405, 417],
        "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15, 15, 15, 15, 15,
                        15, 15, 15, 15, 15, 15],
        "attack_power_cof": [40 * 1.3 * 1.25 * 0.85 * 0.9 * 0.9 * 0.9 * 0.9 * 0.9 * 1.1 * 1.1] * 6 +
                            [(3 * i + 1.5) * 2 * 1.3 * 1.25 * 0.85 * 0.9 * 0.9 * 0.9 * 0.9 * 0.9 * 1.1 * 1.1
                             for i in range(7, 32)] +
                            [250 * 1.3 * 1.25 * 0.85 * 0.9 * 0.9 * 0.9 * 0.9 * 0.9 * 1.1 * 1.1],
        "weapon_damage_cof": 2048
    },
    22605: {
        "skill_class": PhysicalDamage,
        "skill_name": "寂洪荒",
        "damage_base": [33, 45, 58, 70, 83, 95, 107, 120, 132, 144, 157, 169, 182, 194, 206, 219, 231, 244, 256, 268,
                        281, 293, 306, 318, 330, 343, 355, 367, 380, 392, 405, 417],
        "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15, 15, 15, 15, 15,
                        15, 15, 15, 15, 15, 15],
        "attack_power_cof": [40 * 1.3 * 0.66 * 1.25 * 0.85 * 0.9 * 0.9 * 0.9 * 0.9 * 0.9 * 1.1 * 1.1 * 1.1] * 6 +
                            [(3 * i + 1.5) * 2 * 1.3 * 0.66 * 1.25 * 0.85 * 0.9 * 0.9 * 0.9 * 0.9 * 0.9 * 1.1 * 1.1 *
                             1.1 for i in range(7, 32)] +
                            [250 * 1.3 * 0.66 * 1.25 * 0.85 * 0.9 * 0.9 * 0.9 * 0.9 * 0.9 * 1.1 * 1.1 * 1.1],
        "weapon_damage_cof": 1024
    },
    22490: {
        "skill_class": PhysicalDamage,
        "skill_name": "乱天狼",
        "damage_base": [37, 67, 97, 127, 157, 187, 217, 248, 278, 308, 338, 368, 398, 428, 458],
        "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10],
        "attack_power_cof": [24 * 1.3 * 1.2 * 0.85 * 0.85 * 0.9 * 0.8 * 1.1 * 1.1 * 1.1 * 1.1] * 2 +
                            [9 * i * 1.3 * 1.2 * 0.85 * 0.85 * 0.9 * 0.8 * 1.1 * 1.1 * 1.1 * 1.1
                             for i in range(3, 15)] +
                            [150 * 1.3 * 1.2 * 0.85 * 0.85 * 0.9 * 0.8 * 1.1 * 1.1 * 1.1 * 1.1],
        "weapon_damage_cof": 1024
    },
    22554: {
        "skill_class": PhysicalDamage,
        "skill_name": "乱天狼",
        "damage_base": [33, 45, 58, 70, 83, 95, 107, 120, 132, 144, 157, 169, 182, 194, 206, 219, 231, 244, 256, 268,
                        281, 293, 306, 318, 330, 343, 355, 367, 380, 392, 405, 417],
        "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15, 15, 15, 15, 15,
                        15, 15, 15, 15, 15, 15],
        "attack_power_cof": [24 * 1.3 * 0.4 * 1.2 * 0.85 * 0.85 * 0.9 * 0.8 * 1.1 * 1.1 * 1.1 * 1.1] * 2 +
                            [9 * i * 1.3 * 0.4 * 1.2 * 0.85 * 0.85 * 0.9 * 0.8 * 1.1 * 1.1 * 1.1 * 1.1 *
                             1.1 for i in range(3, 15)] +
                            [150 * 1.3 * 0.4 * 1.2 * 0.85 * 0.85 * 0.9 * 0.8 * 1.1 * 1.1 * 1.1 * 1.1],
        "weapon_damage_cof": 1024
    },
    15568: {
        "skill_class": PhysicalDotDamage,
        "skill_name": "寂洪荒(DOT)",
        "damage_base": 25,
        "attack_power_cof": 250 * 1.2 * 1.15,
        "interval": 48,
        "tick": 5,
        "max_stack": 3,
    },
    22330: {
        "skill_class": DotSkill,
        "skill_name": "寂洪荒",
        "bind_skill": 15568
    },
    25314: {
        "skill_class": PhysicalDamage,
        "skill_name": "遗恨",
        "damage_base": [133, 644, 1156, 1667],
        "damage_rand": 10,
        "attack_power_cof": 100 * 1.2 * 1.15 * 1.3 * 1.15
    },
    36267: {
        "skill_class": PhysicalDamage,
        "skill_name": "寂洪荒",
        "damage_base": [33, 45, 58, 70, 83, 95, 107, 120, 132, 144, 157, 169, 182, 194, 206, 219, 231, 244, 256, 268,
                        281, 293, 306, 318, 330, 343, 355, 367, 380, 392, 405, 417],
        "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15, 15, 15, 15, 15,
                        15, 15, 15, 15, 15, 15],
        "attack_power_cof": [40 * 1.3 * 1.25 * 0.85 * 0.9 * 0.9 * 0.9 * 0.9 * 0.9 * 1.35 * 1.1 * 1.1] * 6 +
                            [(3 * i + 1.5) * 2 * 1.3 * 1.25 * 0.85 * 0.9 * 0.9 * 0.9 * 0.9 * 0.9 * 1.35 * 1.1 * 1.1
                             for i in range(7, 32)] +
                            [250 * 1.3 * 1.25 * 0.85 * 0.9 * 0.9 * 0.9 * 0.9 * 0.9 * 1.35 * 1.1 * 1.1],
        "weapon_damage_cof": 2048
    },
    36268: {
        "skill_class": PhysicalDamage,
        "skill_name": "寂洪荒",
        "damage_base": [33, 45, 58, 70, 83, 95, 107, 120, 132, 144, 157, 169, 182, 194, 206, 219, 231, 244, 256, 268,
                        281, 293, 306, 318, 330, 343, 355, 367, 380, 392, 405, 417],
        "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15, 15, 15, 15, 15,
                        15, 15, 15, 15, 15, 15],
        "attack_power_cof": [40 * 1.3 * 0.66 * 1.25 * 0.85 * 0.9 * 0.9 * 0.9 * 0.9 * 0.9 * 1.1 * 1.35 * 1.1 * 1.1] * 6 +
                            [(3 * i + 1.5) * 2 * 1.3 * 0.66 * 1.25 * 0.85 * 0.9 * 0.9 * 0.9 * 0.9 * 0.9 * 1.1 * 1.35 *
                             1.1 * 1.1 for i in range(7, 32)] +
                            [250 * 1.3 * 0.66 * 1.25 * 0.85 * 0.9 * 0.9 * 0.9 * 0.9 * 0.9 * 1.1 * 1.35 * 1.1 * 1.1],
        "weapon_damage_cof": 1024
    },
    36265: {
        "skill_class": PhysicalDamage,
        "skill_name": "乱天狼",
        "damage_base": [37, 67, 97, 127, 157, 187, 217, 248, 278, 308, 338, 368, 398, 428, 458],
        "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10],
        "attack_power_cof": [24 * 1.3 * 1.2 * 0.85 * 0.85 * 0.9 * 0.8 * 1.1 * 1.1 * 1.35 * 1.1 * 1.1] * 2 +
                            [9 * i * 1.3 * 1.2 * 0.85 * 0.85 * 0.9 * 0.8 * 1.1 * 1.1 * 1.35 * 1.1 * 1.1
                             for i in range(3, 15)] +
                            [150 * 1.3 * 1.2 * 0.85 * 0.85 * 0.9 * 0.8 * 1.1 * 1.1 * 1.35 * 1.1 * 1.1],
        "weapon_damage_cof": 1024
    },
    36266: {
        "skill_class": PhysicalDamage,
        "skill_name": "乱天狼",
        "damage_base": [33, 45, 58, 70, 83, 95, 107, 120, 132, 144, 157, 169, 182, 194, 206, 219, 231, 244, 256, 268,
                        281, 293, 306, 318, 330, 343, 355, 367, 380, 392, 405, 417],
        "damage_rand": [5, 5, 5, 5, 5, 5, 5, 5, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 15, 15, 15, 15, 15,
                        15, 15, 15, 15, 15, 15],
        "attack_power_cof": [24 * 1.3 * 0.4 * 1.2 * 0.85 * 0.85 * 0.9 * 0.8 * 1.1 * 1.1 * 1.35 * 1.1 * 1.1] * 2 +
                            [9 * i * 1.3 * 0.4 * 1.2 * 0.85 * 0.85 * 0.9 * 0.8 * 1.1 * 1.1 * 1.35 * 1.1 * 1.1 *
                             1.1 for i in range(3, 15)] +
                            [150 * 1.3 * 0.4 * 1.2 * 0.85 * 0.85 * 0.9 * 0.8 * 1.1 * 1.1 * 1.35 * 1.1 * 1.1],
        "weapon_damage_cof": 1024
    },
    36269: {
        "skill_class": PhysicalDamage,
        "skill_name": "隐风雷",
        "damage_base": [160, 180, 200, 220, 240, 260, 280, 300, 310, 320, 330, 340, 350, 360, 370, 380, 395, 413],
        "damage_rand": [e * 0.1 for e in
                        [73, 93, 113, 133, 153, 173, 193, 213, 233, 253, 273, 293, 313, 333, 353, 373, 393, 413]],
        "attack_power_cof": [20 * 1.3 * 1.35] * 8 +
                            [(60 + (i - 8) * 0.3) * 1.3 * 1.35 for i in range(9, 18)] +
                            [70 * 1.3 * 1.35],
        "weapon_damage_cof": 1024
    },
    36270: {
        "skill_class": PhysicalDamage,
        "skill_name": "隐风雷",
        "damage_base": [160, 180, 200, 220, 240, 260, 280, 300, 310, 320, 330, 340, 350, 360, 370, 380, 395, 413],
        "damage_rand": [e * 0.1 for e in
                        [73, 93, 113, 133, 153, 173, 193, 213, 233, 253, 273, 293, 313, 333, 353, 373, 393, 413]],
        "attack_power_cof": [20 * 0.5 * 1.3 * 1.35] * 8 +
                            [(60 + (i - 8) * 0.3) * 0.5 * 1.3 * 1.35 for i in range(9, 18)] +
                            [70 * 0.5 * 1.3 * 1.35],
        "weapon_damage_cof": 1024
    },
    34981: {
        "skill_class": PhysicalDamage,
        "skill_name": "寂洪荒·风骨",
        "damage_base": 300,
        "damage_rand": 35,
        "attack_power_cof": 750 * 0.7
    },
    29751: {
        "skill_class": PhysicalDamage,
        "skill_name": "飞刃回转",
        "damage_base": 77,
        "damage_rand": 25,
        "attack_power_cof": 100 * 1.15
    },
    22761: {
        "skill_class": PhysicalDamage,
        "skill_name": "山河渊隙",
        "damage_base": 136 * 2,
        "damage_rand": 20,
        "attack_power_cof": 30 * 2 * 1.1 * 1.1 * 1.1 * 1.83
    },
    25784: {
        "skill_class": PhysicalDamage,
        "skill_name": "寂洪荒·神兵",
        "damage_base": 20,
        "damage_rand": 2,
        "attack_power_cof": 50
    },
    19626: {
        "skill_class": PhysicalDotDamage,
        "skill_name": "乍起狂澜(DOT)",
        "damage_base": 25,
        "attack_power_cof": 330 * 1.6 * 1.1,
        "interval": 48,
        "max_stack": 3,
        "tick": 6

    },
    26980: {
        "skill_class": DotSkill,
        "skill_name": "乍起狂澜",
        "bind_skill": 19626
    }
}

for skill_id, detail in SKILLS.items():
    SKILLS[skill_id] = detail.pop('skill_class')(skill_id)
    for attr, value in detail.items():
        setattr(SKILLS[skill_id], attr, value)

for skill_id, skill in GENERAL_SKILLS.items():
    SKILLS[skill_id] = skill