@blizzhackers/d2data 2.7.10 → 2.7.12

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/compile.js CHANGED
@@ -310,6 +310,7 @@ files.forEach(fn => {
310
310
  full[fn]['andariel'].areaId = 37;
311
311
  full[fn]['duriel'].areaId = 73;
312
312
  full[fn]['mephisto'].areaId = 102;
313
+ full[fn]['izual'].areaId = 105;
313
314
  full[fn]['diablo'].areaId = 108;
314
315
  full[fn]['baalcrab'].areaId = 132;
315
316
  full[fn]['ubermephisto'].areaId = 136;
@@ -627,6 +628,112 @@ let monpopulation = {};
627
628
  });
628
629
  });
629
630
 
631
+ let actprofile = {};
632
+ let montypes = ['normal', 'champion', 'unique', 'superunique', 'boss'];
633
+ let dmgtypes = [
634
+ 'ResDm',
635
+ 'ResMa',
636
+ 'ResFi',
637
+ 'ResLi',
638
+ 'ResCo',
639
+ 'ResPo',
640
+ ];
641
+
642
+ for (let diff of [0, 1, 2]) {
643
+ let s = str => str + ['', '(N)', '(H)'][diff];
644
+ let diffstr = ['normal', 'nightmare', 'hell'][diff];
645
+
646
+ for (let levelid in monpopulation) {
647
+ let level = full.levels[levelid];
648
+ let act = (level.Act || 0);
649
+ let pop = monpopulation[levelid];
650
+
651
+ if (levelid < 1 || levelid > 132) {
652
+ continue;
653
+ }
654
+
655
+ for (let montype of montypes) {
656
+ for (let id in pop[montype]) {
657
+ let sup = undefined,
658
+ mon = undefined;
659
+
660
+ if (montype === 'superunique') {
661
+ sup = full.superuniques[id];
662
+ mon = full.monstats[sup.Class];
663
+ }
664
+ else {
665
+ mon = full.monstats[id];
666
+ }
667
+
668
+ let grp = Math.max(1, ((mon['MinGrp'] || 1) + (mon['MaxGrp'] || 1)) / 2),
669
+ party = ((mon['PartyMin'] || 0) + mon['PartyMax'] || 0) / 4,
670
+ minions = [
671
+ mon['minion1'] || undefined,
672
+ mon['minion2'] || undefined,
673
+ ].filter(Boolean),
674
+ packCount = pop[montype][id][s('packCount')],
675
+ mlvl = pop[montype][id][s('mlvl')],
676
+ hp = full.monlvl[mlvl][s('HP')] *
677
+ (mon[['minHP', 'MinHP(N)', 'MinHP(H)'][diff]] + mon[['maxHP', 'MaxHP(N)', 'MaxHP(H)'][diff]]) / 200;
678
+
679
+ if ((montype === 'superunique' || montype === 'unique') && !minions.length) {
680
+ minions.push(mon.Id);
681
+ }
682
+
683
+ actprofile[act] = actprofile[act] || {};
684
+
685
+ for (let dmgtype of dmgtypes) {
686
+ actprofile[act][s(dmgtype)] = actprofile[act][s(dmgtype)] || {};
687
+ }
688
+
689
+ for (let dmgtype of dmgtypes) {
690
+ let resist = mon[s(dmgtype)] || 0;
691
+
692
+ actprofile[act][s(dmgtype)][resist] = actprofile[act][s(dmgtype)][resist] || 0;
693
+
694
+ if (montype === 'superunique' || montype === 'unique') {
695
+ if (montype === 'superunique') {
696
+ grp = Math.max(1, ((sup['MinGrp'] || mon['MinGrp'] || 1) + (sup['MaxGrp'] || mon['MaxGrp'] || 1)) / 2);
697
+ }
698
+ else {
699
+ grp = Math.max(1, ((mon['MinGrp'] || 1) + (mon['MaxGrp'] || 1)) / 2);
700
+ }
701
+ actprofile[act][s(dmgtype)][resist] += packCount * hp * [4, 3, 2][diff];
702
+ party = 2.5 + diff;
703
+ }
704
+ else if (montype === 'champion') {
705
+ actprofile[act][s(dmgtype)][resist] += packCount * hp * 3 * [3, 2.5, 2][diff];
706
+ }
707
+ else {
708
+ actprofile[act][s(dmgtype)][resist] += packCount * hp * grp;
709
+ }
710
+
711
+ if (party > 0 && minions.length > 0) {
712
+ for (let minion of minions) {
713
+ let mmon = full.monstats[minion],
714
+ mresist = mmon[s(dmgtype)] || 0,
715
+ mmlvl = (diff ? mmon['Level'] : level[s('MonLvl')]) + (montype === 'superunique' || montype === 'unique' ? 3 : 0),
716
+ mhp = full.monlvl[mmlvl][s('HP')] *
717
+ (mmon[['minHP', 'MinHP(N)', 'MinHP(H)'][diff]] + mmon[['maxHP', 'MaxHP(N)', 'MaxHP(H)'][diff]]) / 100;
718
+
719
+ actprofile[act][s(dmgtype)][mresist] = actprofile[act][s(dmgtype)][mresist] || 0;
720
+ actprofile[act][s(dmgtype)][mresist] += packCount * mhp * party / minions.length;
721
+ }
722
+ }
723
+ }
724
+ }
725
+ }
726
+ }
727
+ }
728
+
729
+ for (let act in actprofile) {
730
+ for (let dmgtype in actprofile[act]) {
731
+ for (let resist in actprofile[act][dmgtype]) {
732
+ actprofile[act][dmgtype][resist] = Math.round(actprofile[act][dmgtype][resist]);
733
+ }
734
+ }
735
+ }
736
+
630
737
  let tcprecalc = {};
