hrbattle 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +103 -0
- package/dist/battle/battleCore.d.ts +83 -0
- package/dist/battle/battleCore.js +779 -0
- package/dist/battle/config/json/designed-buffs.json +608 -0
- package/dist/battle/config/json/designed-hero-skill-books.json +146 -0
- package/dist/battle/config/json/designed-monster-skill-books.json +308 -0
- package/dist/battle/config/json/designed-roster.json +438 -0
- package/dist/battle/config/json/designed-skill-templates.json +81 -0
- package/dist/battle/config/jsonConfigLoader.d.ts +26 -0
- package/dist/battle/config/jsonConfigLoader.js +77 -0
- package/dist/battle/effectSystem.d.ts +26 -0
- package/dist/battle/effectSystem.js +175 -0
- package/dist/battle/eventBus.d.ts +8 -0
- package/dist/battle/eventBus.js +20 -0
- package/dist/battle/formula.d.ts +19 -0
- package/dist/battle/formula.js +92 -0
- package/dist/battle/logger.d.ts +28 -0
- package/dist/battle/logger.js +66 -0
- package/dist/battle/random.d.ts +6 -0
- package/dist/battle/random.js +16 -0
- package/dist/battle/script/designedScripts.d.ts +2 -0
- package/dist/battle/script/designedScripts.js +1013 -0
- package/dist/battle/script/monsterScripts.d.ts +2 -0
- package/dist/battle/script/monsterScripts.js +277 -0
- package/dist/battle/script/monsterScripts18xx.d.ts +2 -0
- package/dist/battle/script/monsterScripts18xx.js +330 -0
- package/dist/battle/script/monsterScripts19xx.d.ts +2 -0
- package/dist/battle/script/monsterScripts19xx.js +271 -0
- package/dist/battle/script/monsterScripts19xxPart2.d.ts +2 -0
- package/dist/battle/script/monsterScripts19xxPart2.js +400 -0
- package/dist/battle/skillEngine.d.ts +36 -0
- package/dist/battle/skillEngine.js +246 -0
- package/dist/battle/targeting.d.ts +3 -0
- package/dist/battle/targeting.js +38 -0
- package/dist/battle/turnbar.d.ts +8 -0
- package/dist/battle/turnbar.js +40 -0
- package/dist/battle/types.d.ts +302 -0
- package/dist/battle/types.js +1 -0
- package/dist/cocos-adapter/BattleFacade.d.ts +8 -0
- package/dist/cocos-adapter/BattleFacade.js +22 -0
- package/dist/cocos-adapter/clientBattleResult.d.ts +127 -0
- package/dist/cocos-adapter/clientBattleResult.js +413 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +8 -0
- package/package.json +32 -0
|
@@ -0,0 +1,608 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "stun",
|
|
4
|
+
"name": "眩晕",
|
|
5
|
+
"maxStacks": 1,
|
|
6
|
+
"durationPerStack": 1,
|
|
7
|
+
"onRoundEndDelta": -999,
|
|
8
|
+
"stun": true
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"id": "bless",
|
|
12
|
+
"name": "祝福",
|
|
13
|
+
"maxStacks": 1,
|
|
14
|
+
"durationPerStack": 1,
|
|
15
|
+
"onRoundEndDelta": -1,
|
|
16
|
+
"expireRounds": 1
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"id": "attack-up",
|
|
20
|
+
"name": "攻击提升",
|
|
21
|
+
"maxStacks": 1,
|
|
22
|
+
"durationPerStack": 2,
|
|
23
|
+
"onRoundEndDelta": -1,
|
|
24
|
+
"expireRounds": 2,
|
|
25
|
+
"attackRateDelta": 3000
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "high-pressure",
|
|
29
|
+
"name": "高压",
|
|
30
|
+
"maxStacks": 1,
|
|
31
|
+
"durationPerStack": 1,
|
|
32
|
+
"onRoundEndDelta": -1,
|
|
33
|
+
"damageRateDelta": 4000
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "slow",
|
|
37
|
+
"name": "迟缓",
|
|
38
|
+
"maxStacks": 5,
|
|
39
|
+
"durationPerStack": 1,
|
|
40
|
+
"onRoundEndDelta": -1,
|
|
41
|
+
"expireRounds": 1,
|
|
42
|
+
"applyOnElementBreakElements": ["water"]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"id": "burn",
|
|
46
|
+
"name": "点燃",
|
|
47
|
+
"maxStacks": 99,
|
|
48
|
+
"durationPerStack": 1,
|
|
49
|
+
"onRoundEndDelta": -1,
|
|
50
|
+
"expireRounds": 1,
|
|
51
|
+
"dotRatio": 0.18,
|
|
52
|
+
"dotElement": "fire",
|
|
53
|
+
"applyOnElementBreakElements": ["fire"]
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"id": "weathering",
|
|
57
|
+
"name": "风化",
|
|
58
|
+
"maxStacks": 99,
|
|
59
|
+
"durationPerStack": 1,
|
|
60
|
+
"onRoundEndDelta": -1,
|
|
61
|
+
"expireRounds": 1,
|
|
62
|
+
"dotRatio": 0.18,
|
|
63
|
+
"dotElement": "wind",
|
|
64
|
+
"applyOnElementBreakElements": ["wind"]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"id": "static",
|
|
68
|
+
"name": "静电",
|
|
69
|
+
"maxStacks": 5,
|
|
70
|
+
"durationPerStack": 1,
|
|
71
|
+
"onRoundEndDelta": -1,
|
|
72
|
+
"expireRounds": 1,
|
|
73
|
+
"effectResDelta": -1000,
|
|
74
|
+
"applyOnElementBreakElements": ["thunder"]
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"id": "dazzle",
|
|
78
|
+
"name": "炫目",
|
|
79
|
+
"maxStacks": 1,
|
|
80
|
+
"durationPerStack": 1,
|
|
81
|
+
"onRoundEndDelta": -1,
|
|
82
|
+
"expireRounds": 1,
|
|
83
|
+
"applyOnElementBreakElements": ["light"]
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"id": "erosion",
|
|
87
|
+
"name": "侵蚀",
|
|
88
|
+
"maxStacks": 1,
|
|
89
|
+
"durationPerStack": 1,
|
|
90
|
+
"onRoundEndDelta": -1,
|
|
91
|
+
"expireRounds": 1,
|
|
92
|
+
"defDelta": -1000,
|
|
93
|
+
"applyOnElementBreakElements": ["dark"]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"id": "crush",
|
|
97
|
+
"name": "碎裂",
|
|
98
|
+
"maxStacks": 1,
|
|
99
|
+
"durationPerStack": 1,
|
|
100
|
+
"onRoundEndDelta": -1,
|
|
101
|
+
"expireRounds": 1,
|
|
102
|
+
"defDelta": -1000
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"id": "def-break",
|
|
106
|
+
"name": "防御击破",
|
|
107
|
+
"maxStacks": 1,
|
|
108
|
+
"durationPerStack": 1,
|
|
109
|
+
"onRoundEndDelta": -1,
|
|
110
|
+
"expireRounds": 1,
|
|
111
|
+
"applyOnElementBreakElements": ["rock"]
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"id": "pierce",
|
|
115
|
+
"name": "穿透",
|
|
116
|
+
"maxStacks": 1,
|
|
117
|
+
"durationPerStack": 2,
|
|
118
|
+
"onRoundEndDelta": -1,
|
|
119
|
+
"expireRounds": 2
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"id": "counter",
|
|
123
|
+
"name": "反击",
|
|
124
|
+
"maxStacks": 3,
|
|
125
|
+
"durationPerStack": 1,
|
|
126
|
+
"onRoundEndDelta": -1,
|
|
127
|
+
"expireRounds": 1,
|
|
128
|
+
"reactiveCounter": true,
|
|
129
|
+
"reactiveCounterPriority": 100
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"id": "taunt",
|
|
133
|
+
"name": "嘲讽",
|
|
134
|
+
"maxStacks": 1,
|
|
135
|
+
"durationPerStack": 2,
|
|
136
|
+
"onRoundEndDelta": -1,
|
|
137
|
+
"expireRounds": 2
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"id": "flash",
|
|
141
|
+
"name": "闪光",
|
|
142
|
+
"maxStacks": 3,
|
|
143
|
+
"durationPerStack": 1,
|
|
144
|
+
"onRoundEndDelta": -1,
|
|
145
|
+
"expireRounds": 1,
|
|
146
|
+
"imbalanceRateDelta": 800,
|
|
147
|
+
"critRateDelta": 1500
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"id": "miaoluo-ultimate-focus",
|
|
151
|
+
"name": "喵萝大招集中",
|
|
152
|
+
"maxStacks": 1,
|
|
153
|
+
"durationPerStack": 999999999,
|
|
154
|
+
"onRoundEndDelta": 0,
|
|
155
|
+
"expireRounds": 999999999,
|
|
156
|
+
"critDamageDelta": 2000
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"id": "will",
|
|
160
|
+
"name": "意志",
|
|
161
|
+
"maxStacks": 999,
|
|
162
|
+
"durationPerStack": 999999999,
|
|
163
|
+
"onRoundEndDelta": 0,
|
|
164
|
+
"expireRounds": 999999999
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"id": "rage",
|
|
168
|
+
"name": "狂怒",
|
|
169
|
+
"maxStacks": 99,
|
|
170
|
+
"durationPerStack": 999999999,
|
|
171
|
+
"onRoundEndDelta": 0,
|
|
172
|
+
"expireRounds": 999999999,
|
|
173
|
+
"speedDelta": 1000
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"id": "cook-restraint",
|
|
177
|
+
"name": "库克束缚",
|
|
178
|
+
"maxStacks": 99,
|
|
179
|
+
"durationPerStack": 999999999,
|
|
180
|
+
"onRoundEndDelta": 0,
|
|
181
|
+
"expireRounds": 999999999,
|
|
182
|
+
"critRateDelta": 500,
|
|
183
|
+
"critDamageDelta": 500
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"id": "cook-counter",
|
|
187
|
+
"name": "库克反击",
|
|
188
|
+
"maxStacks": 99,
|
|
189
|
+
"durationPerStack": 999999999,
|
|
190
|
+
"onRoundEndDelta": 0,
|
|
191
|
+
"expireRounds": 999999999,
|
|
192
|
+
"reactiveCounter": true,
|
|
193
|
+
"reactiveCounterPriority": 200
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"id": "condense",
|
|
197
|
+
"name": "凝聚",
|
|
198
|
+
"maxStacks": 1,
|
|
199
|
+
"durationPerStack": 1,
|
|
200
|
+
"onRoundEndDelta": -1,
|
|
201
|
+
"expireRounds": 1
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"id": "kleiwu-passive",
|
|
205
|
+
"name": "克莱乌被动",
|
|
206
|
+
"maxStacks": 999999999,
|
|
207
|
+
"durationPerStack": 1,
|
|
208
|
+
"onRoundEndDelta": -99999999,
|
|
209
|
+
"expireRounds": 1
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"id": "kleiwu-ultimate",
|
|
213
|
+
"name": "克莱乌大招",
|
|
214
|
+
"maxStacks": 1,
|
|
215
|
+
"durationPerStack": 3,
|
|
216
|
+
"onRoundEndDelta": -1,
|
|
217
|
+
"expireRounds": 3
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"id": "ailisha-basic",
|
|
221
|
+
"name": "艾莉莎普攻",
|
|
222
|
+
"maxStacks": 1,
|
|
223
|
+
"durationPerStack": 1,
|
|
224
|
+
"onRoundEndDelta": 0,
|
|
225
|
+
"expireRounds": 99999
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"id": "share-damage",
|
|
229
|
+
"name": "分摊伤害",
|
|
230
|
+
"maxStacks": 1,
|
|
231
|
+
"durationPerStack": 2,
|
|
232
|
+
"onRoundEndDelta": -1,
|
|
233
|
+
"expireRounds": 2,
|
|
234
|
+
"damageShareToSourceRatio": 0.5
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"id": "ailisha-passive",
|
|
238
|
+
"name": "艾莉莎被动",
|
|
239
|
+
"maxStacks": 1,
|
|
240
|
+
"durationPerStack": 999999999,
|
|
241
|
+
"onRoundEndDelta": 0,
|
|
242
|
+
"expireRounds": 999999999
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"id": "ailisha-rebirth",
|
|
246
|
+
"name": "艾莉莎重生",
|
|
247
|
+
"maxStacks": 2,
|
|
248
|
+
"durationPerStack": 999999999,
|
|
249
|
+
"onRoundEndDelta": -1,
|
|
250
|
+
"expireRounds": 999999999
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"id": "ailisha-silent",
|
|
254
|
+
"name": "艾莉莎沉默",
|
|
255
|
+
"maxStacks": 1,
|
|
256
|
+
"durationPerStack": 1,
|
|
257
|
+
"onRoundEndDelta": -1,
|
|
258
|
+
"expireRounds": 1,
|
|
259
|
+
"stun": true
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"id": "pela-basic",
|
|
263
|
+
"name": "佩拉普攻",
|
|
264
|
+
"maxStacks": 1,
|
|
265
|
+
"durationPerStack": 1,
|
|
266
|
+
"onRoundEndDelta": -1,
|
|
267
|
+
"expireRounds": 1
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"id": "damage-up",
|
|
271
|
+
"name": "伤害提升",
|
|
272
|
+
"maxStacks": 1,
|
|
273
|
+
"durationPerStack": 1,
|
|
274
|
+
"onRoundEndDelta": -1,
|
|
275
|
+
"expireRounds": 1,
|
|
276
|
+
"damageRateDelta": 4000
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"id": "speed-up",
|
|
280
|
+
"name": "速度提升",
|
|
281
|
+
"maxStacks": 1,
|
|
282
|
+
"durationPerStack": 9999999,
|
|
283
|
+
"onRoundEndDelta": 0,
|
|
284
|
+
"expireRounds": 9999999,
|
|
285
|
+
"speedDelta": 1000,
|
|
286
|
+
"speedRateDelta": 1000
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"id": "4024",
|
|
290
|
+
"name": "buff-4024",
|
|
291
|
+
"maxStacks": 1,
|
|
292
|
+
"durationPerStack": 9999999,
|
|
293
|
+
"onRoundEndDelta": 0,
|
|
294
|
+
"expireRounds": 9999999
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"id": "4025",
|
|
298
|
+
"name": "buff-4025",
|
|
299
|
+
"maxStacks": 1,
|
|
300
|
+
"durationPerStack": 2,
|
|
301
|
+
"onRoundEndDelta": -1,
|
|
302
|
+
"expireRounds": 2
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"id": "4026",
|
|
306
|
+
"name": "buff-4026",
|
|
307
|
+
"maxStacks": 1,
|
|
308
|
+
"durationPerStack": 2,
|
|
309
|
+
"onRoundEndDelta": -1,
|
|
310
|
+
"expireRounds": 2
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"id": "4027",
|
|
314
|
+
"name": "buff-4027",
|
|
315
|
+
"maxStacks": 1,
|
|
316
|
+
"durationPerStack": 2,
|
|
317
|
+
"onRoundEndDelta": -1,
|
|
318
|
+
"expireRounds": 2
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"id": "4028",
|
|
322
|
+
"name": "buff-4028",
|
|
323
|
+
"maxStacks": 99,
|
|
324
|
+
"durationPerStack": 9999999,
|
|
325
|
+
"onRoundEndDelta": 0,
|
|
326
|
+
"expireRounds": 9999999
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"id": "4029",
|
|
330
|
+
"name": "buff-4029",
|
|
331
|
+
"maxStacks": 1,
|
|
332
|
+
"durationPerStack": 9999999999,
|
|
333
|
+
"onRoundEndDelta": 0,
|
|
334
|
+
"expireRounds": 9999999999
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"id": "4030",
|
|
338
|
+
"name": "buff-4030",
|
|
339
|
+
"maxStacks": 1,
|
|
340
|
+
"durationPerStack": 3,
|
|
341
|
+
"onRoundEndDelta": -1,
|
|
342
|
+
"expireRounds": 3
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"id": "4031",
|
|
346
|
+
"name": "buff-4031",
|
|
347
|
+
"maxStacks": 1,
|
|
348
|
+
"durationPerStack": 1,
|
|
349
|
+
"onRoundEndDelta": -1,
|
|
350
|
+
"expireRounds": 1
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"id": "4032",
|
|
354
|
+
"name": "buff-4032",
|
|
355
|
+
"maxStacks": 1,
|
|
356
|
+
"durationPerStack": 99999999,
|
|
357
|
+
"onRoundEndDelta": 0,
|
|
358
|
+
"expireRounds": 9999999999
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"id": "imbalance-vulnerability",
|
|
362
|
+
"name": "失衡易伤",
|
|
363
|
+
"maxStacks": 1,
|
|
364
|
+
"durationPerStack": 1,
|
|
365
|
+
"onRoundEndDelta": -1,
|
|
366
|
+
"expireRounds": 1,
|
|
367
|
+
"vulnerabilityDelta": 2000,
|
|
368
|
+
"applyOnImbalanceBreak": true
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"id": "rudy-cheat-death",
|
|
372
|
+
"name": "鲁迪免死",
|
|
373
|
+
"maxStacks": 1,
|
|
374
|
+
"durationPerStack": 999999999,
|
|
375
|
+
"onRoundEndDelta": 0,
|
|
376
|
+
"expireRounds": 999999999
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"id": "def-up",
|
|
380
|
+
"name": "防御提升",
|
|
381
|
+
"maxStacks": 1,
|
|
382
|
+
"durationPerStack": 2,
|
|
383
|
+
"onRoundEndDelta": -1,
|
|
384
|
+
"expireRounds": 2,
|
|
385
|
+
"defDelta": 2000
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"id": "pela-crit-up",
|
|
389
|
+
"name": "佩拉暴伤提升",
|
|
390
|
+
"maxStacks": 1,
|
|
391
|
+
"durationPerStack": 2,
|
|
392
|
+
"onRoundEndDelta": -1,
|
|
393
|
+
"expireRounds": 2,
|
|
394
|
+
"critDamageDelta": 1000
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"id": "es-action-delay",
|
|
398
|
+
"name": "行动延后",
|
|
399
|
+
"maxStacks": 1,
|
|
400
|
+
"durationPerStack": 1,
|
|
401
|
+
"onRoundEndDelta": -1,
|
|
402
|
+
"expireRounds": 1
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"id": "vulnerability-up",
|
|
406
|
+
"name": "受伤提高",
|
|
407
|
+
"maxStacks": 1,
|
|
408
|
+
"durationPerStack": 2,
|
|
409
|
+
"onRoundEndDelta": -1,
|
|
410
|
+
"expireRounds": 2,
|
|
411
|
+
"vulnerabilityDelta": 1000
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"id": "def-down-10",
|
|
415
|
+
"name": "防御下降10%",
|
|
416
|
+
"maxStacks": 1,
|
|
417
|
+
"durationPerStack": 2,
|
|
418
|
+
"onRoundEndDelta": -1,
|
|
419
|
+
"expireRounds": 2,
|
|
420
|
+
"defenseRateDelta": -1000
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"id": "monster-low-hp-crit",
|
|
424
|
+
"name": "低血暴击",
|
|
425
|
+
"maxStacks": 1,
|
|
426
|
+
"durationPerStack": 999999999,
|
|
427
|
+
"onRoundEndDelta": 0,
|
|
428
|
+
"expireRounds": 999999999,
|
|
429
|
+
"critRateDelta": 2000,
|
|
430
|
+
"critDamageDelta": 2000
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"id": "monster-taunt-reduce",
|
|
434
|
+
"name": "嘲讽减伤",
|
|
435
|
+
"maxStacks": 1,
|
|
436
|
+
"durationPerStack": 2,
|
|
437
|
+
"onRoundEndDelta": -1,
|
|
438
|
+
"expireRounds": 2,
|
|
439
|
+
"taunt": true,
|
|
440
|
+
"vulnerabilityDelta": -1000
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"id": "light-energy",
|
|
444
|
+
"name": "光能",
|
|
445
|
+
"maxStacks": 99,
|
|
446
|
+
"durationPerStack": 999999999,
|
|
447
|
+
"onRoundEndDelta": 0,
|
|
448
|
+
"expireRounds": 999999999
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"id": "monster-gloom",
|
|
452
|
+
"name": "阴霾",
|
|
453
|
+
"maxStacks": 1,
|
|
454
|
+
"durationPerStack": 1,
|
|
455
|
+
"onRoundEndDelta": -1,
|
|
456
|
+
"expireRounds": 1,
|
|
457
|
+
"damageRateDelta": 20000
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"id": "monster-charge",
|
|
461
|
+
"name": "蓄力",
|
|
462
|
+
"maxStacks": 1,
|
|
463
|
+
"durationPerStack": 1,
|
|
464
|
+
"onRoundEndDelta": -999,
|
|
465
|
+
"stun": true
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"id": "monster-cold-wave",
|
|
469
|
+
"name": "寒潮",
|
|
470
|
+
"maxStacks": 1,
|
|
471
|
+
"durationPerStack": 999999999,
|
|
472
|
+
"onRoundEndDelta": 0,
|
|
473
|
+
"expireRounds": 999999999
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"id": "monster-burn-empower",
|
|
477
|
+
"name": "点燃增伤",
|
|
478
|
+
"maxStacks": 99,
|
|
479
|
+
"durationPerStack": 999999999,
|
|
480
|
+
"onRoundEndDelta": 0,
|
|
481
|
+
"expireRounds": 999999999,
|
|
482
|
+
"damageRateDelta": 500
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"id": "monster-speed-up-20",
|
|
486
|
+
"name": "速度提升20%",
|
|
487
|
+
"maxStacks": 1,
|
|
488
|
+
"durationPerStack": 1,
|
|
489
|
+
"onRoundEndDelta": -1,
|
|
490
|
+
"expireRounds": 1,
|
|
491
|
+
"speedRateDelta": 2000
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"id": "monster-counter-boss",
|
|
495
|
+
"name": "BOSS反击",
|
|
496
|
+
"maxStacks": 1,
|
|
497
|
+
"durationPerStack": 1,
|
|
498
|
+
"onRoundEndDelta": -1,
|
|
499
|
+
"expireRounds": 1,
|
|
500
|
+
"reactiveCounter": true,
|
|
501
|
+
"reactiveCounterPriority": 150
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"id": "monster-atk-stack",
|
|
505
|
+
"name": "攻击叠加",
|
|
506
|
+
"maxStacks": 99,
|
|
507
|
+
"durationPerStack": 999999999,
|
|
508
|
+
"onRoundEndDelta": 0,
|
|
509
|
+
"expireRounds": 999999999,
|
|
510
|
+
"damageRateDelta": 1000
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"id": "monster-helpless",
|
|
514
|
+
"name": "无助",
|
|
515
|
+
"maxStacks": 1,
|
|
516
|
+
"durationPerStack": 2,
|
|
517
|
+
"onRoundEndDelta": -1,
|
|
518
|
+
"expireRounds": 2,
|
|
519
|
+
"stun": true,
|
|
520
|
+
"imbalanceRateDelta": 5000
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"id": "monster-hungry",
|
|
524
|
+
"name": "饥饿",
|
|
525
|
+
"maxStacks": 1,
|
|
526
|
+
"durationPerStack": 999999999,
|
|
527
|
+
"onRoundEndDelta": 0,
|
|
528
|
+
"expireRounds": 999999999
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"id": "monster-thunder-charge",
|
|
532
|
+
"name": "充能",
|
|
533
|
+
"maxStacks": 5,
|
|
534
|
+
"durationPerStack": 999999999,
|
|
535
|
+
"onRoundEndDelta": 0,
|
|
536
|
+
"expireRounds": 999999999
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"id": "monster-overload",
|
|
540
|
+
"name": "过载",
|
|
541
|
+
"maxStacks": 1,
|
|
542
|
+
"durationPerStack": 1,
|
|
543
|
+
"onRoundEndDelta": -999,
|
|
544
|
+
"stun": true
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"id": "def-down-30",
|
|
548
|
+
"name": "防御下降30%",
|
|
549
|
+
"maxStacks": 1,
|
|
550
|
+
"durationPerStack": 2,
|
|
551
|
+
"onRoundEndDelta": -1,
|
|
552
|
+
"expireRounds": 2,
|
|
553
|
+
"defenseRateDelta": -3000
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"id": "monster-reduce-30",
|
|
557
|
+
"name": "减伤30%",
|
|
558
|
+
"maxStacks": 1,
|
|
559
|
+
"durationPerStack": 2,
|
|
560
|
+
"onRoundEndDelta": -1,
|
|
561
|
+
"expireRounds": 2,
|
|
562
|
+
"vulnerabilityDelta": -3000
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"id": "effect-res-down-15",
|
|
566
|
+
"name": "效果抵抗下降15%",
|
|
567
|
+
"maxStacks": 1,
|
|
568
|
+
"durationPerStack": 2,
|
|
569
|
+
"onRoundEndDelta": -1,
|
|
570
|
+
"expireRounds": 2,
|
|
571
|
+
"effectResDelta": -1500
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"id": "monster-rock-charge",
|
|
575
|
+
"name": "岩蓄力",
|
|
576
|
+
"maxStacks": 1,
|
|
577
|
+
"durationPerStack": 999999999,
|
|
578
|
+
"onRoundEndDelta": 0,
|
|
579
|
+
"expireRounds": 999999999
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"id": "monster-rock-skill-stack",
|
|
583
|
+
"name": "岩技能叠加",
|
|
584
|
+
"maxStacks": 5,
|
|
585
|
+
"durationPerStack": 999999999,
|
|
586
|
+
"onRoundEndDelta": 0,
|
|
587
|
+
"expireRounds": 999999999,
|
|
588
|
+
"damageRateDelta": 1000
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"id": "monster-collapse",
|
|
592
|
+
"name": "坍塌",
|
|
593
|
+
"maxStacks": 1,
|
|
594
|
+
"durationPerStack": 2,
|
|
595
|
+
"onRoundEndDelta": -1,
|
|
596
|
+
"expireRounds": 2,
|
|
597
|
+
"defenseRateDelta": -5000
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"id": "monster-water-reduce",
|
|
601
|
+
"name": "水减伤",
|
|
602
|
+
"maxStacks": 1,
|
|
603
|
+
"durationPerStack": 999999999,
|
|
604
|
+
"onRoundEndDelta": 0,
|
|
605
|
+
"expireRounds": 999999999,
|
|
606
|
+
"vulnerabilityDelta": -3000
|
|
607
|
+
}
|
|
608
|
+
]
|