@blizzhackers/d2data 2.6.2 → 2.7.1
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 +22 -129
- package/json/itemstatcost.json +5 -7
- package/json/setitems.json +3 -6
- package/json/skillcalc.json +20 -0
- package/json/skills.json +46 -1
- package/json/tcprecalc.json +295 -299
- package/json/treasureclassex.json +3 -3
- package/package.json +2 -2
package/compile.js
CHANGED
|
@@ -610,135 +610,28 @@ tcprecalc.forEach((basetc, basekey) => {
|
|
|
610
610
|
}
|
|
611
611
|
});
|
|
612
612
|
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
tcprecalc[
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
tcprecalc['Duriel Desecrated C']['droprateRoot'] = { ...tcprecalc['Duriel']['droprateRoot'] };
|
|
636
|
-
tcprecalc['Duriel - Base Desecrated C']['droprate'] = { ...tcprecalc['Duriel - Base']['droprate'] };
|
|
637
|
-
|
|
638
|
-
tcprecalc['Duriel (N)']['droprateRoot'][1] *= 0.40188714943604026;
|
|
639
|
-
tcprecalc['Duriel (N)']['droprateRoot'][2] *= 0.3016508805227563;
|
|
640
|
-
tcprecalc['Duriel (N)']['droprateRoot'][3] *= 0.28809929433644293;
|
|
641
|
-
tcprecalc['Duriel (N)']['droprateRoot'][4] *= 0.28604061515129975;
|
|
642
|
-
tcprecalc['Duriel (N)']['droprateRoot'][5] *= 0.28604061515129975;
|
|
643
|
-
tcprecalc['Duriel (N)']['droprateRoot'][6] *= 0.28604061515129975;
|
|
644
|
-
tcprecalc['Duriel (N)']['droprateRoot'][7] *= 0.28604061515129975;
|
|
645
|
-
tcprecalc['Duriel (N)']['droprateRoot'][8] *= 0.28604061515129975;
|
|
646
|
-
tcprecalc['Duriel (N) - Base']['droprate'][1] *= 0.31707696865583446 / 0.40188714943604026;
|
|
647
|
-
tcprecalc['Duriel (N) - Base']['droprate'][2] *= 0.25418252986014334 / 0.3016508805227563;
|
|
648
|
-
tcprecalc['Duriel (N) - Base']['droprate'][3] *= 0.24045372397688228 / 0.28809929433644293;
|
|
649
|
-
tcprecalc['Duriel (N) - Base']['droprate'][4] *= 0.23562610229276895 / 0.28604061515129975;
|
|
650
|
-
tcprecalc['Duriel (N) - Base']['droprate'][5] *= 0.23562610229276895 / 0.28604061515129975;
|
|
651
|
-
tcprecalc['Duriel (N) - Base']['droprate'][6] *= 0.23562610229276895 / 0.28604061515129975;
|
|
652
|
-
tcprecalc['Duriel (N) - Base']['droprate'][7] *= 0.23562610229276895 / 0.28604061515129975;
|
|
653
|
-
tcprecalc['Duriel (N) - Base']['droprate'][8] *= 0.23562610229276895 / 0.28604061515129975;
|
|
654
|
-
|
|
655
|
-
tcprecalc['Duriel (N) Desecrated A']['droprateRoot'] = { ...tcprecalc['Duriel (N)']['droprateRoot'] };
|
|
656
|
-
tcprecalc['Duriel (N) - Base Desecrated A']['droprate'] = { ...tcprecalc['Duriel (N) - Base']['droprate'] };
|
|
657
|
-
tcprecalc['Duriel (N) Desecrated B']['droprateRoot'] = { ...tcprecalc['Duriel (N)']['droprateRoot'] };
|
|
658
|
-
tcprecalc['Duriel (N) - Base Desecrated B']['droprate'] = { ...tcprecalc['Duriel (N) - Base']['droprate'] };
|
|
659
|
-
tcprecalc['Duriel (N) Desecrated C']['droprateRoot'] = { ...tcprecalc['Duriel (N)']['droprateRoot'] };
|
|
660
|
-
tcprecalc['Duriel (N) - Base Desecrated C']['droprate'] = { ...tcprecalc['Duriel (N) - Base']['droprate'] };
|
|
661
|
-
|
|
662
|
-
tcprecalc['Duriel (H)']['droprateRoot'][1] *= 0.3977971198210286;
|
|
663
|
-
tcprecalc['Duriel (H)']['droprateRoot'][2] *= 0.30109536777656887;
|
|
664
|
-
tcprecalc['Duriel (H)']['droprateRoot'][3] *= 0.28836833573076587;
|
|
665
|
-
tcprecalc['Duriel (H)']['droprateRoot'][4] *= 0.28645033061957725;
|
|
666
|
-
tcprecalc['Duriel (H)']['droprateRoot'][5] *= 0.28645033061957725;
|
|
667
|
-
tcprecalc['Duriel (H)']['droprateRoot'][6] *= 0.28645033061957725;
|
|
668
|
-
tcprecalc['Duriel (H)']['droprateRoot'][7] *= 0.28645033061957725;
|
|
669
|
-
tcprecalc['Duriel (H)']['droprateRoot'][8] *= 0.28645033061957725;
|
|
670
|
-
tcprecalc['Duriel (H) - Base']['droprate'][1] *= 0.31394497266967347 / 0.3977971198210286;
|
|
671
|
-
tcprecalc['Duriel (H) - Base']['droprate'][2] *= 0.25347220341955656 / 0.30109536777656887;
|
|
672
|
-
tcprecalc['Duriel (H) - Base']['droprate'][3] *= 0.24026354414195675 / 0.28836833573076587;
|
|
673
|
-
tcprecalc['Duriel (H) - Base']['droprate'][4] *= 0.23562610229276895 / 0.28645033061957725;
|
|
674
|
-
tcprecalc['Duriel (H) - Base']['droprate'][5] *= 0.23562610229276895 / 0.28645033061957725;
|
|
675
|
-
tcprecalc['Duriel (H) - Base']['droprate'][6] *= 0.23562610229276895 / 0.28645033061957725;
|
|
676
|
-
tcprecalc['Duriel (H) - Base']['droprate'][7] *= 0.23562610229276895 / 0.28645033061957725;
|
|
677
|
-
tcprecalc['Duriel (H) - Base']['droprate'][8] *= 0.23562610229276895 / 0.28645033061957725;
|
|
678
|
-
|
|
679
|
-
tcprecalc['Duriel (H) Desecrated Five']['droprate'] = { ...tcprecalc['Duriel (H)']['droprateRoot'] };
|
|
680
|
-
tcprecalc['Duriel (H) - Base Desecrated A']['droprate'] = { ...tcprecalc['Duriel (H) - Base']['droprate'] };
|
|
681
|
-
tcprecalc['Duriel (H) Desecrated Town Portal']['droprate'] = { ...tcprecalc['Duriel (H)']['droprateRoot'] };
|
|
682
|
-
tcprecalc['Duriel (H) - Base Desecrated B']['droprate'] = { ...tcprecalc['Duriel (H) - Base']['droprate'] };
|
|
683
|
-
tcprecalc['Duriel (H) Desecrated Scrolls']['droprate'] = { ...tcprecalc['Duriel (H)']['droprateRoot'] };
|
|
684
|
-
tcprecalc['Duriel (H) - Base Desecrated C']['droprate'] = { ...tcprecalc['Duriel (H) - Base']['droprate'] };
|
|
685
|
-
tcprecalc['Duriel (H) Desecrated Incoming']['droprate'] = { ...tcprecalc['Duriel (H)']['droprateRoot'] };
|
|
686
|
-
|
|
687
|
-
tcprecalc['Duriel (H) Desecrated A'] = { ...tcprecalc['Duriel (H) Desecrated Five'] };
|
|
688
|
-
tcprecalc['Duriel (H) Desecrated B'] = { ...tcprecalc['Duriel (H) Desecrated Town Portal'] };
|
|
689
|
-
tcprecalc['Duriel (H) Desecrated C'] = { ...tcprecalc['Duriel (H) Desecrated Scrolls'] };
|
|
690
|
-
tcprecalc['Duriel (H) Desecrated D'] = { ...tcprecalc['Duriel (H) Desecrated Incoming'] };
|
|
691
|
-
|
|
692
|
-
tcprecalc['Durielq']['droprateRoot'][1] *= 0.5236458617828885;
|
|
693
|
-
tcprecalc['Durielq']['droprateRoot'][2] *= 0.3778815510942014;
|
|
694
|
-
tcprecalc['Durielq']['droprateRoot'][3] *= 0.3148960979106187;
|
|
695
|
-
tcprecalc['Durielq']['droprateRoot'][4] *= 0.3035687614166196;
|
|
696
|
-
tcprecalc['Durielq']['droprateRoot'][5] *= 0.29876543209876544;
|
|
697
|
-
tcprecalc['Durielq']['droprateRoot'][6] *= 0.29876543209876544;
|
|
698
|
-
tcprecalc['Durielq']['droprateRoot'][7] *= 0.29876543209876544;
|
|
699
|
-
tcprecalc['Durielq']['droprateRoot'][8] *= 0.29876543209876544;
|
|
700
|
-
tcprecalc['Durielq - Base']['droprate'][1] *= 0.4089824816019127 / 0.5236458617828885;
|
|
701
|
-
tcprecalc['Durielq - Base']['droprate'][2] *= 0.2926940985197233 / 0.3778815510942014;
|
|
702
|
-
tcprecalc['Durielq - Base']['droprate'][3] *= 0.2557897178063293 / 0.3148960979106187;
|
|
703
|
-
tcprecalc['Durielq - Base']['droprate'][4] *= 0.2459776894089001 / 0.3035687614166196;
|
|
704
|
-
tcprecalc['Durielq - Base']['droprate'][5] *= 0.23562610229276895 / 0.29876543209876544;
|
|
705
|
-
tcprecalc['Durielq - Base']['droprate'][6] *= 0.23562610229276895 / 0.29876543209876544;
|
|
706
|
-
tcprecalc['Durielq - Base']['droprate'][7] *= 0.23562610229276895 / 0.29876543209876544;
|
|
707
|
-
tcprecalc['Durielq - Base']['droprate'][8] *= 0.23562610229276895 / 0.29876543209876544;
|
|
708
|
-
|
|
709
|
-
tcprecalc['Durielq (N)']['droprateRoot'][1] *= 0.5236458617828885;
|
|
710
|
-
tcprecalc['Durielq (N)']['droprateRoot'][2] *= 0.3778815510942014;
|
|
711
|
-
tcprecalc['Durielq (N)']['droprateRoot'][3] *= 0.3148960979106187;
|
|
712
|
-
tcprecalc['Durielq (N)']['droprateRoot'][4] *= 0.3035687614166196;
|
|
713
|
-
tcprecalc['Durielq (N)']['droprateRoot'][5] *= 0.29876543209876544;
|
|
714
|
-
tcprecalc['Durielq (N)']['droprateRoot'][6] *= 0.29876543209876544;
|
|
715
|
-
tcprecalc['Durielq (N)']['droprateRoot'][7] *= 0.29876543209876544;
|
|
716
|
-
tcprecalc['Durielq (N)']['droprateRoot'][8] *= 0.29876543209876544;
|
|
717
|
-
tcprecalc['Durielq (N) - Base']['droprate'][1] *= 0.4089824816019127 / 0.5236458617828885;
|
|
718
|
-
tcprecalc['Durielq (N) - Base']['droprate'][2] *= 0.2926940985197233 / 0.3778815510942014;
|
|
719
|
-
tcprecalc['Durielq (N) - Base']['droprate'][3] *= 0.2557897178063293 / 0.3148960979106187;
|
|
720
|
-
tcprecalc['Durielq (N) - Base']['droprate'][4] *= 0.24597768940890014 / 0.3035687614166196;
|
|
721
|
-
tcprecalc['Durielq (N) - Base']['droprate'][5] *= 0.23562610229276895 / 0.29876543209876544;
|
|
722
|
-
tcprecalc['Durielq (N) - Base']['droprate'][6] *= 0.23562610229276895 / 0.29876543209876544;
|
|
723
|
-
tcprecalc['Durielq (N) - Base']['droprate'][7] *= 0.23562610229276895 / 0.29876543209876544;
|
|
724
|
-
tcprecalc['Durielq (N) - Base']['droprate'][8] *= 0.23562610229276895 / 0.29876543209876544;
|
|
725
|
-
|
|
726
|
-
tcprecalc['Durielq (H)']['droprateRoot'][1] *= 0.509798203037134;
|
|
727
|
-
tcprecalc['Durielq (H)']['droprateRoot'][2] *= 0.3551358075004491;
|
|
728
|
-
tcprecalc['Durielq (H)']['droprateRoot'][3] *= 0.31271044447151597;
|
|
729
|
-
tcprecalc['Durielq (H)']['droprateRoot'][4] *= 0.29876543209876544;
|
|
730
|
-
tcprecalc['Durielq (H)']['droprateRoot'][5] *= 0.29876543209876544;
|
|
731
|
-
tcprecalc['Durielq (H)']['droprateRoot'][6] *= 0.29876543209876544;
|
|
732
|
-
tcprecalc['Durielq (H)']['droprateRoot'][7] *= 0.29876543209876544;
|
|
733
|
-
tcprecalc['Durielq (H)']['droprateRoot'][8] *= 0.29876543209876544;
|
|
734
|
-
tcprecalc['Durielq (H) - Base']['droprate'][1] *= 0.39501521709445914 / 0.509798203037134;
|
|
735
|
-
tcprecalc['Durielq (H) - Base']['droprate'][2] *= 0.27984922935137513 / 0.3551358075004491;
|
|
736
|
-
tcprecalc['Durielq (H) - Base']['droprate'][3] *= 0.25418252986014334 / 0.31271044447151597;
|
|
737
|
-
tcprecalc['Durielq (H) - Base']['droprate'][4] *= 0.23562610229276895 / 0.29876543209876544;
|
|
738
|
-
tcprecalc['Durielq (H) - Base']['droprate'][5] *= 0.23562610229276895 / 0.29876543209876544;
|
|
739
|
-
tcprecalc['Durielq (H) - Base']['droprate'][6] *= 0.23562610229276895 / 0.29876543209876544;
|
|
740
|
-
tcprecalc['Durielq (H) - Base']['droprate'][7] *= 0.23562610229276895 / 0.29876543209876544;
|
|
741
|
-
tcprecalc['Durielq (H) - Base']['droprate'][8] *= 0.23562610229276895 / 0.29876543209876544;
|
|
613
|
+
[
|
|
614
|
+
"Duriel",
|
|
615
|
+
"Duriel Desecrated A",
|
|
616
|
+
"Duriel Desecrated B",
|
|
617
|
+
"Duriel Desecrated C",
|
|
618
|
+
"Duriel (N)",
|
|
619
|
+
"Duriel (N) Desecrated A",
|
|
620
|
+
"Duriel (N) Desecrated B",
|
|
621
|
+
"Duriel (N) Desecrated C",
|
|
622
|
+
"Duriel (H)",
|
|
623
|
+
"Duriel (H) Desecrated A",
|
|
624
|
+
"Duriel (H) Desecrated B",
|
|
625
|
+
"Duriel (H) Desecrated C",
|
|
626
|
+
"Duriel (H) Desecrated D",
|
|
627
|
+
"Durielq",
|
|
628
|
+
"Durielq (N)",
|
|
629
|
+
"Durielq (H)",
|
|
630
|
+
].forEach(tcname => {
|
|
631
|
+
for (let c = 1; c < 9; c++) {
|
|
632
|
+
tcprecalc[tcname]['droprateRoot'][c] *= 0.42;
|
|
633
|
+
}
|
|
634
|
+
});
|
|
742
635
|
|
|
743
636
|
tcprecalc.forEach(tc => {
|
|
744
637
|
if (tc['counts']['Sunder Charms']) {
|
package/json/itemstatcost.json
CHANGED
|
@@ -4517,6 +4517,11 @@
|
|
|
4517
4517
|
"descstrneg": "ModStr1g",
|
|
4518
4518
|
"lineNumber": 21
|
|
4519
4519
|
},
|
|
4520
|
+
"modifierlist_castid": {
|
|
4521
|
+
"Stat": "modifierlist_castid",
|
|
4522
|
+
"*ID": 202,
|
|
4523
|
+
"lineNumber": 202
|
|
4524
|
+
},
|
|
4520
4525
|
"modifierlist_level": {
|
|
4521
4526
|
"Stat": "modifierlist_level",
|
|
4522
4527
|
"*ID": 351,
|
|
@@ -5434,13 +5439,6 @@
|
|
|
5434
5439
|
"1.09-Save Add": 0,
|
|
5435
5440
|
"lineNumber": 84
|
|
5436
5441
|
},
|
|
5437
|
-
"unused202": {
|
|
5438
|
-
"Stat": "unused202",
|
|
5439
|
-
"*ID": 202,
|
|
5440
|
-
"1.09-Save Bits": 21,
|
|
5441
|
-
"1.09-Save Add": 0,
|
|
5442
|
-
"lineNumber": 202
|
|
5443
|
-
},
|
|
5444
5442
|
"unused203": {
|
|
5445
5443
|
"Stat": "unused203",
|
|
5446
5444
|
"*ID": 203,
|
package/json/setitems.json
CHANGED
|
@@ -614,12 +614,9 @@
|
|
|
614
614
|
"prop3": "swing2",
|
|
615
615
|
"min3": 20,
|
|
616
616
|
"max3": 20,
|
|
617
|
-
"prop4": "
|
|
618
|
-
"min4":
|
|
619
|
-
"max4":
|
|
620
|
-
"prop5": "dmg%",
|
|
621
|
-
"min5": 200,
|
|
622
|
-
"max5": 200,
|
|
617
|
+
"prop4": "dmg%",
|
|
618
|
+
"min4": 200,
|
|
619
|
+
"max4": 200,
|
|
623
620
|
"expansion": 1,
|
|
624
621
|
"lineNumber": 116
|
|
625
622
|
},
|
package/json/skillcalc.json
CHANGED
|
@@ -394,6 +394,26 @@
|
|
|
394
394
|
"*Description": "The passivecalc10 field value",
|
|
395
395
|
"lineNumber": 94
|
|
396
396
|
},
|
|
397
|
+
"ps11": {
|
|
398
|
+
"code": "ps11",
|
|
399
|
+
"*Description": "The passivecalc11 field value",
|
|
400
|
+
"lineNumber": 95
|
|
401
|
+
},
|
|
402
|
+
"ps12": {
|
|
403
|
+
"code": "ps12",
|
|
404
|
+
"*Description": "The passivecalc12 field value",
|
|
405
|
+
"lineNumber": 96
|
|
406
|
+
},
|
|
407
|
+
"ps13": {
|
|
408
|
+
"code": "ps13",
|
|
409
|
+
"*Description": "The passivecalc13 field value",
|
|
410
|
+
"lineNumber": 97
|
|
411
|
+
},
|
|
412
|
+
"ps14": {
|
|
413
|
+
"code": "ps14",
|
|
414
|
+
"*Description": "The passivecalc14 field value",
|
|
415
|
+
"lineNumber": 98
|
|
416
|
+
},
|
|
397
417
|
"pst1": {
|
|
398
418
|
"code": "pst1",
|
|
399
419
|
"*Description": "The passivecalc1 field value",
|
package/json/skills.json
CHANGED
|
@@ -1452,7 +1452,8 @@
|
|
|
1452
1452
|
"passivestate": "evade",
|
|
1453
1453
|
"passivestat1": "passive_evade",
|
|
1454
1454
|
"passivecalc1": "dm12",
|
|
1455
|
-
"stsound": "
|
|
1455
|
+
"stsound": "block_arrow_1",
|
|
1456
|
+
"stsoundclass": "amazon_dodge_1",
|
|
1456
1457
|
"enhanceable": 1,
|
|
1457
1458
|
"attackrank": 0,
|
|
1458
1459
|
"range": "h2h",
|
|
@@ -8853,11 +8854,13 @@
|
|
|
8853
8854
|
"skill": "SpiderLay",
|
|
8854
8855
|
"*Id": 173,
|
|
8855
8856
|
"srvdofunc": 23,
|
|
8857
|
+
"srvmissilea": "spidergoolay",
|
|
8856
8858
|
"aurastate": "spiderlay",
|
|
8857
8859
|
"auratargetstate": "slowed",
|
|
8858
8860
|
"auralencalc": 300,
|
|
8859
8861
|
"aurastat1": "velocitypercent",
|
|
8860
8862
|
"aurastatcalc1": -100,
|
|
8863
|
+
"cltmissilea": "spidergoolay",
|
|
8861
8864
|
"enhanceable": 1,
|
|
8862
8865
|
"attackrank": 0,
|
|
8863
8866
|
"anim": "SQ",
|
|
@@ -10333,6 +10336,8 @@
|
|
|
10333
10336
|
"*Param3 Description": "Attack Speed % Min",
|
|
10334
10337
|
"Param4": 80,
|
|
10335
10338
|
"*Param4 Description": "Attack Speed % Max",
|
|
10339
|
+
"Param12": 1,
|
|
10340
|
+
"*Param12 Description": "Allow Instant Direct Transformation",
|
|
10336
10341
|
"InGame": 1,
|
|
10337
10342
|
"ToHit": 50,
|
|
10338
10343
|
"LevToHit": 15,
|
|
@@ -10638,6 +10643,8 @@
|
|
|
10638
10643
|
"*Param5 Description": "HP %",
|
|
10639
10644
|
"Param6": 100,
|
|
10640
10645
|
"*Param6 Description": "% chance for uninterruptible attack",
|
|
10646
|
+
"Param12": 1,
|
|
10647
|
+
"*Param12 Description": "Allow Instant Direct Transformation",
|
|
10641
10648
|
"InGame": 1,
|
|
10642
10649
|
"HitShift": 8,
|
|
10643
10650
|
"SrcDam": 128,
|
|
@@ -12453,6 +12460,30 @@
|
|
|
12453
12460
|
"passivecalc1": "lvl*5",
|
|
12454
12461
|
"passivestat2": "item_pierce_damage_immunity",
|
|
12455
12462
|
"passivecalc2": "stat('item_pierce_damage_immunity'.accr)",
|
|
12463
|
+
"passivestat3": "item_pierce_fire_immunity",
|
|
12464
|
+
"passivecalc3": "stat('item_pierce_fire_immunity'.accr)",
|
|
12465
|
+
"passivestat4": "item_pierce_light_immunity",
|
|
12466
|
+
"passivecalc4": "stat('item_pierce_light_immunity'.accr)",
|
|
12467
|
+
"passivestat5": "item_pierce_poison_immunity",
|
|
12468
|
+
"passivecalc5": "stat('item_pierce_poison_immunity'.accr)",
|
|
12469
|
+
"passivestat6": "item_pierce_cold_immunity",
|
|
12470
|
+
"passivecalc6": "stat('item_pierce_cold_immunity'.accr",
|
|
12471
|
+
"passivestat7": "passive_fire_mastery",
|
|
12472
|
+
"passivecalc7": "stat('passive_fire_mastery'.accr)",
|
|
12473
|
+
"passivestat8": "passive_ltng_mastery",
|
|
12474
|
+
"passivecalc8": "stat('passive_ltng_mastery'.accr)",
|
|
12475
|
+
"passivestat9": "passive_cold_mastery",
|
|
12476
|
+
"passivecalc9": "stat('passive_cold_mastery'.accr)",
|
|
12477
|
+
"passivestat10": "passive_pois_mastery",
|
|
12478
|
+
"passivecalc10": "stat('passive_pois_mastery'.accr)",
|
|
12479
|
+
"passivestat11": "passive_fire_pierce",
|
|
12480
|
+
"passivecalc11": "stat('passive_fire_pierce'.accr)",
|
|
12481
|
+
"passivestat12": "passive_ltng_pierce",
|
|
12482
|
+
"passivecalc12": "stat('passive_ltng_pierce'.accr)",
|
|
12483
|
+
"passivestat13": "passive_cold_pierce",
|
|
12484
|
+
"passivecalc13": "stat('passive_cold_pierce'.accr)",
|
|
12485
|
+
"passivestat14": "passive_pois_pierce",
|
|
12486
|
+
"passivecalc14": "stat('passive_pois_pierce'.accr)",
|
|
12456
12487
|
"summon": "bladecreeper",
|
|
12457
12488
|
"pettype": "assassintrap",
|
|
12458
12489
|
"petmax": 5,
|
|
@@ -12712,6 +12743,8 @@
|
|
|
12712
12743
|
"passivecalc1": "stat('item_pierce_light_immunity'.accr)",
|
|
12713
12744
|
"passivestat2": "passive_ltng_pierce",
|
|
12714
12745
|
"passivecalc2": "stat('passive_ltng_pierce'.accr)",
|
|
12746
|
+
"passivestat3": "passive_ltng_mastery",
|
|
12747
|
+
"passivecalc3": "stat('passive_ltng_mastery'.accr)",
|
|
12715
12748
|
"summon": "chargeboltsentry",
|
|
12716
12749
|
"pettype": "assassintrap",
|
|
12717
12750
|
"petmax": 5,
|
|
@@ -12790,6 +12823,8 @@
|
|
|
12790
12823
|
"passivecalc1": "stat('item_pierce_fire_immunity'.accr)",
|
|
12791
12824
|
"passivestat2": "passive_fire_pierce",
|
|
12792
12825
|
"passivecalc2": "stat('passive_fire_pierce'.accr)",
|
|
12826
|
+
"passivestat3": "passive_fire_mastery",
|
|
12827
|
+
"passivecalc3": "stat('passive_fire_mastery'.accr)",
|
|
12793
12828
|
"summon": "wakeofdestruction",
|
|
12794
12829
|
"pettype": "assassintrap",
|
|
12795
12830
|
"petmax": 5,
|
|
@@ -13355,6 +13390,8 @@
|
|
|
13355
13390
|
"passivecalc1": "stat('item_pierce_light_immunity'.accr)",
|
|
13356
13391
|
"passivestat2": "passive_ltng_pierce",
|
|
13357
13392
|
"passivecalc2": "stat('passive_ltng_pierce'.accr)",
|
|
13393
|
+
"passivestat3": "passive_ltng_mastery",
|
|
13394
|
+
"passivecalc3": "stat('passive_ltng_mastery'.accr)",
|
|
13358
13395
|
"summon": "lightningsentry",
|
|
13359
13396
|
"pettype": "assassintrap",
|
|
13360
13397
|
"petmax": 5,
|
|
@@ -13421,6 +13458,8 @@
|
|
|
13421
13458
|
"passivecalc1": "stat('item_pierce_fire_immunity'.accr)",
|
|
13422
13459
|
"passivestat2": "passive_fire_pierce",
|
|
13423
13460
|
"passivecalc2": "stat('passive_fire_pierce'.accr)",
|
|
13461
|
+
"passivestat3": "passive_fire_mastery",
|
|
13462
|
+
"passivecalc3": "stat('passive_fire_mastery'.accr)",
|
|
13424
13463
|
"summon": "infernosentry",
|
|
13425
13464
|
"pettype": "assassintrap",
|
|
13426
13465
|
"petmax": 5,
|
|
@@ -13720,6 +13759,10 @@
|
|
|
13720
13759
|
"passivecalc4": "stat('passive_ltng_pierce'.accr)",
|
|
13721
13760
|
"passivestat5": "passive_fire_pierce",
|
|
13722
13761
|
"passivecalc5": "stat('passive_fire_pierce'.accr)",
|
|
13762
|
+
"passivestat6": "passive_ltng_mastery",
|
|
13763
|
+
"passivecalc6": "stat('passive_ltng_mastery'.accr)",
|
|
13764
|
+
"passivestat7": "passive_fire_mastery",
|
|
13765
|
+
"passivecalc7": "stat('passive_fire_mastery'.accr)",
|
|
13723
13766
|
"summon": "deathsentry",
|
|
13724
13767
|
"pettype": "assassintrap",
|
|
13725
13768
|
"petmax": 5,
|
|
@@ -16305,6 +16348,8 @@
|
|
|
16305
16348
|
"reqlevel": 1,
|
|
16306
16349
|
"leftskill": 0,
|
|
16307
16350
|
"rightskill": 0,
|
|
16351
|
+
"Param12": 0,
|
|
16352
|
+
"*Param12 Description": "Allow Instant Direct Transformation",
|
|
16308
16353
|
"InGame": 1,
|
|
16309
16354
|
"HitShift": 8,
|
|
16310
16355
|
"cost add": 0,
|
package/json/tcprecalc.json
CHANGED
|
@@ -19752,14 +19752,14 @@
|
|
|
19752
19752
|
},
|
|
19753
19753
|
"Duriel - Base": {
|
|
19754
19754
|
"droprate": {
|
|
19755
|
-
"1": 0.
|
|
19756
|
-
"2": 0.
|
|
19757
|
-
"3": 0.
|
|
19758
|
-
"4":
|
|
19759
|
-
"5":
|
|
19760
|
-
"6":
|
|
19761
|
-
"7":
|
|
19762
|
-
"8":
|
|
19755
|
+
"1": 0.7164179104477612,
|
|
19756
|
+
"2": 0.9230769230769231,
|
|
19757
|
+
"3": 0.9795918367346939,
|
|
19758
|
+
"4": 1,
|
|
19759
|
+
"5": 1,
|
|
19760
|
+
"6": 1,
|
|
19761
|
+
"7": 1,
|
|
19762
|
+
"8": 1
|
|
19763
19763
|
},
|
|
19764
19764
|
"droprateRoot": {
|
|
19765
19765
|
"1": 0.7025801119349266,
|
|
@@ -19780,14 +19780,14 @@
|
|
|
19780
19780
|
},
|
|
19781
19781
|
"Duriel - Base Desecrated A": {
|
|
19782
19782
|
"droprate": {
|
|
19783
|
-
"1": 0.
|
|
19784
|
-
"2": 0.
|
|
19785
|
-
"3": 0.
|
|
19786
|
-
"4":
|
|
19787
|
-
"5":
|
|
19788
|
-
"6":
|
|
19789
|
-
"7":
|
|
19790
|
-
"8":
|
|
19783
|
+
"1": 0.7164179104477612,
|
|
19784
|
+
"2": 0.9230769230769231,
|
|
19785
|
+
"3": 0.9795918367346939,
|
|
19786
|
+
"4": 1,
|
|
19787
|
+
"5": 1,
|
|
19788
|
+
"6": 1,
|
|
19789
|
+
"7": 1,
|
|
19790
|
+
"8": 1
|
|
19791
19791
|
},
|
|
19792
19792
|
"droprateRoot": {
|
|
19793
19793
|
"1": 0.7025801119349266,
|
|
@@ -19808,14 +19808,14 @@
|
|
|
19808
19808
|
},
|
|
19809
19809
|
"Duriel - Base Desecrated B": {
|
|
19810
19810
|
"droprate": {
|
|
19811
|
-
"1": 0.
|
|
19812
|
-
"2": 0.
|
|
19813
|
-
"3": 0.
|
|
19814
|
-
"4":
|
|
19815
|
-
"5":
|
|
19816
|
-
"6":
|
|
19817
|
-
"7":
|
|
19818
|
-
"8":
|
|
19811
|
+
"1": 0.7164179104477612,
|
|
19812
|
+
"2": 0.9230769230769231,
|
|
19813
|
+
"3": 0.9795918367346939,
|
|
19814
|
+
"4": 1,
|
|
19815
|
+
"5": 1,
|
|
19816
|
+
"6": 1,
|
|
19817
|
+
"7": 1,
|
|
19818
|
+
"8": 1
|
|
19819
19819
|
},
|
|
19820
19820
|
"droprateRoot": {
|
|
19821
19821
|
"1": 0.7025801119349266,
|
|
@@ -19836,14 +19836,14 @@
|
|
|
19836
19836
|
},
|
|
19837
19837
|
"Duriel - Base Desecrated C": {
|
|
19838
19838
|
"droprate": {
|
|
19839
|
-
"1": 0.
|
|
19840
|
-
"2": 0.
|
|
19841
|
-
"3": 0.
|
|
19842
|
-
"4":
|
|
19843
|
-
"5":
|
|
19844
|
-
"6":
|
|
19845
|
-
"7":
|
|
19846
|
-
"8":
|
|
19839
|
+
"1": 0.7164179104477612,
|
|
19840
|
+
"2": 0.9230769230769231,
|
|
19841
|
+
"3": 0.9795918367346939,
|
|
19842
|
+
"4": 1,
|
|
19843
|
+
"5": 1,
|
|
19844
|
+
"6": 1,
|
|
19845
|
+
"7": 1,
|
|
19846
|
+
"8": 1
|
|
19847
19847
|
},
|
|
19848
19848
|
"droprateRoot": {
|
|
19849
19849
|
"1": 0.7025801119349266,
|
|
@@ -19864,14 +19864,14 @@
|
|
|
19864
19864
|
},
|
|
19865
19865
|
"Duriel (N) - Base": {
|
|
19866
19866
|
"droprate": {
|
|
19867
|
-
"1": 0.
|
|
19868
|
-
"2": 0.
|
|
19869
|
-
"3": 0.
|
|
19870
|
-
"4":
|
|
19871
|
-
"5":
|
|
19872
|
-
"6":
|
|
19873
|
-
"7":
|
|
19874
|
-
"8":
|
|
19867
|
+
"1": 0.7164179104477612,
|
|
19868
|
+
"2": 0.9230769230769231,
|
|
19869
|
+
"3": 0.9795918367346939,
|
|
19870
|
+
"4": 1,
|
|
19871
|
+
"5": 1,
|
|
19872
|
+
"6": 1,
|
|
19873
|
+
"7": 1,
|
|
19874
|
+
"8": 1
|
|
19875
19875
|
},
|
|
19876
19876
|
"droprateRoot": {
|
|
19877
19877
|
"1": 0.7025801119349266,
|
|
@@ -19892,14 +19892,14 @@
|
|
|
19892
19892
|
},
|
|
19893
19893
|
"Duriel (N) - Base Desecrated A": {
|
|
19894
19894
|
"droprate": {
|
|
19895
|
-
"1": 0.
|
|
19896
|
-
"2": 0.
|
|
19897
|
-
"3": 0.
|
|
19898
|
-
"4":
|
|
19899
|
-
"5":
|
|
19900
|
-
"6":
|
|
19901
|
-
"7":
|
|
19902
|
-
"8":
|
|
19895
|
+
"1": 0.7164179104477612,
|
|
19896
|
+
"2": 0.9230769230769231,
|
|
19897
|
+
"3": 0.9795918367346939,
|
|
19898
|
+
"4": 1,
|
|
19899
|
+
"5": 1,
|
|
19900
|
+
"6": 1,
|
|
19901
|
+
"7": 1,
|
|
19902
|
+
"8": 1
|
|
19903
19903
|
},
|
|
19904
19904
|
"droprateRoot": {
|
|
19905
19905
|
"1": 0.7025801119349266,
|
|
@@ -19920,14 +19920,14 @@
|
|
|
19920
19920
|
},
|
|
19921
19921
|
"Duriel (N) - Base Desecrated B": {
|
|
19922
19922
|
"droprate": {
|
|
19923
|
-
"1": 0.
|
|
19924
|
-
"2": 0.
|
|
19925
|
-
"3": 0.
|
|
19926
|
-
"4":
|
|
19927
|
-
"5":
|
|
19928
|
-
"6":
|
|
19929
|
-
"7":
|
|
19930
|
-
"8":
|
|
19923
|
+
"1": 0.7164179104477612,
|
|
19924
|
+
"2": 0.9230769230769231,
|
|
19925
|
+
"3": 0.9795918367346939,
|
|
19926
|
+
"4": 1,
|
|
19927
|
+
"5": 1,
|
|
19928
|
+
"6": 1,
|
|
19929
|
+
"7": 1,
|
|
19930
|
+
"8": 1
|
|
19931
19931
|
},
|
|
19932
19932
|
"droprateRoot": {
|
|
19933
19933
|
"1": 0.7025801119349266,
|
|
@@ -19948,14 +19948,14 @@
|
|
|
19948
19948
|
},
|
|
19949
19949
|
"Duriel (N) - Base Desecrated C": {
|
|
19950
19950
|
"droprate": {
|
|
19951
|
-
"1": 0.
|
|
19952
|
-
"2": 0.
|
|
19953
|
-
"3": 0.
|
|
19954
|
-
"4":
|
|
19955
|
-
"5":
|
|
19956
|
-
"6":
|
|
19957
|
-
"7":
|
|
19958
|
-
"8":
|
|
19951
|
+
"1": 0.7164179104477612,
|
|
19952
|
+
"2": 0.9230769230769231,
|
|
19953
|
+
"3": 0.9795918367346939,
|
|
19954
|
+
"4": 1,
|
|
19955
|
+
"5": 1,
|
|
19956
|
+
"6": 1,
|
|
19957
|
+
"7": 1,
|
|
19958
|
+
"8": 1
|
|
19959
19959
|
},
|
|
19960
19960
|
"droprateRoot": {
|
|
19961
19961
|
"1": 0.7025801119349266,
|
|
@@ -19976,14 +19976,14 @@
|
|
|
19976
19976
|
},
|
|
19977
19977
|
"Duriel (H) - Base": {
|
|
19978
19978
|
"droprate": {
|
|
19979
|
-
"1": 0.
|
|
19980
|
-
"2": 0.
|
|
19981
|
-
"3": 0.
|
|
19982
|
-
"4":
|
|
19983
|
-
"5":
|
|
19984
|
-
"6":
|
|
19985
|
-
"7":
|
|
19986
|
-
"8":
|
|
19979
|
+
"1": 0.7246376811594203,
|
|
19980
|
+
"2": 0.9259259259259259,
|
|
19981
|
+
"3": 0.9803921568627451,
|
|
19982
|
+
"4": 1,
|
|
19983
|
+
"5": 1,
|
|
19984
|
+
"6": 1,
|
|
19985
|
+
"7": 1,
|
|
19986
|
+
"8": 1
|
|
19987
19987
|
},
|
|
19988
19988
|
"droprateRoot": {
|
|
19989
19989
|
"1": 0.7096495199654373,
|
|
@@ -20005,14 +20005,14 @@
|
|
|
20005
20005
|
},
|
|
20006
20006
|
"Duriel (H) - Base Desecrated A": {
|
|
20007
20007
|
"droprate": {
|
|
20008
|
-
"1": 0.
|
|
20009
|
-
"2": 0.
|
|
20010
|
-
"3": 0.
|
|
20011
|
-
"4":
|
|
20012
|
-
"5":
|
|
20013
|
-
"6":
|
|
20014
|
-
"7":
|
|
20015
|
-
"8":
|
|
20008
|
+
"1": 0.7246376811594203,
|
|
20009
|
+
"2": 0.9259259259259259,
|
|
20010
|
+
"3": 0.9803921568627451,
|
|
20011
|
+
"4": 1,
|
|
20012
|
+
"5": 1,
|
|
20013
|
+
"6": 1,
|
|
20014
|
+
"7": 1,
|
|
20015
|
+
"8": 1
|
|
20016
20016
|
},
|
|
20017
20017
|
"droprateRoot": {
|
|
20018
20018
|
"1": 0.7096495199654373,
|
|
@@ -20034,14 +20034,14 @@
|
|
|
20034
20034
|
},
|
|
20035
20035
|
"Duriel (H) - Base Desecrated B": {
|
|
20036
20036
|
"droprate": {
|
|
20037
|
-
"1": 0.
|
|
20038
|
-
"2": 0.
|
|
20039
|
-
"3": 0.
|
|
20040
|
-
"4":
|
|
20041
|
-
"5":
|
|
20042
|
-
"6":
|
|
20043
|
-
"7":
|
|
20044
|
-
"8":
|
|
20037
|
+
"1": 0.7246376811594203,
|
|
20038
|
+
"2": 0.9259259259259259,
|
|
20039
|
+
"3": 0.9803921568627451,
|
|
20040
|
+
"4": 1,
|
|
20041
|
+
"5": 1,
|
|
20042
|
+
"6": 1,
|
|
20043
|
+
"7": 1,
|
|
20044
|
+
"8": 1
|
|
20045
20045
|
},
|
|
20046
20046
|
"droprateRoot": {
|
|
20047
20047
|
"1": 0.7096495199654373,
|
|
@@ -20063,14 +20063,14 @@
|
|
|
20063
20063
|
},
|
|
20064
20064
|
"Duriel (H) - Base Desecrated C": {
|
|
20065
20065
|
"droprate": {
|
|
20066
|
-
"1": 0.
|
|
20067
|
-
"2": 0.
|
|
20068
|
-
"3": 0.
|
|
20069
|
-
"4":
|
|
20070
|
-
"5":
|
|
20071
|
-
"6":
|
|
20072
|
-
"7":
|
|
20073
|
-
"8":
|
|
20066
|
+
"1": 0.7246376811594203,
|
|
20067
|
+
"2": 0.9259259259259259,
|
|
20068
|
+
"3": 0.9803921568627451,
|
|
20069
|
+
"4": 1,
|
|
20070
|
+
"5": 1,
|
|
20071
|
+
"6": 1,
|
|
20072
|
+
"7": 1,
|
|
20073
|
+
"8": 1
|
|
20074
20074
|
},
|
|
20075
20075
|
"droprateRoot": {
|
|
20076
20076
|
"1": 0.7096495199654373,
|
|
@@ -20121,14 +20121,14 @@
|
|
|
20121
20121
|
},
|
|
20122
20122
|
"Durielq - Base": {
|
|
20123
20123
|
"droprate": {
|
|
20124
|
-
"1": 0.
|
|
20125
|
-
"2": 0.
|
|
20126
|
-
"3": 0.
|
|
20127
|
-
"4": 0.
|
|
20128
|
-
"5":
|
|
20129
|
-
"6":
|
|
20130
|
-
"7":
|
|
20131
|
-
"8":
|
|
20124
|
+
"1": 0.5365853658536586,
|
|
20125
|
+
"2": 0.7857142857142857,
|
|
20126
|
+
"3": 0.9166666666666666,
|
|
20127
|
+
"4": 0.9565217391304348,
|
|
20128
|
+
"5": 1,
|
|
20129
|
+
"6": 1,
|
|
20130
|
+
"7": 1,
|
|
20131
|
+
"8": 1
|
|
20132
20132
|
},
|
|
20133
20133
|
"droprateRoot": {
|
|
20134
20134
|
"1": 0.5347556918031646,
|
|
@@ -20147,14 +20147,14 @@
|
|
|
20147
20147
|
},
|
|
20148
20148
|
"Durielq (N) - Base": {
|
|
20149
20149
|
"droprate": {
|
|
20150
|
-
"1": 0.
|
|
20151
|
-
"2": 0.
|
|
20152
|
-
"3": 0.
|
|
20153
|
-
"4": 0.
|
|
20154
|
-
"5":
|
|
20155
|
-
"6":
|
|
20156
|
-
"7":
|
|
20157
|
-
"8":
|
|
20150
|
+
"1": 0.5365853658536586,
|
|
20151
|
+
"2": 0.7857142857142857,
|
|
20152
|
+
"3": 0.9166666666666666,
|
|
20153
|
+
"4": 0.9565217391304348,
|
|
20154
|
+
"5": 1,
|
|
20155
|
+
"6": 1,
|
|
20156
|
+
"7": 1,
|
|
20157
|
+
"8": 1
|
|
20158
20158
|
},
|
|
20159
20159
|
"droprateRoot": {
|
|
20160
20160
|
"1": 0.5347556918031646,
|
|
@@ -20173,14 +20173,14 @@
|
|
|
20173
20173
|
},
|
|
20174
20174
|
"Durielq (H) - Base": {
|
|
20175
20175
|
"droprate": {
|
|
20176
|
-
"1": 0.
|
|
20177
|
-
"2": 0.
|
|
20178
|
-
"3": 0.
|
|
20179
|
-
"4":
|
|
20180
|
-
"5":
|
|
20181
|
-
"6":
|
|
20182
|
-
"7":
|
|
20183
|
-
"8":
|
|
20176
|
+
"1": 0.5581395348837209,
|
|
20177
|
+
"2": 0.8275862068965517,
|
|
20178
|
+
"3": 0.9230769230769231,
|
|
20179
|
+
"4": 1,
|
|
20180
|
+
"5": 1,
|
|
20181
|
+
"6": 1,
|
|
20182
|
+
"7": 1,
|
|
20183
|
+
"8": 1
|
|
20184
20184
|
},
|
|
20185
20185
|
"droprateRoot": {
|
|
20186
20186
|
"1": 0.5557290663703245,
|
|
@@ -21159,7 +21159,7 @@
|
|
|
21159
21159
|
"8": 1
|
|
21160
21160
|
},
|
|
21161
21161
|
"counts": {
|
|
21162
|
-
"Mephisto Item (H) Desecrated
|
|
21162
|
+
"Mephisto Item (H) Desecrated B": 1
|
|
21163
21163
|
}
|
|
21164
21164
|
},
|
|
21165
21165
|
"Mephisto (H) Desecrated C": {
|
|
@@ -21184,7 +21184,7 @@
|
|
|
21184
21184
|
"8": 1
|
|
21185
21185
|
},
|
|
21186
21186
|
"counts": {
|
|
21187
|
-
"Mephisto Item (H) Desecrated
|
|
21187
|
+
"Mephisto Item (H) Desecrated C": 1
|
|
21188
21188
|
}
|
|
21189
21189
|
},
|
|
21190
21190
|
"Mephisto (H) Desecrated D": {
|
|
@@ -21209,7 +21209,7 @@
|
|
|
21209
21209
|
"8": 1
|
|
21210
21210
|
},
|
|
21211
21211
|
"counts": {
|
|
21212
|
-
"Mephisto Item (H) Desecrated
|
|
21212
|
+
"Mephisto Item (H) Desecrated D": 1
|
|
21213
21213
|
}
|
|
21214
21214
|
},
|
|
21215
21215
|
"Mephistoq": {
|
|
@@ -28369,14 +28369,14 @@
|
|
|
28369
28369
|
"8": 1
|
|
28370
28370
|
},
|
|
28371
28371
|
"droprateRoot": {
|
|
28372
|
-
"1": 0.
|
|
28373
|
-
"2": 0.
|
|
28374
|
-
"3": 0.
|
|
28375
|
-
"4": 0.
|
|
28376
|
-
"5": 0.
|
|
28377
|
-
"6": 0.
|
|
28378
|
-
"7": 0.
|
|
28379
|
-
"8": 0.
|
|
28372
|
+
"1": 0.42,
|
|
28373
|
+
"2": 0.42,
|
|
28374
|
+
"3": 0.42,
|
|
28375
|
+
"4": 0.42,
|
|
28376
|
+
"5": 0.42,
|
|
28377
|
+
"6": 0.42,
|
|
28378
|
+
"7": 0.42,
|
|
28379
|
+
"8": 0.42
|
|
28380
28380
|
},
|
|
28381
28381
|
"counts": {
|
|
28382
28382
|
"tsc": 1.6666666666666665,
|
|
@@ -28395,14 +28395,14 @@
|
|
|
28395
28395
|
"8": 1
|
|
28396
28396
|
},
|
|
28397
28397
|
"droprateRoot": {
|
|
28398
|
-
"1": 0.
|
|
28399
|
-
"2": 0.
|
|
28400
|
-
"3": 0.
|
|
28401
|
-
"4": 0.
|
|
28402
|
-
"5": 0.
|
|
28403
|
-
"6": 0.
|
|
28404
|
-
"7": 0.
|
|
28405
|
-
"8": 0.
|
|
28398
|
+
"1": 0.42,
|
|
28399
|
+
"2": 0.42,
|
|
28400
|
+
"3": 0.42,
|
|
28401
|
+
"4": 0.42,
|
|
28402
|
+
"5": 0.42,
|
|
28403
|
+
"6": 0.42,
|
|
28404
|
+
"7": 0.42,
|
|
28405
|
+
"8": 0.42
|
|
28406
28406
|
},
|
|
28407
28407
|
"counts": {
|
|
28408
28408
|
"tsc": 1.6666666666666665,
|
|
@@ -28421,14 +28421,14 @@
|
|
|
28421
28421
|
"8": 1
|
|
28422
28422
|
},
|
|
28423
28423
|
"droprateRoot": {
|
|
28424
|
-
"1": 0.
|
|
28425
|
-
"2": 0.
|
|
28426
|
-
"3": 0.
|
|
28427
|
-
"4": 0.
|
|
28428
|
-
"5": 0.
|
|
28429
|
-
"6": 0.
|
|
28430
|
-
"7": 0.
|
|
28431
|
-
"8": 0.
|
|
28424
|
+
"1": 0.42,
|
|
28425
|
+
"2": 0.42,
|
|
28426
|
+
"3": 0.42,
|
|
28427
|
+
"4": 0.42,
|
|
28428
|
+
"5": 0.42,
|
|
28429
|
+
"6": 0.42,
|
|
28430
|
+
"7": 0.42,
|
|
28431
|
+
"8": 0.42
|
|
28432
28432
|
},
|
|
28433
28433
|
"counts": {
|
|
28434
28434
|
"tsc": 1.6666666666666665,
|
|
@@ -28447,14 +28447,14 @@
|
|
|
28447
28447
|
"8": 1
|
|
28448
28448
|
},
|
|
28449
28449
|
"droprateRoot": {
|
|
28450
|
-
"1": 0.
|
|
28451
|
-
"2": 0.
|
|
28452
|
-
"3": 0.
|
|
28453
|
-
"4": 0.
|
|
28454
|
-
"5": 0.
|
|
28455
|
-
"6": 0.
|
|
28456
|
-
"7": 0.
|
|
28457
|
-
"8": 0.
|
|
28450
|
+
"1": 0.42,
|
|
28451
|
+
"2": 0.42,
|
|
28452
|
+
"3": 0.42,
|
|
28453
|
+
"4": 0.42,
|
|
28454
|
+
"5": 0.42,
|
|
28455
|
+
"6": 0.42,
|
|
28456
|
+
"7": 0.42,
|
|
28457
|
+
"8": 0.42
|
|
28458
28458
|
},
|
|
28459
28459
|
"counts": {
|
|
28460
28460
|
"tsc": 1.6666666666666665,
|
|
@@ -28473,14 +28473,14 @@
|
|
|
28473
28473
|
"8": 1
|
|
28474
28474
|
},
|
|
28475
28475
|
"droprateRoot": {
|
|
28476
|
-
"1": 0.
|
|
28477
|
-
"2": 0.
|
|
28478
|
-
"3": 0.
|
|
28479
|
-
"4": 0.
|
|
28480
|
-
"5": 0.
|
|
28481
|
-
"6": 0.
|
|
28482
|
-
"7": 0.
|
|
28483
|
-
"8": 0.
|
|
28476
|
+
"1": 0.42,
|
|
28477
|
+
"2": 0.42,
|
|
28478
|
+
"3": 0.42,
|
|
28479
|
+
"4": 0.42,
|
|
28480
|
+
"5": 0.42,
|
|
28481
|
+
"6": 0.42,
|
|
28482
|
+
"7": 0.42,
|
|
28483
|
+
"8": 0.42
|
|
28484
28484
|
},
|
|
28485
28485
|
"counts": {
|
|
28486
28486
|
"tsc": 1.6666666666666665,
|
|
@@ -28499,14 +28499,14 @@
|
|
|
28499
28499
|
"8": 1
|
|
28500
28500
|
},
|
|
28501
28501
|
"droprateRoot": {
|
|
28502
|
-
"1": 0.
|
|
28503
|
-
"2": 0.
|
|
28504
|
-
"3": 0.
|
|
28505
|
-
"4": 0.
|
|
28506
|
-
"5": 0.
|
|
28507
|
-
"6": 0.
|
|
28508
|
-
"7": 0.
|
|
28509
|
-
"8": 0.
|
|
28502
|
+
"1": 0.42,
|
|
28503
|
+
"2": 0.42,
|
|
28504
|
+
"3": 0.42,
|
|
28505
|
+
"4": 0.42,
|
|
28506
|
+
"5": 0.42,
|
|
28507
|
+
"6": 0.42,
|
|
28508
|
+
"7": 0.42,
|
|
28509
|
+
"8": 0.42
|
|
28510
28510
|
},
|
|
28511
28511
|
"counts": {
|
|
28512
28512
|
"tsc": 1.6666666666666665,
|
|
@@ -28525,14 +28525,14 @@
|
|
|
28525
28525
|
"8": 1
|
|
28526
28526
|
},
|
|
28527
28527
|
"droprateRoot": {
|
|
28528
|
-
"1": 0.
|
|
28529
|
-
"2": 0.
|
|
28530
|
-
"3": 0.
|
|
28531
|
-
"4": 0.
|
|
28532
|
-
"5": 0.
|
|
28533
|
-
"6": 0.
|
|
28534
|
-
"7": 0.
|
|
28535
|
-
"8": 0.
|
|
28528
|
+
"1": 0.42,
|
|
28529
|
+
"2": 0.42,
|
|
28530
|
+
"3": 0.42,
|
|
28531
|
+
"4": 0.42,
|
|
28532
|
+
"5": 0.42,
|
|
28533
|
+
"6": 0.42,
|
|
28534
|
+
"7": 0.42,
|
|
28535
|
+
"8": 0.42
|
|
28536
28536
|
},
|
|
28537
28537
|
"counts": {
|
|
28538
28538
|
"tsc": 1.6666666666666665,
|
|
@@ -28551,14 +28551,14 @@
|
|
|
28551
28551
|
"8": 1
|
|
28552
28552
|
},
|
|
28553
28553
|
"droprateRoot": {
|
|
28554
|
-
"1": 0.
|
|
28555
|
-
"2": 0.
|
|
28556
|
-
"3": 0.
|
|
28557
|
-
"4": 0.
|
|
28558
|
-
"5": 0.
|
|
28559
|
-
"6": 0.
|
|
28560
|
-
"7": 0.
|
|
28561
|
-
"8": 0.
|
|
28554
|
+
"1": 0.42,
|
|
28555
|
+
"2": 0.42,
|
|
28556
|
+
"3": 0.42,
|
|
28557
|
+
"4": 0.42,
|
|
28558
|
+
"5": 0.42,
|
|
28559
|
+
"6": 0.42,
|
|
28560
|
+
"7": 0.42,
|
|
28561
|
+
"8": 0.42
|
|
28562
28562
|
},
|
|
28563
28563
|
"counts": {
|
|
28564
28564
|
"tsc": 1.6666666666666665,
|
|
@@ -28577,14 +28577,14 @@
|
|
|
28577
28577
|
"8": 1
|
|
28578
28578
|
},
|
|
28579
28579
|
"droprateRoot": {
|
|
28580
|
-
"1": 0.
|
|
28581
|
-
"2": 0.
|
|
28582
|
-
"3": 0.
|
|
28583
|
-
"4": 0.
|
|
28584
|
-
"5": 0.
|
|
28585
|
-
"6": 0.
|
|
28586
|
-
"7": 0.
|
|
28587
|
-
"8": 0.
|
|
28580
|
+
"1": 0.42,
|
|
28581
|
+
"2": 0.42,
|
|
28582
|
+
"3": 0.42,
|
|
28583
|
+
"4": 0.42,
|
|
28584
|
+
"5": 0.42,
|
|
28585
|
+
"6": 0.42,
|
|
28586
|
+
"7": 0.42,
|
|
28587
|
+
"8": 0.42
|
|
28588
28588
|
},
|
|
28589
28589
|
"counts": {
|
|
28590
28590
|
"tsc": 1.6666666666666665,
|
|
@@ -28593,14 +28593,14 @@
|
|
|
28593
28593
|
},
|
|
28594
28594
|
"Duriel (H) Desecrated Five": {
|
|
28595
28595
|
"droprate": {
|
|
28596
|
-
"1":
|
|
28597
|
-
"2":
|
|
28598
|
-
"3":
|
|
28599
|
-
"4":
|
|
28600
|
-
"5":
|
|
28601
|
-
"6":
|
|
28602
|
-
"7":
|
|
28603
|
-
"8":
|
|
28596
|
+
"1": 1,
|
|
28597
|
+
"2": 1,
|
|
28598
|
+
"3": 1,
|
|
28599
|
+
"4": 1,
|
|
28600
|
+
"5": 1,
|
|
28601
|
+
"6": 1,
|
|
28602
|
+
"7": 1,
|
|
28603
|
+
"8": 1
|
|
28604
28604
|
},
|
|
28605
28605
|
"droprateRoot": {
|
|
28606
28606
|
"1": 1,
|
|
@@ -28619,14 +28619,14 @@
|
|
|
28619
28619
|
},
|
|
28620
28620
|
"Duriel (H) Desecrated Town Portal": {
|
|
28621
28621
|
"droprate": {
|
|
28622
|
-
"1":
|
|
28623
|
-
"2":
|
|
28624
|
-
"3":
|
|
28625
|
-
"4":
|
|
28626
|
-
"5":
|
|
28627
|
-
"6":
|
|
28628
|
-
"7":
|
|
28629
|
-
"8":
|
|
28622
|
+
"1": 1,
|
|
28623
|
+
"2": 1,
|
|
28624
|
+
"3": 1,
|
|
28625
|
+
"4": 1,
|
|
28626
|
+
"5": 1,
|
|
28627
|
+
"6": 1,
|
|
28628
|
+
"7": 1,
|
|
28629
|
+
"8": 1
|
|
28630
28630
|
},
|
|
28631
28631
|
"droprateRoot": {
|
|
28632
28632
|
"1": 1,
|
|
@@ -28645,14 +28645,14 @@
|
|
|
28645
28645
|
},
|
|
28646
28646
|
"Duriel (H) Desecrated Scrolls": {
|
|
28647
28647
|
"droprate": {
|
|
28648
|
-
"1":
|
|
28649
|
-
"2":
|
|
28650
|
-
"3":
|
|
28651
|
-
"4":
|
|
28652
|
-
"5":
|
|
28653
|
-
"6":
|
|
28654
|
-
"7":
|
|
28655
|
-
"8":
|
|
28648
|
+
"1": 1,
|
|
28649
|
+
"2": 1,
|
|
28650
|
+
"3": 1,
|
|
28651
|
+
"4": 1,
|
|
28652
|
+
"5": 1,
|
|
28653
|
+
"6": 1,
|
|
28654
|
+
"7": 1,
|
|
28655
|
+
"8": 1
|
|
28656
28656
|
},
|
|
28657
28657
|
"droprateRoot": {
|
|
28658
28658
|
"1": 1,
|
|
@@ -28671,14 +28671,14 @@
|
|
|
28671
28671
|
},
|
|
28672
28672
|
"Duriel (H) Desecrated Incoming": {
|
|
28673
28673
|
"droprate": {
|
|
28674
|
-
"1":
|
|
28675
|
-
"2":
|
|
28676
|
-
"3":
|
|
28677
|
-
"4":
|
|
28678
|
-
"5":
|
|
28679
|
-
"6":
|
|
28680
|
-
"7":
|
|
28681
|
-
"8":
|
|
28674
|
+
"1": 1,
|
|
28675
|
+
"2": 1,
|
|
28676
|
+
"3": 1,
|
|
28677
|
+
"4": 1,
|
|
28678
|
+
"5": 1,
|
|
28679
|
+
"6": 1,
|
|
28680
|
+
"7": 1,
|
|
28681
|
+
"8": 1
|
|
28682
28682
|
},
|
|
28683
28683
|
"droprateRoot": {
|
|
28684
28684
|
"1": 1,
|
|
@@ -28697,16 +28697,6 @@
|
|
|
28697
28697
|
},
|
|
28698
28698
|
"Duriel (H) Desecrated A": {
|
|
28699
28699
|
"droprate": {
|
|
28700
|
-
"1": 0.3977971198210286,
|
|
28701
|
-
"2": 0.30109536777656887,
|
|
28702
|
-
"3": 0.28836833573076587,
|
|
28703
|
-
"4": 0.28645033061957725,
|
|
28704
|
-
"5": 0.28645033061957725,
|
|
28705
|
-
"6": 0.28645033061957725,
|
|
28706
|
-
"7": 0.28645033061957725,
|
|
28707
|
-
"8": 0.28645033061957725
|
|
28708
|
-
},
|
|
28709
|
-
"droprateRoot": {
|
|
28710
28700
|
"1": 1,
|
|
28711
28701
|
"2": 1,
|
|
28712
28702
|
"3": 1,
|
|
@@ -28716,23 +28706,22 @@
|
|
|
28716
28706
|
"7": 1,
|
|
28717
28707
|
"8": 1
|
|
28718
28708
|
},
|
|
28709
|
+
"droprateRoot": {
|
|
28710
|
+
"1": 0.42,
|
|
28711
|
+
"2": 0.42,
|
|
28712
|
+
"3": 0.42,
|
|
28713
|
+
"4": 0.42,
|
|
28714
|
+
"5": 0.42,
|
|
28715
|
+
"6": 0.42,
|
|
28716
|
+
"7": 0.42,
|
|
28717
|
+
"8": 0.42
|
|
28718
|
+
},
|
|
28719
28719
|
"counts": {
|
|
28720
|
-
"
|
|
28721
|
-
"Duriel (H) - Base Desecrated A": 3.333333333333333
|
|
28720
|
+
"Duriel (H) Desecrated Five": 1
|
|
28722
28721
|
}
|
|
28723
28722
|
},
|
|
28724
28723
|
"Duriel (H) Desecrated B": {
|
|
28725
28724
|
"droprate": {
|
|
28726
|
-
"1": 0.3977971198210286,
|
|
28727
|
-
"2": 0.30109536777656887,
|
|
28728
|
-
"3": 0.28836833573076587,
|
|
28729
|
-
"4": 0.28645033061957725,
|
|
28730
|
-
"5": 0.28645033061957725,
|
|
28731
|
-
"6": 0.28645033061957725,
|
|
28732
|
-
"7": 0.28645033061957725,
|
|
28733
|
-
"8": 0.28645033061957725
|
|
28734
|
-
},
|
|
28735
|
-
"droprateRoot": {
|
|
28736
28725
|
"1": 1,
|
|
28737
28726
|
"2": 1,
|
|
28738
28727
|
"3": 1,
|
|
@@ -28742,23 +28731,22 @@
|
|
|
28742
28731
|
"7": 1,
|
|
28743
28732
|
"8": 1
|
|
28744
28733
|
},
|
|
28734
|
+
"droprateRoot": {
|
|
28735
|
+
"1": 0.42,
|
|
28736
|
+
"2": 0.42,
|
|
28737
|
+
"3": 0.42,
|
|
28738
|
+
"4": 0.42,
|
|
28739
|
+
"5": 0.42,
|
|
28740
|
+
"6": 0.42,
|
|
28741
|
+
"7": 0.42,
|
|
28742
|
+
"8": 0.42
|
|
28743
|
+
},
|
|
28745
28744
|
"counts": {
|
|
28746
|
-
"
|
|
28747
|
-
"Duriel (H) - Base Desecrated B": 3.333333333333333
|
|
28745
|
+
"Duriel (H) Desecrated Town Portal": 1
|
|
28748
28746
|
}
|
|
28749
28747
|
},
|
|
28750
28748
|
"Duriel (H) Desecrated C": {
|
|
28751
28749
|
"droprate": {
|
|
28752
|
-
"1": 0.3977971198210286,
|
|
28753
|
-
"2": 0.30109536777656887,
|
|
28754
|
-
"3": 0.28836833573076587,
|
|
28755
|
-
"4": 0.28645033061957725,
|
|
28756
|
-
"5": 0.28645033061957725,
|
|
28757
|
-
"6": 0.28645033061957725,
|
|
28758
|
-
"7": 0.28645033061957725,
|
|
28759
|
-
"8": 0.28645033061957725
|
|
28760
|
-
},
|
|
28761
|
-
"droprateRoot": {
|
|
28762
28750
|
"1": 1,
|
|
28763
28751
|
"2": 1,
|
|
28764
28752
|
"3": 1,
|
|
@@ -28768,23 +28756,22 @@
|
|
|
28768
28756
|
"7": 1,
|
|
28769
28757
|
"8": 1
|
|
28770
28758
|
},
|
|
28759
|
+
"droprateRoot": {
|
|
28760
|
+
"1": 0.42,
|
|
28761
|
+
"2": 0.42,
|
|
28762
|
+
"3": 0.42,
|
|
28763
|
+
"4": 0.42,
|
|
28764
|
+
"5": 0.42,
|
|
28765
|
+
"6": 0.42,
|
|
28766
|
+
"7": 0.42,
|
|
28767
|
+
"8": 0.42
|
|
28768
|
+
},
|
|
28771
28769
|
"counts": {
|
|
28772
|
-
"
|
|
28773
|
-
"Duriel (H) - Base Desecrated C": 3.333333333333333
|
|
28770
|
+
"Duriel (H) Desecrated Scrolls": 1
|
|
28774
28771
|
}
|
|
28775
28772
|
},
|
|
28776
28773
|
"Duriel (H) Desecrated D": {
|
|
28777
28774
|
"droprate": {
|
|
28778
|
-
"1": 0.3977971198210286,
|
|
28779
|
-
"2": 0.30109536777656887,
|
|
28780
|
-
"3": 0.28836833573076587,
|
|
28781
|
-
"4": 0.28645033061957725,
|
|
28782
|
-
"5": 0.28645033061957725,
|
|
28783
|
-
"6": 0.28645033061957725,
|
|
28784
|
-
"7": 0.28645033061957725,
|
|
28785
|
-
"8": 0.28645033061957725
|
|
28786
|
-
},
|
|
28787
|
-
"droprateRoot": {
|
|
28788
28775
|
"1": 1,
|
|
28789
28776
|
"2": 1,
|
|
28790
28777
|
"3": 1,
|
|
@@ -28794,9 +28781,18 @@
|
|
|
28794
28781
|
"7": 1,
|
|
28795
28782
|
"8": 1
|
|
28796
28783
|
},
|
|
28784
|
+
"droprateRoot": {
|
|
28785
|
+
"1": 0.42,
|
|
28786
|
+
"2": 0.42,
|
|
28787
|
+
"3": 0.42,
|
|
28788
|
+
"4": 0.42,
|
|
28789
|
+
"5": 0.42,
|
|
28790
|
+
"6": 0.42,
|
|
28791
|
+
"7": 0.42,
|
|
28792
|
+
"8": 0.42
|
|
28793
|
+
},
|
|
28797
28794
|
"counts": {
|
|
28798
|
-
"
|
|
28799
|
-
"Duriel (H) - Base Desecrated D": 3.333333333333333
|
|
28795
|
+
"Duriel (H) Desecrated Incoming": 1
|
|
28800
28796
|
}
|
|
28801
28797
|
},
|
|
28802
28798
|
"Durielq": {
|
|
@@ -28811,14 +28807,14 @@
|
|
|
28811
28807
|
"8": 1
|
|
28812
28808
|
},
|
|
28813
28809
|
"droprateRoot": {
|
|
28814
|
-
"1": 0.
|
|
28815
|
-
"2": 0.
|
|
28816
|
-
"3": 0.
|
|
28817
|
-
"4": 0.
|
|
28818
|
-
"5": 0.
|
|
28819
|
-
"6": 0.
|
|
28820
|
-
"7": 0.
|
|
28821
|
-
"8": 0.
|
|
28810
|
+
"1": 0.42,
|
|
28811
|
+
"2": 0.42,
|
|
28812
|
+
"3": 0.42,
|
|
28813
|
+
"4": 0.42,
|
|
28814
|
+
"5": 0.42,
|
|
28815
|
+
"6": 0.42,
|
|
28816
|
+
"7": 0.42,
|
|
28817
|
+
"8": 0.42
|
|
28822
28818
|
},
|
|
28823
28819
|
"counts": {
|
|
28824
28820
|
"tsc": 1.6666666666666665,
|
|
@@ -28837,14 +28833,14 @@
|
|
|
28837
28833
|
"8": 1
|
|
28838
28834
|
},
|
|
28839
28835
|
"droprateRoot": {
|
|
28840
|
-
"1": 0.
|
|
28841
|
-
"2": 0.
|
|
28842
|
-
"3": 0.
|
|
28843
|
-
"4": 0.
|
|
28844
|
-
"5": 0.
|
|
28845
|
-
"6": 0.
|
|
28846
|
-
"7": 0.
|
|
28847
|
-
"8": 0.
|
|
28836
|
+
"1": 0.42,
|
|
28837
|
+
"2": 0.42,
|
|
28838
|
+
"3": 0.42,
|
|
28839
|
+
"4": 0.42,
|
|
28840
|
+
"5": 0.42,
|
|
28841
|
+
"6": 0.42,
|
|
28842
|
+
"7": 0.42,
|
|
28843
|
+
"8": 0.42
|
|
28848
28844
|
},
|
|
28849
28845
|
"counts": {
|
|
28850
28846
|
"tsc": 1.6666666666666665,
|
|
@@ -28863,14 +28859,14 @@
|
|
|
28863
28859
|
"8": 1
|
|
28864
28860
|
},
|
|
28865
28861
|
"droprateRoot": {
|
|
28866
|
-
"1": 0.
|
|
28867
|
-
"2": 0.
|
|
28868
|
-
"3": 0.
|
|
28869
|
-
"4": 0.
|
|
28870
|
-
"5": 0.
|
|
28871
|
-
"6": 0.
|
|
28872
|
-
"7": 0.
|
|
28873
|
-
"8": 0.
|
|
28862
|
+
"1": 0.42,
|
|
28863
|
+
"2": 0.42,
|
|
28864
|
+
"3": 0.42,
|
|
28865
|
+
"4": 0.42,
|
|
28866
|
+
"5": 0.42,
|
|
28867
|
+
"6": 0.42,
|
|
28868
|
+
"7": 0.42,
|
|
28869
|
+
"8": 0.42
|
|
28874
28870
|
},
|
|
28875
28871
|
"counts": {
|
|
28876
28872
|
"tsc": 1.6666666666666665,
|
|
@@ -17183,7 +17183,7 @@
|
|
|
17183
17183
|
"NoDrop": 0,
|
|
17184
17184
|
"Item1": "Sunder Charms",
|
|
17185
17185
|
"Prob1": 1,
|
|
17186
|
-
"Item2": "Mephisto Item (H) Desecrated
|
|
17186
|
+
"Item2": "Mephisto Item (H) Desecrated B",
|
|
17187
17187
|
"Prob2": 1,
|
|
17188
17188
|
"lineNumber": 748
|
|
17189
17189
|
},
|
|
@@ -17195,7 +17195,7 @@
|
|
|
17195
17195
|
"NoDrop": 0,
|
|
17196
17196
|
"Item1": "Sunder Charms",
|
|
17197
17197
|
"Prob1": 1,
|
|
17198
|
-
"Item2": "Mephisto Item (H) Desecrated
|
|
17198
|
+
"Item2": "Mephisto Item (H) Desecrated C",
|
|
17199
17199
|
"Prob2": 1,
|
|
17200
17200
|
"lineNumber": 749
|
|
17201
17201
|
},
|
|
@@ -17207,7 +17207,7 @@
|
|
|
17207
17207
|
"NoDrop": 0,
|
|
17208
17208
|
"Item1": "Sunder Charms",
|
|
17209
17209
|
"Prob1": 1,
|
|
17210
|
-
"Item2": "Mephisto Item (H) Desecrated
|
|
17210
|
+
"Item2": "Mephisto Item (H) Desecrated D",
|
|
17211
17211
|
"Prob2": 1,
|
|
17212
17212
|
"lineNumber": 750
|
|
17213
17213
|
},
|
package/package.json
CHANGED