631
738
 
632
739
  full.treasureclassex.forEach((tc, key) => {
@@ -779,3 +886,4 @@ fs.writeFileSync(outDir + 'atomic.json', JSON.stringify(keySort(atomic), null, '
779
886
  fs.writeFileSync(outDir + 'treasureclassgroupsex.json', JSON.stringify(groupsEx, null, ' '));
780
887
  fs.writeFileSync(outDir + 'monpopulationest.json', JSON.stringify(monpopulation, null, ' '));
781
888
  fs.writeFileSync(outDir + 'tcprecalc.json', JSON.stringify(tcprecalc, null, ' '));
889
+ fs.writeFileSync(outDir + 'actprofile.json', JSON.stringify(actprofile, null, ' '));
@@ -1,24 +1,10 @@
1
- <!DOCTYPE html>
2
- <html lang="en" class="bg-dark">
3
- <head>
4
- <meta charset="UTF-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
7
- <title>Diablo 2 (D2R 2.4) Drop Calculator</title>
8
- <script type="module" crossorigin src="assets/index.12ae3c90.js"></script>
9
- </head>
10
- <body class="container my-5 bg-dark">
11
- <div class="card">
12
- <h1 class="card-header bg-primary text-light text-center">
13
- Diablo 2 (D2R 2.4) Drop Calculator
14
- </h1>
15
- <div class="card-body">
16
- <div id="app"></div>
17
- </div>
18
- <div class="card-footer text-center">
19
- <em>Powered by <a href="https://vuejs.org">Vue.js</a> and <a href="https://getbootstrap.com">Bootstrap 5</a>. Work in progress and based on reversing by r57shell and Kingpin, and verified by in-game drops.</em>
20
- </div>
21
- </div>
22
-
23
- </body>
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <title>Diablo 2 (D2R 2.4) Drop Calculator</title>
5
+ <meta http-equiv="refresh" content="0;url=https://blizzhackers.dev/#/dropfinder/" />
6
+ </head>
7
+ <body>
8
+ <p>The drop calculator has moved! Redirecting to the new calculator...</p>
9
+ </body>
24
10
  </html>
package/docs/drops.html CHANGED
@@ -2,7 +2,7 @@
2
2
  <html>
3
3
  <head>
4
4
  <title>Diablo 2 (D2R 2.4) Drop Calculator</title>
5
- <meta http-equiv="refresh" content="0;url=drops/dist/" />
5
+ <meta http-equiv="refresh" content="0;url=https://blizzhackers.dev/#/dropfinder/" />
6
6
  </head>
7
7
  <body>
8
8
  <p>The drop calculator has moved! Redirecting to the new calculator...</p>
@@ -0,0 +1,922 @@
1
+ {
2
+ "0": {
3
+ "ResDm": {
4
+ "0": 191216,
5
+ "20": 1433,
6
+ "30": 961
7
+ },
8
+ "ResMa": {
9
+ "0": 192320,
10
+ "30": 1177,
11
+ "50": 113
12
+ },
13
+ "ResFi": {
14
+ "0": 186976,
15
+ "20": 1177,
16
+ "25": 426,
17
+ "30": 2026,
18
+ "35": 529,
19
+ "40": 1338,
20
+ "50": 113,
21
+ "-50": 1025
22
+ },
23
+ "ResLi": {
24
+ "0": 187903,
25
+ "30": 399,
26
+ "40": 504,
27
+ "50": 1197,
28
+ "60": 1695,
29
+ "70": 1910
30
+ },
31
+ "ResCo": {
32
+ "0": 188753,
33
+ "20": 1799,
34
+ "40": 976,
35
+ "50": 2082
36
+ },
37
+ "ResPo": {
38
+ "0": 168868,
39
+ "50": 22292,
40
+ "70": 331,
41
+ "80": 1025,
42
+ "-50": 1094
43
+ },
44
+ "ResDm(N)": {
45
+ "0": 1388664,
46
+ "10": 15215,
47
+ "20": 18011,
48
+ "25": 9833,
49
+ "30": 10024,
50
+ "33": 1857848,
51
+ "40": 11912
52
+ },
53
+ "ResMa(N)": {
54
+ "0": 1422479,
55
+ "15": 1857848,
56
+ "50": 31179
57
+ },
58
+ "ResFi(N)": {
59
+ "0": 1278152,
60
+ "25": 1873063,
61
+ "50": 83217,
62
+ "60": 17625,
63
+ "70": 9595,
64
+ "80": 25054,
65
+ "-50": 24800
66
+ },
67
+ "ResLi(N)": {
68
+ "0": 1334259,
69
+ "25": 1857848,
70
+ "50": 41711,
71
+ "70": 16892,
72
+ "75": 1090,
73
+ "80": 27228,
74
+ "85": 32478
75
+ },
76
+ "ResCo(N)": {
77
+ "0": 1348683,
78
+ "25": 1857848,
79
+ "50": 81309,
80
+ "60": 23665
81
+ },
82
+ "ResPo(N)": {
83
+ "0": 768775,
84
+ "25": 1857848,
85
+ "50": 72409,
86
+ "60": 146051,
87
+ "75": 451207,
88
+ "-50": 15215
89
+ },
90
+ "ResDm(H)": {
91
+ "0": 722292,
92
+ "15": 1815674,
93
+ "20": 741009,
94
+ "25": 464004,
95
+ "33": 1209430,
96
+ "40": 315128,
97
+ "45": 326268,
98
+ "50": 8177869,
99
+ "66": 45024,
100
+ "100": 134122
101
+ },
102
+ "ResMa(H)": {
103
+ "0": 7552189,
104
+ "20": 741009,
105
+ "33": 5368731,
106
+ "50": 288892
107
+ },
108
+ "ResFi(H)": {
109
+ "0": 4220142,
110
+ "25": 418151,
111
+ "33": 1299768,
112
+ "50": 5484792,
113
+ "75": 111400,
114
+ "100": 882176,
115
+ "105": 171575,
116
+ "110": 685023,
117
+ "115": 107217,
118
+ "120": 339935,
119
+ "125": 185617,
120
+ "-50": 45024
121
+ },
122
+ "ResLi(H)": {
123
+ "0": 4622385,
124
+ "25": 209889,
125
+ "33": 776795,
126
+ "50": 5524586,
127
+ "66": 45024,
128
+ "100": 1092420,
129
+ "105": 166054,
130
+ "110": 1508057,
131
+ "115": 5610
132
+ },
133
+ "ResCo(H)": {
134
+ "0": 4571588,
135
+ "15": 12324,
136
+ "25": 538121,
137
+ "33": 350914,
138
+ "40": 1083034,
139
+ "50": 5638641,
140
+ "60": 63422,
141
+ "66": 45024,
142
+ "75": 153713,
143
+ "100": 261863,
144
+ "110": 140907,
145
+ "120": 552154,
146
+ "130": 384831,
147
+ "140": 64367,
148
+ "150": 89919
149
+ },
150
+ "ResPo(H)": {
151
+ "0": 3351856,
152
+ "20": 741009,
153
+ "25": 538121,
154
+ "33": 5368731,
155
+ "50": 259611,
156
+ "66": 45024,
157
+ "75": 2890691,
158
+ "100": 278401,
159
+ "105": 292200,
160
+ "120": 112486,
161
+ "-50": 72692
162
+ }
163
+ },
164
+ "1": {
165
+ "ResDm": {
166
+ "0": 391741,
167
+ "30": 20654,
168
+ "40": 15618,
169
+ "50": 10266,
170
+ "60": 716,
171
+ "70": 893
172
+ },
173
+ "ResMa": {
174
+ "0": 418125,
175
+ "20": 9143,
176
+ "50": 9823,
177
+ "60": 2798
178
+ },
179
+ "ResFi": {
180
+ "0": 328887,
181
+ "20": 3996,
182
+ "30": 4540,
183
+ "40": 23933,
184
+ "50": 77122,
185
+ "70": 1410
186
+ },
187
+ "ResLi": {
188
+ "0": 423883,
189
+ "20": 3996,
190
+ "30": 2770,
191
+ "40": 7762,
192
+ "50": 96,
193
+ "60": 1381
194
+ },
195
+ "ResCo": {
196
+ "0": 402739,
197
+ "20": 1069,
198
+ "30": 1133,
199
+ "40": 10202,
200
+ "50": 24746
201
+ },
202
+ "ResPo": {
203
+ "0": 214753,
204
+ "20": 3996,
205
+ "50": 194741,
206
+ "60": 100,
207
+ "70": 26299
208
+ },
209
+ "ResDm(N)": {
210
+ "0": 3870617,
211
+ "30": 308596,
212
+ "50": 129435,
213
+ "60": 91875,
214
+ "70": 9483,
215
+ "80": 11193
216
+ },
217
+ "ResMa(N)": {
218
+ "0": 3768507,
219
+ "40": 18733,
220
+ "50": 523291,
221
+ "75": 110667
222
+ },
223
+ "ResFi(N)": {
224
+ "0": 3739623,
225
+ "50": 132351,
226
+ "60": 14058,
227
+ "70": 265196,
228
+ "75": 246772,
229
+ "100": 23199
230
+ },
231
+ "ResLi(N)": {
232
+ "0": 4218540,
233
+ "50": 100438,
234
+ "70": 83487,
235
+ "80": 18733
236
+ },
237
+ "ResCo(N)": {
238
+ "0": 3933994,
239
+ "40": 21958,
240
+ "50": 347427,
241
+ "60": 31685,
242
+ "70": 30334,
243
+ "75": 55800
244
+ },
245
+ "ResPo(N)": {
246
+ "0": 2224820,
247
+ "50": 940063,
248
+ "60": 488805,
249
+ "75": 420555,
250
+ "80": 346956
251
+ },
252
+ "ResDm(H)": {
253
+ "0": 888939,
254
+ "10": 205421,
255
+ "15": 671547,
256
+ "25": 856082,
257
+ "30": 1436479,
258
+ "33": 5023247,
259
+ "40": 283503,
260
+ "45": 221850,
261
+ "50": 8324194,
262
+ "55": 1109174,
263
+ "66": 357906,
264
+ "100": 1092238
265
+ },
266
+ "ResMa(H)": {
267
+ "0": 15798030,
268
+ "20": 454314,
269
+ "25": 123849,
270
+ "33": 63390,
271
+ "50": 989799,
272
+ "70": 125979,
273
+ "75": 351414,
274
+ "100": 2563804
275
+ },
276
+ "ResFi(H)": {
277
+ "0": 10007768,
278
+ "20": 2304354,
279
+ "25": 369773,
280
+ "33": 2077888,
281
+ "50": 1009588,
282
+ "75": 448293,
283
+ "100": 2054736,
284
+ "105": 116766,
285
+ "110": 1765207,
286
+ "115": 316206
287
+ },
288
+ "ResLi(H)": {
289
+ "0": 7232767,
290
+ "20": 2060935,
291
+ "25": 1436479,
292
+ "33": 1624491,
293
+ "50": 2190877,
294
+ "75": 420061,
295
+ "100": 1150860,
296
+ "105": 619157,
297
+ "110": 383520,
298
+ "115": 3225454,
299
+ "120": 125979
300
+ },
301
+ "ResCo(H)": {
302
+ "0": 10916620,
303
+ "15": 121852,
304
+ "20": 665209,
305
+ "33": 1846341,
306
+ "50": 407885,
307
+ "60": 47230,
308
+ "70": 564827,
309
+ "75": 430229,
310
+ "95": 63390,
311
+ "100": 2224407,
312
+ "110": 1693702,
313
+ "120": 227506,
314
+ "140": 1186336,
315
+ "170": 75046
316
+ },
317
+ "ResPo(H)": {
318
+ "0": 8727485,
319
+ "25": 322264,
320
+ "33": 856082,
321
+ "50": 3951729,
322
+ "75": 3722443,
323
+ "80": 47230,
324
+ "100": 714228,
325
+ "105": 1281076,
326
+ "110": 734010,
327
+ "115": 65305,
328
+ "120": 48726
329
+ }
330
+ },
331
+ "2": {
332
+ "ResDm": {
333
+ "0": 264136,
334
+ "20": 13759,
335
+ "30": 2268,
336
+ "40": 8793,
337
+ "50": 4540,
338
+ "60": 11942,
339
+ "90": 1267
340
+ },
341
+ "ResMa": {
342
+ "0": 291502,
343
+ "20": 9181,
344
+ "40": 1413,
345
+ "60": 4610
346
+ },
347
+ "ResFi": {
348
+ "0": 281035,
349
+ "20": 11098,
350
+ "33": 6037,
351
+ "50": 8537
352
+ },
353
+ "ResLi": {
354
+ "0": 280671,
355
+ "33": 6037,
356
+ "40": 5487,
357
+ "50": 3062,
358
+ "60": 11450
359
+ },
360
+ "ResCo": {
361
+ "0": 277961,
362
+ "25": 6037,
363
+ "50": 21295,
364
+ "80": 1413
365
+ },
366
+ "ResPo": {
367
+ "0": 254518,
368
+ "20": 1413,
369
+ "50": 40844,
370
+ "70": 9931
371
+ },
372
+ "ResDm(N)": {
373
+ "0": 2274713,
374
+ "20": 36410,
375
+ "35": 64653,
376
+ "40": 197019,
377
+ "45": 122489,
378
+ "50": 90248,
379
+ "75": 9374,
380
+ "90": 14034
381
+ },
382
+ "ResMa(N)": {
383
+ "0": 2698792,
384
+ "25": 43125,
385
+ "40": 13813,
386
+ "70": 11930,
387
+ "80": 41279
388
+ },
389
+ "ResFi(N)": {
390
+ "0": 2453277,
391
+ "25": 43125,
392
+ "50": 198581,
393
+ "70": 23709,
394
+ "75": 90248
395
+ },
396
+ "ResLi(N)": {
397
+ "0": 2548842,
398
+ "25": 43125,
399
+ "50": 98563,
400
+ "70": 78808,
401
+ "80": 39601
402
+ },
403
+ "ResCo(N)": {
404
+ "0": 2257267,
405
+ "25": 117672,
406
+ "50": 365103,
407
+ "75": 56966,
408
+ "80": 11930
409
+ },
410
+ "ResPo(N)": {
411
+ "0": 1817818,
412
+ "50": 434979,
413
+ "60": 214301,
414
+ "75": 104060,
415
+ "80": 237780
416
+ },
417
+ "ResDm(H)": {
418
+ "0": 1799701,
419
+ "10": 1064265,
420
+ "15": 743890,
421
+ "20": 70740,
422
+ "25": 2018429,
423
+ "33": 216495,
424
+ "35": 311667,
425
+ "40": 646860,
426
+ "45": 691562,
427
+ "50": 2658021,
428
+ "55": 683926,
429
+ "60": 184801,
430
+ "66": 108322,
431
+ "100": 98128
432
+ },
433
+ "ResMa(H)": {
434
+ "0": 9843904,
435
+ "20": 94825,
436
+ "25": 815491,
437
+ "50": 115829,
438
+ "70": 120652,
439
+ "100": 306104
440
+ },
441
+ "ResFi(H)": {
442
+ "0": 3969546,
443
+ "25": 1031373,
444
+ "33": 3277722,
445
+ "50": 940643,
446
+ "75": 231525,
447
+ "80": 86920,
448
+ "100": 398395,
449
+ "105": 45851,
450
+ "110": 535903,
451
+ "115": 358051,
452
+ "120": 420877
453
+ },
454
+ "ResLi(H)": {
455
+ "0": 3973432,
456
+ "25": 1667845,
457
+ "33": 2118080,
458
+ "50": 145320,
459
+ "70": 53040,
460
+ "75": 70740,
461
+ "100": 2294188,
462
+ "105": 273288,
463
+ "110": 529483,
464
+ "120": 171390
465
+ },
466
+ "ResCo(H)": {
467
+ "0": 3341342,
468
+ "25": 177037,
469
+ "33": 2262596,
470
+ "50": 1102534,
471
+ "75": 930598,
472
+ "80": 45089,
473
+ "100": 366335,
474
+ "110": 0,
475
+ "120": 672828,
476
+ "130": 745404,
477
+ "140": 1359119,
478
+ "150": 94825,
479
+ "160": 199101
480
+ },
481
+ "ResPo(H)": {
482
+ "0": 2650234,
483
+ "20": 1159090,
484
+ "25": 546882,
485
+ "33": 367835,
486
+ "50": 3182026,
487
+ "60": 280381,
488
+ "65": 163563,
489
+ "75": 590000,
490
+ "105": 256861,
491
+ "110": 1258993,
492
+ "115": 215676,
493
+ "120": 625265
494
+ }
495
+ },
496
+ "3": {
497
+ "ResDm": {
498
+ "0": 242457,
499
+ "20": 9249,
500
+ "30": 11946,
501
+ "60": 3880
502
+ },
503
+ "ResMa": {
504
+ "0": 255586,
505
+ "30": 11946
506
+ },
507
+ "ResFi": {
508
+ "0": 97543,
509
+ "25": 12270,
510
+ "30": 11946,
511
+ "33": 13818,
512
+ "40": 18057,
513
+ "50": 11298,
514
+ "60": 27865,
515
+ "70": 47384,
516
+ "80": 27351
517
+ },
518
+ "ResLi": {
519
+ "0": 131792,
520
+ "20": 27351,
521
+ "25": 12270,
522
+ "30": 11946,
523
+ "33": 13818,
524
+ "40": 17885,
525
+ "50": 11298,
526
+ "60": 18616,
527
+ "70": 3880,
528
+ "80": 18676
529
+ },
530
+ "ResCo": {
531
+ "0": 163059,
532
+ "20": 27351,
533
+ "25": 7338,
534
+ "33": 13818,
535
+ "40": 22717,
536
+ "50": 12270,
537
+ "60": 9033,
538
+ "75": 11946
539
+ },
540
+ "ResPo": {
541
+ "0": 140892,
542
+ "25": 12270,
543
+ "30": 11946,
544
+ "40": 36771,
545
+ "50": 13818,
546
+ "60": 9033,
547
+ "70": 34061,
548
+ "-50": 8740
549
+ },
550
+ "ResDm(N)": {
551
+ "0": 2212263,
552
+ "20": 47453,
553
+ "30": 41812,
554
+ "60": 42635
555
+ },
556
+ "ResMa(N)": {
557
+ "0": 2302351,
558
+ "30": 41812
559
+ },
560
+ "ResFi(N)": {
561
+ "0": 1026088,
562
+ "30": 41812,
563
+ "40": 95782,
564
+ "50": 265597,
565
+ "60": 142973,
566
+ "75": 47465,
567
+ "80": 559494,
568
+ "100": 164951
569
+ },
570
+ "ResLi(N)": {
571
+ "0": 1398068,
572
+ "20": 164951,
573
+ "30": 41812,
574
+ "50": 265597,
575
+ "60": 142973,
576
+ "70": 47453,
577
+ "75": 47465,
578
+ "80": 95782,
579
+ "85": 42635,
580
+ "100": 97426
581
+ },
582
+ "ResCo(N)": {
583
+ "0": 1582384,
584
+ "20": 164951,
585
+ "40": 95782,
586
+ "50": 276229,
587
+ "70": 107434,
588
+ "75": 41812,
589
+ "80": 75571
590
+ },
591
+ "ResPo(N)": {
592
+ "0": 1367759,
593
+ "30": 41812,
594
+ "40": 260733,
595
+ "50": 203891,
596
+ "60": 75571,
597
+ "100": 348857,
598
+ "-50": 45539
599
+ },
600
+ "ResDm(H)": {
601
+ "15": 166959,
602
+ "25": 505898,
603
+ "30": 43027,
604
+ "33": 1235378,
605
+ "45": 85363,
606
+ "50": 4139734,
607
+ "55": 406590,
608
+ "66": 1420427,
609
+ "80": 148816
610
+ },
611
+ "ResMa(H)": {
612
+ "0": 7698089,
613
+ "25": 411074,
614
+ "30": 43027
615
+ },
616
+ "ResFi(H)": {
617
+ "0": 3989287,
618
+ "30": 43027,
619
+ "33": 224301,
620
+ "40": 351178,
621
+ "50": 85363,
622
+ "60": 244115,
623
+ "75": 579284,
624
+ "80": 162705,
625
+ "110": 640085,
626
+ "120": 598303,
627
+ "130": 1234541
628
+ },
629
+ "ResLi(H)": {
630
+ "0": 2908939,
631
+ "20": 640085,
632
+ "25": 172695,
633
+ "30": 43027,
634
+ "50": 85363,
635
+ "60": 244115,
636
+ "75": 2239434,
637
+ "100": 1159565,
638
+ "110": 148816,
639
+ "120": 510151
640
+ },
641
+ "ResCo(H)": {
642
+ "0": 3180167,
643
+ "20": 640085,
644
+ "25": 172695,
645
+ "40": 351178,
646
+ "50": 1918207,
647
+ "75": 449616,
648
+ "140": 542306,
649
+ "150": 264583,
650
+ "160": 389236,
651
+ "180": 244115
652
+ },
653
+ "ResPo(H)": {
654
+ "0": 3242764,
655
+ "30": 43027,
656
+ "50": 1076626,
657
+ "75": 2076959,
658
+ "100": 674870,
659
+ "105": 329259,
660
+ "110": 484383,
661
+ "125": 224301
662
+ }
663
+ },
664
+ "4": {
665
+ "ResDm": {
666
+ "0": 1401904,
667
+ "20": 85838,
668
+ "25": 0,
669
+ "50": 515,
670
+ "60": 0,
671
+ "70": 16830
672
+ },
673
+ "ResMa": {
674
+ "0": 1428763,
675
+ "20": 14156,
676
+ "30": 23043,
677
+ "40": 0,
678
+ "50": 39125
679
+ },
680
+ "ResFi": {
681
+ "0": 1303453,
682
+ "20": 0,
683
+ "30": 0,
684
+ "33": 61256,
685
+ "35": 2972,
686
+ "50": 113119,
687
+ "60": 0,
688
+ "70": 24286,
689
+ "75": 0,
690
+ "80": 0
691
+ },
692
+ "ResLi": {
693
+ "0": 1424747,
694
+ "20": 0,
695
+ "25": 10154,
696
+ "30": 0,
697
+ "33": 57772,
698
+ "50": 515,
699
+ "60": 0,
700
+ "70": 8415,
701
+ "80": 3484
702
+ },
703
+ "ResCo": {
704
+ "0": 1252525,
705
+ "20": 0,
706
+ "30": 0,
707
+ "33": 57772,
708
+ "40": 0,
709
+ "50": 20611,
710
+ "60": 0,
711
+ "70": 14302,
712
+ "75": 159877,
713
+ "80": 0
714
+ },
715
+ "ResPo": {
716
+ "0": 1149515,
717
+ "20": 0,
718
+ "40": 0,
719
+ "50": 63255,
720
+ "60": 0,
721
+ "70": 170128,
722
+ "80": 22713,
723
+ "90": 72710,
724
+ "95": 16612,
725
+ "100": 10154,
726
+ "110": 0,
727
+ "130": 0,
728
+ "140": 0
729
+ },
730
+ "ResDm(N)": {
731
+ "0": 5628552,
732
+ "20": 0,
733
+ "25": 244391,
734
+ "30": 87431,
735
+ "40": 48856,
736
+ "50": 116349,
737
+ "60": 53102,
738
+ "66": 34876,
739
+ "70": 170743
740
+ },
741
+ "ResMa(N)": {
742
+ "0": 5585969,
743
+ "25": 194014,
744
+ "33": 114911,
745
+ "40": 143890,
746
+ "50": 305468,
747
+ "60": 5172,
748
+ "66": 34876
749
+ },
750
+ "ResFi(N)": {
751
+ "0": 4698354,
752
+ "15": 48856,
753
+ "25": 585765,
754
+ "33": 123188,
755
+ "35": 2285,
756
+ "40": 37148,
757
+ "50": 183519,
758
+ "60": 93947,
759
+ "66": 34876,
760
+ "70": 137018,
761
+ "75": 168361,
762
+ "80": 115620,
763
+ "95": 63177,
764
+ "100": 92185
765
+ },
766
+ "ResLi(N)": {
767
+ "0": 4814379,
768
+ "15": 163767,
769
+ "20": 30685,
770
+ "25": 361199,
771
+ "33": 223877,
772
+ "50": 376307,
773
+ "60": 93947,
774
+ "66": 34876,
775
+ "70": 68509,
776
+ "75": 47666,
777
+ "80": 127085,
778
+ "100": 42002
779
+ },
780
+ "ResCo(N)": {
781
+ "0": 4049534,
782
+ "15": 48856,
783
+ "20": 30685,
784
+ "25": 268156,
785
+ "33": 61159,
786
+ "50": 756936,
787
+ "66": 34876,
788
+ "70": 194171,
789
+ "75": 170075,
790
+ "80": 110752,
791
+ "85": 263570,
792
+ "100": 395528
793
+ },
794
+ "ResPo(N)": {
795
+ "0": 4217090,
796
+ "25": 244932,
797
+ "33": 114911,
798
+ "40": 30685,
799
+ "50": 351525,
800
+ "60": 231447,
801
+ "66": 34876,
802
+ "70": 282036,
803
+ "75": 127085,
804
+ "80": 99256,
805
+ "90": 50270,
806
+ "95": 63177,
807
+ "100": 427407,
808
+ "110": 64116,
809
+ "130": 25440,
810
+ "140": 20047
811
+ },
812
+ "ResDm(H)": {
813
+ "0": 1069323,
814
+ "10": 283409,
815
+ "15": 1887613,
816
+ "25": 2814267,
817
+ "33": 4208592,
818
+ "35": 338125,
819
+ "40": 3021896,
820
+ "45": 316401,
821
+ "50": 4342386,
822
+ "66": 693892,
823
+ "70": 29038,
824
+ "75": 754424,
825
+ "90": 104773,
826
+ "100": 862550
827
+ },
828
+ "ResMa(H)": {
829
+ "0": 14911105,
830
+ "10": 880059,
831
+ "20": 312436,
832
+ "25": 731301,
833
+ "33": 868976,
834
+ "50": 1883650,
835
+ "66": 356116,
836
+ "70": 419436,
837
+ "75": 87296,
838
+ "100": 276315
839
+ },
840
+ "ResFi(H)": {
841
+ "0": 3986980,
842
+ "20": 825245,
843
+ "25": 1353118,
844
+ "33": 2868037,
845
+ "50": 2843309,
846
+ "60": 247740,
847
+ "66": 1577240,
848
+ "70": 258529,
849
+ "75": 549868,
850
+ "90": 437654,
851
+ "95": 83736,
852
+ "100": 309595,
853
+ "105": 957376,
854
+ "110": 1587593,
855
+ "115": 633538,
856
+ "120": 1453939,
857
+ "125": 34091,
858
+ "130": 74610,
859
+ "140": 561490,
860
+ "145": 83000
861
+ },
862
+ "ResLi(H)": {
863
+ "0": 1251805,
864
+ "15": 1322513,
865
+ "20": 1051132,
866
+ "25": 3269546,
867
+ "33": 5728871,
868
+ "50": 4097276,
869
+ "60": 247740,
870
+ "66": 195121,
871
+ "75": 87296,
872
+ "100": 3366781,
873
+ "120": 83971,
874
+ "130": 24638
875
+ },
876
+ "ResCo(H)": {
877
+ "0": 1461477,
878
+ "20": 475694,
879
+ "25": 2404682,
880
+ "33": 2889249,
881
+ "40": 121779,
882
+ "50": 4517910,
883
+ "66": 308256,
884
+ "70": 304989,
885
+ "75": 908130,
886
+ "90": 313027,
887
+ "100": 116480,
888
+ "120": 1146425,
889
+ "125": 133401,
890
+ "130": 1086652,
891
+ "135": 352139,
892
+ "140": 326658,
893
+ "145": 482919,
894
+ "150": 1763943,
895
+ "155": 111375,
896
+ "160": 902835,
897
+ "165": 114563,
898
+ "170": 436611,
899
+ "210": 47494
900
+ },
901
+ "ResPo(H)": {
902
+ "0": 7940866,
903
+ "15": 1920082,
904
+ "25": 1304180,
905
+ "33": 2837294,
906
+ "50": 2120979,
907
+ "66": 477895,
908
+ "70": 436955,
909
+ "75": 418582,
910
+ "80": 187890,
911
+ "90": 168364,
912
+ "95": 139057,
913
+ "100": 890191,
914
+ "105": 457696,
915
+ "110": 736269,
916
+ "115": 77325,
917
+ "120": 422679,
918
+ "130": 116204,
919
+ "140": 74182
920
+ }
921
+ }
922
+ }
@@ -11318,51 +11318,51 @@
11318
11318
  "normal": {
11319
11319
  "willowisp3": {
11320
11320
  "mlvl": 26,
11321
- "packCount": 15.869230769230768,
11321
+ "packCount": 15.715384615384613,
11322
11322
  "mlvl(N)": 56,
11323
- "packCount(N)": 14.22307692307692,
11323
+ "packCount(N)": 14.069230769230767,
11324
11324
  "mlvl(H)": 83,
11325
- "packCount(H)": 12.538461538461537
11325
+ "packCount(H)": 12.384615384615387
11326
11326
  },
11327
11327
  "vilemother1": {
11328
11328
  "mlvl": 24,
11329
- "packCount": 15.869230769230768,
11329
+ "packCount": 15.715384615384615,
11330
11330
  "mlvl(N)": 56,
11331
- "packCount(N)": 14.223076923076922,
11331
+ "packCount(N)": 14.069230769230767,
11332
11332
  "mlvl(H)": 83,
11333
- "packCount(H)": 12.53846153846154
11333
+ "packCount(H)": 12.384615384615387
11334
11334
  },
11335
11335
  "fingermage1": {
11336
11336
  "mlvl": 24,
11337
- "packCount": 15.869230769230768,
11337
+ "packCount": 15.715384615384615,
11338
11338
  "mlvl(N)": 56,
11339
- "packCount(N)": 14.223076923076922,
11339
+ "packCount(N)": 14.069230769230767,
11340
11340
  "mlvl(H)": 83,
11341
- "packCount(H)": 12.53846153846154
11341
+ "packCount(H)": 12.384615384615387
11342
11342
  },
11343
11343
  "regurgitator1": {
11344
11344
  "mlvl": 24,
11345
- "packCount": 15.869230769230768,
11345
+ "packCount": 15.715384615384615,
11346
11346
  "mlvl(N)": 56,
11347
- "packCount(N)": 14.223076923076922,
11347
+ "packCount(N)": 14.069230769230767,
11348
11348
  "mlvl(H)": 83,
11349
- "packCount(H)": 12.53846153846154
11349
+ "packCount(H)": 12.384615384615387
11350
11350
  },
11351
11351
  "doomknight1": {
11352
11352
  "mlvl": 24,
11353
- "packCount": 15.869230769230768,
11353
+ "packCount": 15.715384615384613,
11354
11354
  "mlvl(N)": 56,
11355
- "packCount(N)": 14.22307692307692,
11355
+ "packCount(N)": 14.069230769230765,
11356
11356
  "mlvl(H)": 83,
11357
- "packCount(H)": 12.538461538461537
11357
+ "packCount(H)": 12.384615384615383
11358
11358
  },
11359
11359
  "megademon3": {
11360
11360
  "mlvl": 30,
11361
- "packCount": 15.869230769230768,
11361
+ "packCount": 15.715384615384613,
11362
11362
  "mlvl(N)": 56,
11363
- "packCount(N)": 14.22307692307692,
11363
+ "packCount(N)": 14.069230769230765,
11364
11364
  "mlvl(H)": 83,
11365
- "packCount(H)": 12.538461538461537
11365
+ "packCount(H)": 12.384615384615383
11366
11366
  }
11367
11367
  },
11368
11368
  "champion": {
@@ -11482,7 +11482,17 @@
11482
11482
  }
11483
11483
  },
11484
11484
  "superunique": {},
11485
- "boss": {}
11485
+ "boss": {
11486
+ "izual": {
11487
+ "mlvl": 29,
11488
+ "packCount": 1,
11489
+ "mlvl(N)": 60,
11490
+ "packCount(N)": 1,
11491
+ "mlvl(H)": 86,
11492
+ "packCount(H)": 1,
11493
+ "hasStaticLevel": true
11494
+ }
11495
+ }
11486
11496
  },
11487
11497
  "106": {
11488
11498
  "normal": {
@@ -30132,7 +30132,8 @@
30132
30132
  "TreasureClassDesecrated(H)": "Izual (H) Desecrated A",
30133
30133
  "TreasureClassDesecratedChamp(H)": "Izual (H) Desecrated A",
30134
30134
  "TreasureClassDesecratedUnique(H)": "Izual (H) Desecrated A",
30135
- "lineNumber": 256
30135
+ "lineNumber": 256,
30136
+ "areaId": 105
30136
30137
  },
30137
30138
  "izualghost": {
30138
30139
  "Id": "izualghost",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blizzhackers/d2data",
3
- "version": "2.7.10",
3
+ "version": "2.7.12",
4
4
  "description": "",
5
5
  "main": "compile.js",
6
6
  "scripts": {
@@ -42,6 +42,7 @@
42
42
  "Wyand Voidbringer","hell","yes","no",83,88,86,"Durance of Hate Level 3",102
43
43
  "Maffer Dragonhand","hell","yes","no",83,88,86,"Durance of Hate Level 3",102
44
44
  "Mephisto","hell","no","yes",83,87,87,"Durance of Hate Level 3",102
45
+ "Izual","hell","no","yes",83,86,86,"Plains of Despair",105
45
46
  "Hephasto The Armorer","hell","yes","no",85,88,88,"River of Flame",107
46
47
  "Infector of Souls","hell","yes","no",85,84,88,"The Chaos Sanctuary",108
47
48
  "Lord De Seis","hell","yes","no",85,85,88,"The Chaos Sanctuary",108
@@ -42,6 +42,7 @@
42
42
  "Wyand Voidbringer","nightmare","yes","no",55,56,58,"Durance of Hate Level 3",102
43
43
  "Maffer Dragonhand","nightmare","yes","no",55,56,58,"Durance of Hate Level 3",102
44
44
  "Mephisto","nightmare","no","yes",55,59,59,"Durance of Hate Level 3",102
45
+ "Izual","nightmare","no","yes",56,60,60,"Plains of Despair",105
45
46
  "Hephasto The Armorer","nightmare","yes","no",57,60,60,"River of Flame",107
46
47
  "Infector of Souls","nightmare","yes","no",58,57,61,"The Chaos Sanctuary",108
47
48
  "Lord De Seis","nightmare","yes","no",58,58,61,"The Chaos Sanctuary",108
@@ -42,6 +42,7 @@
42
42
  "Wyand Voidbringer","normal","yes","no",25,25,28,"Durance of Hate Level 3",102
43
43
  "Maffer Dragonhand","normal","yes","no",25,25,28,"Durance of Hate Level 3",102
44
44
  "Mephisto","normal","no","yes",25,26,26,"Durance of Hate Level 3",102
45
+ "Izual","normal","no","yes",26,29,29,"Plains of Despair",105
45
46
  "Hephasto The Armorer","normal","yes","no",27,25,28,"River of Flame",107
46
47
  "Infector of Souls","normal","yes","no",28,30,33,"The Chaos Sanctuary",108
47
48
  "Lord De Seis","normal","yes","no",28,30,33,"The Chaos Sanctuary",108