@blizzhackers/d2data 2.7.15 → 3.1.91637
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 +23 -107
- package/json/armor.json +1230 -0
- package/json/atomic.json +132 -117
- package/json/automagic.json +162 -0
- package/json/charstats.json +75 -0
- package/json/cubemain.json +1070 -0
- package/json/difficultylevels.json +3 -0
- package/json/events.json +15 -0
- package/json/experience.json +101 -0
- package/json/gamble.json +86 -102
- package/json/inventory.json +168 -14
- package/json/items.json +6199 -3489
- package/json/itemstatcost.json +144 -72
- package/json/itemtypes.json +271 -38
- package/json/itemuicategories.json +324 -0
- package/json/levelgroups.json +596 -499
- package/json/levels.json +232 -0
- package/json/lvlprest.json +27 -0
- package/json/magicprefix.json +1058 -0
- package/json/magicsuffix.json +691 -0
- package/json/misc.json +1764 -263
- package/json/misscalc.json +20 -0
- package/json/missiles.json +1915 -151
- package/json/monai.json +74 -8
- package/json/monpet.json +2035 -0
- package/json/monpopulationest.json +7 -0
- package/json/monseq.json +101 -0
- package/json/monsounds.json +177 -0
- package/json/monstats.json +1635 -0
- package/json/monstats2.json +549 -0
- package/json/objects.json +633 -33
- package/json/objpreset.json +20 -0
- package/json/objtype.json +70 -0
- package/json/overlay.json +1367 -237
- package/json/pettype.json +40 -3
- package/json/playerclass.json +6 -0
- package/json/plrtype.json +6 -0
- package/json/properties.json +431 -0
- package/json/propertygroups.json +487 -0
- package/json/runes.json +146 -0
- package/json/runeworduicategories.json +27 -0
- package/json/setitems.json +543 -0
- package/json/sets.json +108 -0
- package/json/skillcalc.json +140 -0
- package/json/skilldesc.json +7315 -6028
- package/json/skills.json +3445 -6
- package/json/sounds.json +83708 -63203
- package/json/states.json +298 -0
- package/json/tcprecalc.json +5759 -3396
- package/json/treasureclassex.json +4175 -1887
- package/json/treasureclassgroupsex.json +37 -0
- package/json/uniqueitems.json +1508 -391
- package/json/weapons.json +39 -60
- package/package.json +1 -1
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"GambleUnique": 50,
|
|
34
34
|
"GambleUber": 90,
|
|
35
35
|
"GambleUltra": 33,
|
|
36
|
+
"ResistFloor": -100,
|
|
36
37
|
"lineNumber": 2
|
|
37
38
|
},
|
|
38
39
|
"Nightmare": {
|
|
@@ -69,6 +70,7 @@
|
|
|
69
70
|
"GambleUnique": 50,
|
|
70
71
|
"GambleUber": 90,
|
|
71
72
|
"GambleUltra": 33,
|
|
73
|
+
"ResistFloor": -100,
|
|
72
74
|
"lineNumber": 1
|
|
73
75
|
},
|
|
74
76
|
"Normal": {
|
|
@@ -105,6 +107,7 @@
|
|
|
105
107
|
"GambleUnique": 50,
|
|
106
108
|
"GambleUber": 90,
|
|
107
109
|
"GambleUltra": 33,
|
|
110
|
+
"ResistFloor": -100,
|
|
108
111
|
"lineNumber": 0
|
|
109
112
|
}
|
|
110
113
|
}
|
package/json/events.json
CHANGED
|
@@ -4,6 +4,11 @@
|
|
|
4
4
|
"*description": "Unit takes damage",
|
|
5
5
|
"lineNumber": 11
|
|
6
6
|
},
|
|
7
|
+
"absorbresisteddamage": {
|
|
8
|
+
"event": "absorbresisteddamage",
|
|
9
|
+
"*description": "Unit takes damage which has been resisted",
|
|
10
|
+
"lineNumber": 16
|
|
11
|
+
},
|
|
7
12
|
"attackedinmelee": {
|
|
8
13
|
"event": "attackedinmelee",
|
|
9
14
|
"*description": "Unit is attacked by a melee attack",
|
|
@@ -49,11 +54,21 @@
|
|
|
49
54
|
"*description": "Unit dealt damage with a missile",
|
|
50
55
|
"lineNumber": 6
|
|
51
56
|
},
|
|
57
|
+
"hextrigger": {
|
|
58
|
+
"event": "hextrigger",
|
|
59
|
+
"*description": "Special event to trigger hexes",
|
|
60
|
+
"lineNumber": 15
|
|
61
|
+
},
|
|
52
62
|
"hitbymissile": {
|
|
53
63
|
"event": "hitbymissile",
|
|
54
64
|
"*description": "Unit is hit by a missile",
|
|
55
65
|
"lineNumber": 0
|
|
56
66
|
},
|
|
67
|
+
"install": {
|
|
68
|
+
"event": "install",
|
|
69
|
+
"*description": "The event is installed",
|
|
70
|
+
"lineNumber": 14
|
|
71
|
+
},
|
|
57
72
|
"kill": {
|
|
58
73
|
"event": "kill",
|
|
59
74
|
"*description": "Unit killed another Unit",
|