@blizzhackers/d2data 2.7.7 → 2.7.9
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 +2 -1
- package/generatecsv.js +64 -0
- package/json/monpopulationest.json +13 -13
- package/json/monstats.json +2 -1
- package/json/superuniques.json +1 -2
- package/package.json +2 -2
- package/superboss_hell.csv +75 -0
- package/superboss_nightmare.csv +75 -0
- package/superboss_normal.csv +75 -0
package/compile.js
CHANGED
|
@@ -263,7 +263,7 @@ files.forEach(fn => {
|
|
|
263
263
|
full[fn]['Coldworm the Burrower'].areaId = 64;
|
|
264
264
|
full[fn]['Fire Eye'].areaId = 54;
|
|
265
265
|
full[fn]['Dark Elder'].areaId = 44;
|
|
266
|
-
full[fn]['The Summoner'].areaId = 74;
|
|
266
|
+
// full[fn]['The Summoner'].areaId = 74; // I don't think he spawns a superunique.
|
|
267
267
|
full[fn]['The Smith'].areaId = 28;
|
|
268
268
|
full[fn]['Web Mage the Burning'].areaId = 85;
|
|
269
269
|
full[fn]['Witch Doctor Endugu'].areaId = 91;
|
|
@@ -305,6 +305,7 @@ files.forEach(fn => {
|
|
|
305
305
|
|
|
306
306
|
if (fn === 'monstats') {
|
|
307
307
|
full[fn]['bloodraven'].areaId = 17;
|
|
308
|
+
full[fn]['summoner'].areaId = 74;
|
|
308
309
|
full[fn]['andariel'].areaId = 37;
|
|
309
310
|
full[fn]['duriel'].areaId = 73;
|
|
310
311
|
full[fn]['mephisto'].areaId = 102;
|
package/generatecsv.js
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
const monpopulationest = require('./json/monpopulationest.json');
|
|
2
|
+
const superuniques = require('./json/superuniques.json');
|
|
3
|
+
const monstats = require('./json/monstats.json');
|
|
4
|
+
const levels = require('./json/levels.json');
|
|
5
|
+
const localestrings = require('./json/localestrings-eng.json');
|
|
6
|
+
const fs = require('fs');
|
|
7
|
+
|
|
8
|
+
let diffs = ['', '(N)', '(H)'];
|
|
9
|
+
|
|
10
|
+
for (let diff in diffs) {
|
|
11
|
+
let rows = [
|
|
12
|
+
[
|
|
13
|
+
'Name',
|
|
14
|
+
'Difficulty',
|
|
15
|
+
'Is Super?',
|
|
16
|
+
'Is Boss?',
|
|
17
|
+
'Area Level',
|
|
18
|
+
'Base Monster Level',
|
|
19
|
+
'Actual Monster Level',
|
|
20
|
+
'Area',
|
|
21
|
+
'Area ID',
|
|
22
|
+
],
|
|
23
|
+
];
|
|
24
|
+
|
|
25
|
+
let diffstr = diffs[diff];
|
|
26
|
+
|
|
27
|
+
function addRow(level, mlvls, mon, sup) {
|
|
28
|
+
rows[rows.length] = [
|
|
29
|
+
localestrings[sup ? sup.Name : mon.NameStr],
|
|
30
|
+
['normal', 'nightmare', 'hell'][diff],
|
|
31
|
+
sup ? 'yes' : 'no',
|
|
32
|
+
mon.boss ? 'yes' : 'no',
|
|
33
|
+
level['MonLvlEx' + diffstr],
|
|
34
|
+
mon['Level' + diffstr],
|
|
35
|
+
mlvls[diff],
|
|
36
|
+
localestrings[level.LevelName],
|
|
37
|
+
level.Id,
|
|
38
|
+
];
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
for (let levelId in monpopulationest) {
|
|
42
|
+
let pop = monpopulationest[levelId];
|
|
43
|
+
let level = levels[levelId];
|
|
44
|
+
|
|
45
|
+
for (let superid in pop['superunique']) {
|
|
46
|
+
addRow(level, [
|
|
47
|
+
pop['superunique'][superid]['mlvl'],
|
|
48
|
+
pop['superunique'][superid]['mlvl(N)'],
|
|
49
|
+
pop['superunique'][superid]['mlvl(H)'],
|
|
50
|
+
], monstats[superuniques[superid].Class], superuniques[superid]);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
for (let monid in pop['boss']) {
|
|
54
|
+
addRow(level, [
|
|
55
|
+
pop['boss'][monid]['mlvl'],
|
|
56
|
+
pop['boss'][monid]['mlvl(N)'],
|
|
57
|
+
pop['boss'][monid]['mlvl(H)'],
|
|
58
|
+
], monstats[monid]);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
let data = rows.map(row => row.map(col => JSON.stringify(col)).join(',')).join('\n');
|
|
63
|
+
fs.writeFileSync(['superboss_normal.csv', 'superboss_nightmare.csv', 'superboss_hell.csv'][diff], data);
|
|
64
|
+
}
|
|
@@ -7624,27 +7624,27 @@
|
|
|
7624
7624
|
"normal": {
|
|
7625
7625
|
"wraith3": {
|
|
7626
7626
|
"mlvl": 19,
|
|
7627
|
-
"packCount": 70.
|
|
7627
|
+
"packCount": 70.30666666666667,
|
|
7628
7628
|
"mlvl(N)": 48,
|
|
7629
7629
|
"packCount(N)": 68.01333333333332,
|
|
7630
7630
|
"mlvl(H)": 79,
|
|
7631
|
-
"packCount(H)": 65.
|
|
7631
|
+
"packCount(H)": 65.2
|
|
7632
7632
|
},
|
|
7633
7633
|
"goatman4": {
|
|
7634
7634
|
"mlvl": 19,
|
|
7635
|
-
"packCount": 70.
|
|
7635
|
+
"packCount": 70.30666666666667,
|
|
7636
7636
|
"mlvl(N)": 48,
|
|
7637
7637
|
"packCount(N)": 68.01333333333332,
|
|
7638
7638
|
"mlvl(H)": 79,
|
|
7639
|
-
"packCount(H)": 65.
|
|
7639
|
+
"packCount(H)": 65.2
|
|
7640
7640
|
},
|
|
7641
7641
|
"vampire1": {
|
|
7642
7642
|
"mlvl": 19,
|
|
7643
|
-
"packCount": 70.
|
|
7643
|
+
"packCount": 70.30666666666667,
|
|
7644
7644
|
"mlvl(N)": 48,
|
|
7645
7645
|
"packCount(N)": 68.01333333333332,
|
|
7646
7646
|
"mlvl(H)": 79,
|
|
7647
|
-
"packCount(H)": 65.
|
|
7647
|
+
"packCount(H)": 65.2
|
|
7648
7648
|
}
|
|
7649
7649
|
},
|
|
7650
7650
|
"champion": {
|
|
@@ -7699,18 +7699,18 @@
|
|
|
7699
7699
|
"packCount(H)": 2.1333333333333333
|
|
7700
7700
|
}
|
|
7701
7701
|
},
|
|
7702
|
-
"superunique": {
|
|
7703
|
-
|
|
7704
|
-
|
|
7702
|
+
"superunique": {},
|
|
7703
|
+
"boss": {
|
|
7704
|
+
"summoner": {
|
|
7705
|
+
"mlvl": 18,
|
|
7705
7706
|
"packCount": 1,
|
|
7706
|
-
"mlvl(N)":
|
|
7707
|
+
"mlvl(N)": 55,
|
|
7707
7708
|
"packCount(N)": 1,
|
|
7708
|
-
"mlvl(H)":
|
|
7709
|
+
"mlvl(H)": 80,
|
|
7709
7710
|
"packCount(H)": 1,
|
|
7710
7711
|
"hasStaticLevel": true
|
|
7711
7712
|
}
|
|
7712
|
-
}
|
|
7713
|
-
"boss": {}
|
|
7713
|
+
}
|
|
7714
7714
|
},
|
|
7715
7715
|
"75": {
|
|
7716
7716
|
"normal": {},
|
package/json/monstats.json
CHANGED
|
@@ -56797,7 +56797,8 @@
|
|
|
56797
56797
|
"TreasureClassDesecrated(H)": "Summoner (H) Desecrated A",
|
|
56798
56798
|
"TreasureClassDesecratedChamp(H)": "Summoner (H) Desecrated A",
|
|
56799
56799
|
"TreasureClassDesecratedUnique(H)": "Summoner (H) Desecrated A",
|
|
56800
|
-
"lineNumber": 250
|
|
56800
|
+
"lineNumber": 250,
|
|
56801
|
+
"areaId": 74
|
|
56801
56802
|
},
|
|
56802
56803
|
"swarm1": {
|
|
56803
56804
|
"Id": "swarm1",
|
package/json/superuniques.json
CHANGED
|
@@ -1288,8 +1288,7 @@
|
|
|
1288
1288
|
"TC(N) Desecrated": "Summoner (N) Desecrated A",
|
|
1289
1289
|
"TC(H)": "Summoner (H)",
|
|
1290
1290
|
"TC(H) Desecrated": "Summoner (H) Desecrated A",
|
|
1291
|
-
"lineNumber": 18
|
|
1292
|
-
"areaId": 74
|
|
1291
|
+
"lineNumber": 18
|
|
1293
1292
|
},
|
|
1294
1293
|
"The Tormentor": {
|
|
1295
1294
|
"Superunique": "The Tormentor",
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blizzhackers/d2data",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "compile.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"start": "node compile.js"
|
|
7
|
+
"start": "node compile.js && node generatecsv.js"
|
|
8
8
|
},
|
|
9
9
|
"author": "",
|
|
10
10
|
"license": "ISC"
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"Name","Difficulty","Is Super?","Is Boss?","Area Level","Base Monster Level","Actual Monster Level","Area","Area ID"
|
|
2
|
+
"Bishibosh","hell","yes","no",68,68,71,"Cold Plains",3
|
|
3
|
+
"Rakanishu","hell","yes","no",68,68,71,"Stony Field",4
|
|
4
|
+
"Treehead WoodFist","hell","yes","no",68,69,71,"Dark Wood",5
|
|
5
|
+
"Corpsefire","hell","yes","no",79,67,82,"Den of Evil",8
|
|
6
|
+
"Coldcrow","hell","yes","no",77,68,80,"Cave Level 1",9
|
|
7
|
+
"Blood Raven","hell","no","yes",80,88,88,"Burial Grounds",17
|
|
8
|
+
"Bonebreaker","hell","yes","no",83,68,86,"Crypt",18
|
|
9
|
+
"The Countess","hell","yes","no",79,69,82,"Tower Cellar Level 5",25
|
|
10
|
+
"The Smith","hell","yes","no",70,79,73,"Barracks",28
|
|
11
|
+
"Pitspawn Fouldog","hell","yes","no",71,72,74,"Jail Level 2",30
|
|
12
|
+
"Bone Ash","hell","yes","no",72,79,75,"Cathedral",33
|
|
13
|
+
"Andariel","hell","no","yes",73,75,75,"Catacombs Level 4",37
|
|
14
|
+
"Griswold","hell","yes","yes",76,84,87,"Tristram",38
|
|
15
|
+
"The Cow King","hell","yes","no",81,81,84,"The Secret Cow Level",39
|
|
16
|
+
"Beetleburst","hell","yes","no",76,76,79,"Far Oasis",43
|
|
17
|
+
"Dark Elder","hell","yes","no",77,77,80,"Lost City",44
|
|
18
|
+
"Radament","hell","yes","yes",75,83,86,"Sewers Level 3",49
|
|
19
|
+
"Fire Eye","hell","yes","no",78,78,81,"Palace Cellar Level 3",54
|
|
20
|
+
"Creeping Feature","hell","yes","no",85,79,88,"Stony Tomb Level 2",59
|
|
21
|
+
"Bloodwitch the Wild","hell","yes","no",82,75,85,"Halls of the Dead Level 3",60
|
|
22
|
+
"Fangskin","hell","yes","no",83,77,86,"Claw Viper Temple Level 2",61
|
|
23
|
+
"Coldworm the Burrower","hell","yes","no",85,81,88,"Maggot Lair Level 3",64
|
|
24
|
+
"Ancient Kaa the Soulless","hell","yes","no",80,80,83,"Tal Rasha's Tomb",66
|
|
25
|
+
"Ancient Kaa the Soulless","hell","yes","no",80,80,83,"Tal Rasha's Tomb",67
|
|
26
|
+
"Ancient Kaa the Soulless","hell","yes","no",80,80,83,"Tal Rasha's Tomb",68
|
|
27
|
+
"Ancient Kaa the Soulless","hell","yes","no",80,80,83,"Tal Rasha's Tomb",69
|
|
28
|
+
"Ancient Kaa the Soulless","hell","yes","no",80,80,83,"Tal Rasha's Tomb",70
|
|
29
|
+
"Ancient Kaa the Soulless","hell","yes","no",80,80,83,"Tal Rasha's Tomb",71
|
|
30
|
+
"Ancient Kaa the Soulless","hell","yes","no",80,80,83,"Tal Rasha's Tomb",72
|
|
31
|
+
"Duriel","hell","no","yes",80,88,88,"Tal Rasha's Chamber",73
|
|
32
|
+
"The Summoner","hell","no","yes",79,80,80,"Arcane Sanctuary",74
|
|
33
|
+
"Stormtree","hell","yes","no",80,81,83,"Flayer Jungle",78
|
|
34
|
+
"Ismail Vilehand","hell","yes","no",82,88,85,"Travincal",83
|
|
35
|
+
"Geleb Flamefinger","hell","yes","no",82,88,85,"Travincal",83
|
|
36
|
+
"Toorc Icefist","hell","yes","no",82,88,85,"Travincal",83
|
|
37
|
+
"Sszark the Burning","hell","yes","no",79,79,82,"Spider Cavern",85
|
|
38
|
+
"Witch Doctor Endugu","hell","yes","no",83,82,86,"Flayer Dungeon Level 3",91
|
|
39
|
+
"Icehawk Riftwing","hell","yes","no",85,81,88,"Sewers Level 1",92
|
|
40
|
+
"Battlemaid Sarina","hell","yes","no",85,84,88,"Ruined Temple",94
|
|
41
|
+
"Bremm Sparkfist","hell","yes","no",83,88,86,"Durance of Hate Level 3",102
|
|
42
|
+
"Wyand Voidbringer","hell","yes","no",83,88,86,"Durance of Hate Level 3",102
|
|
43
|
+
"Maffer Dragonhand","hell","yes","no",83,88,86,"Durance of Hate Level 3",102
|
|
44
|
+
"Mephisto","hell","no","yes",83,87,87,"Durance of Hate Level 3",102
|
|
45
|
+
"Hephasto The Armorer","hell","yes","no",85,88,88,"River of Flame",107
|
|
46
|
+
"Infector of Souls","hell","yes","no",85,84,88,"The Chaos Sanctuary",108
|
|
47
|
+
"Lord De Seis","hell","yes","no",85,85,88,"The Chaos Sanctuary",108
|
|
48
|
+
"Grand Vizier of Chaos","hell","yes","no",85,85,88,"The Chaos Sanctuary",108
|
|
49
|
+
"Diablo","hell","no","yes",85,94,94,"The Chaos Sanctuary",108
|
|
50
|
+
"Shenk the Overseer","hell","yes","no",80,80,83,"Bloody Foothills",110
|
|
51
|
+
"Dac Farren","hell","yes","no",80,81,83,"Bloody Foothills",110
|
|
52
|
+
"Eldritch the Rectifier","hell","yes","no",81,79,84,"Frigid Highlands",111
|
|
53
|
+
"Eyeback the Unleashed","hell","yes","no",81,80,84,"Frigid Highlands",111
|
|
54
|
+
"Sharptooth Slayer","hell","yes","no",81,82,84,"Frigid Highlands",111
|
|
55
|
+
"Thresh Socket","hell","yes","no",81,81,84,"Arreat Plateau",112
|
|
56
|
+
"Frozenstein","hell","yes","no",83,85,86,"Frozen River",114
|
|
57
|
+
"Bonesaw Breaker","hell","yes","no",83,82,86,"Glacial Trail",115
|
|
58
|
+
"Snapchip Shatter","hell","yes","no",85,82,88,"Icy Cellar",119
|
|
59
|
+
"Talic","hell","yes","no",87,87,90,"Arreat Summit",120
|
|
60
|
+
"Madawc","hell","yes","no",87,87,90,"Arreat Summit",120
|
|
61
|
+
"Korlic","hell","yes","no",87,87,90,"Arreat Summit",120
|
|
62
|
+
"Pindleskin","hell","yes","no",83,85,86,"Nihlathak's Temple",121
|
|
63
|
+
"Nihlathak","hell","yes","yes",84,92,95,"Halls of Vaught",124
|
|
64
|
+
"Colenzo the Annihilator","hell","yes","no",85,83,88,"Throne of Destruction",131
|
|
65
|
+
"Achmel the Cursed","hell","yes","no",85,85,88,"Throne of Destruction",131
|
|
66
|
+
"Bartuc the Bloody","hell","yes","no",85,93,88,"Throne of Destruction",131
|
|
67
|
+
"Ventar the Unholy","hell","yes","no",85,93,88,"Throne of Destruction",131
|
|
68
|
+
"Lister the Tormentor","hell","yes","no",85,92,88,"Throne of Destruction",131
|
|
69
|
+
"Baal","hell","no","yes",85,99,99,"The Worldstone Chamber",132
|
|
70
|
+
"Lilith","hell","no","yes",83,110,110,"Matron's Den",133
|
|
71
|
+
"Duriel","hell","no","yes",83,110,110,"Forgotten Sands",134
|
|
72
|
+
"Izual","hell","no","yes",83,110,110,"Furnace of Pain",135
|
|
73
|
+
"Mephisto","hell","no","yes",83,110,110,"Tristram",136
|
|
74
|
+
"Diablo","hell","no","yes",83,110,110,"Tristram",136
|
|
75
|
+
"Baal","hell","no","yes",83,110,110,"Tristram",136
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"Name","Difficulty","Is Super?","Is Boss?","Area Level","Base Monster Level","Actual Monster Level","Area","Area ID"
|
|
2
|
+
"Bishibosh","nightmare","yes","no",36,36,39,"Cold Plains",3
|
|
3
|
+
"Rakanishu","nightmare","yes","no",37,38,40,"Stony Field",4
|
|
4
|
+
"Treehead WoodFist","nightmare","yes","no",38,38,41,"Dark Wood",5
|
|
5
|
+
"Corpsefire","nightmare","yes","no",36,36,39,"Den of Evil",8
|
|
6
|
+
"Coldcrow","nightmare","yes","no",36,37,39,"Cave Level 1",9
|
|
7
|
+
"Blood Raven","nightmare","no","yes",36,43,43,"Burial Grounds",17
|
|
8
|
+
"Bonebreaker","nightmare","yes","no",37,37,40,"Crypt",18
|
|
9
|
+
"The Countess","nightmare","yes","no",42,39,45,"Tower Cellar Level 5",25
|
|
10
|
+
"The Smith","nightmare","yes","no",40,42,43,"Barracks",28
|
|
11
|
+
"Pitspawn Fouldog","nightmare","yes","no",41,42,44,"Jail Level 2",30
|
|
12
|
+
"Bone Ash","nightmare","yes","no",42,44,45,"Cathedral",33
|
|
13
|
+
"Andariel","nightmare","no","yes",43,49,49,"Catacombs Level 4",37
|
|
14
|
+
"Griswold","nightmare","yes","yes",39,39,42,"Tristram",38
|
|
15
|
+
"The Cow King","nightmare","yes","no",64,61,67,"The Secret Cow Level",39
|
|
16
|
+
"Beetleburst","nightmare","yes","no",45,45,48,"Far Oasis",43
|
|
17
|
+
"Dark Elder","nightmare","yes","no",46,46,49,"Lost City",44
|
|
18
|
+
"Radament","nightmare","yes","yes",44,49,52,"Sewers Level 3",49
|
|
19
|
+
"Fire Eye","nightmare","yes","no",48,47,51,"Palace Cellar Level 3",54
|
|
20
|
+
"Creeping Feature","nightmare","yes","no",44,44,47,"Stony Tomb Level 2",59
|
|
21
|
+
"Bloodwitch the Wild","nightmare","yes","no",45,43,48,"Halls of the Dead Level 3",60
|
|
22
|
+
"Fangskin","nightmare","yes","no",47,46,50,"Claw Viper Temple Level 2",61
|
|
23
|
+
"Coldworm the Burrower","nightmare","yes","no",46,46,49,"Maggot Lair Level 3",64
|
|
24
|
+
"Ancient Kaa the Soulless","nightmare","yes","no",49,49,52,"Tal Rasha's Tomb",66
|
|
25
|
+
"Ancient Kaa the Soulless","nightmare","yes","no",49,49,52,"Tal Rasha's Tomb",67
|
|
26
|
+
"Ancient Kaa the Soulless","nightmare","yes","no",49,49,52,"Tal Rasha's Tomb",68
|
|
27
|
+
"Ancient Kaa the Soulless","nightmare","yes","no",49,49,52,"Tal Rasha's Tomb",69
|
|
28
|
+
"Ancient Kaa the Soulless","nightmare","yes","no",49,49,52,"Tal Rasha's Tomb",70
|
|
29
|
+
"Ancient Kaa the Soulless","nightmare","yes","no",49,49,52,"Tal Rasha's Tomb",71
|
|
30
|
+
"Ancient Kaa the Soulless","nightmare","yes","no",49,49,52,"Tal Rasha's Tomb",72
|
|
31
|
+
"Duriel","nightmare","no","yes",49,55,55,"Tal Rasha's Chamber",73
|
|
32
|
+
"The Summoner","nightmare","no","yes",48,55,55,"Arcane Sanctuary",74
|
|
33
|
+
"Stormtree","nightmare","yes","no",50,52,53,"Flayer Jungle",78
|
|
34
|
+
"Ismail Vilehand","nightmare","yes","no",54,56,57,"Travincal",83
|
|
35
|
+
"Geleb Flamefinger","nightmare","yes","no",54,56,57,"Travincal",83
|
|
36
|
+
"Toorc Icefist","nightmare","yes","no",54,56,57,"Travincal",83
|
|
37
|
+
"Sszark the Burning","nightmare","yes","no",50,50,53,"Spider Cavern",85
|
|
38
|
+
"Witch Doctor Endugu","nightmare","yes","no",51,51,54,"Flayer Dungeon Level 3",91
|
|
39
|
+
"Icehawk Riftwing","nightmare","yes","no",52,51,55,"Sewers Level 1",92
|
|
40
|
+
"Battlemaid Sarina","nightmare","yes","no",53,53,56,"Ruined Temple",94
|
|
41
|
+
"Bremm Sparkfist","nightmare","yes","no",55,56,58,"Durance of Hate Level 3",102
|
|
42
|
+
"Wyand Voidbringer","nightmare","yes","no",55,56,58,"Durance of Hate Level 3",102
|
|
43
|
+
"Maffer Dragonhand","nightmare","yes","no",55,56,58,"Durance of Hate Level 3",102
|
|
44
|
+
"Mephisto","nightmare","no","yes",55,59,59,"Durance of Hate Level 3",102
|
|
45
|
+
"Hephasto The Armorer","nightmare","yes","no",57,60,60,"River of Flame",107
|
|
46
|
+
"Infector of Souls","nightmare","yes","no",58,57,61,"The Chaos Sanctuary",108
|
|
47
|
+
"Lord De Seis","nightmare","yes","no",58,58,61,"The Chaos Sanctuary",108
|
|
48
|
+
"Grand Vizier of Chaos","nightmare","yes","no",58,58,61,"The Chaos Sanctuary",108
|
|
49
|
+
"Diablo","nightmare","no","yes",58,62,62,"The Chaos Sanctuary",108
|
|
50
|
+
"Shenk the Overseer","nightmare","yes","no",58,58,61,"Bloody Foothills",110
|
|
51
|
+
"Dac Farren","nightmare","yes","no",58,59,61,"Bloody Foothills",110
|
|
52
|
+
"Eldritch the Rectifier","nightmare","yes","no",59,58,62,"Frigid Highlands",111
|
|
53
|
+
"Eyeback the Unleashed","nightmare","yes","no",59,58,62,"Frigid Highlands",111
|
|
54
|
+
"Sharptooth Slayer","nightmare","yes","no",59,61,62,"Frigid Highlands",111
|
|
55
|
+
"Thresh Socket","nightmare","yes","no",60,60,63,"Arreat Plateau",112
|
|
56
|
+
"Frozenstein","nightmare","yes","no",61,63,64,"Frozen River",114
|
|
57
|
+
"Bonesaw Breaker","nightmare","yes","no",61,62,64,"Glacial Trail",115
|
|
58
|
+
"Snapchip Shatter","nightmare","yes","no",62,61,65,"Icy Cellar",119
|
|
59
|
+
"Talic","nightmare","yes","no",68,68,71,"Arreat Summit",120
|
|
60
|
+
"Madawc","nightmare","yes","no",68,68,71,"Arreat Summit",120
|
|
61
|
+
"Korlic","nightmare","yes","no",68,68,71,"Arreat Summit",120
|
|
62
|
+
"Pindleskin","nightmare","yes","no",63,65,66,"Nihlathak's Temple",121
|
|
63
|
+
"Nihlathak","nightmare","yes","yes",64,70,73,"Halls of Vaught",124
|
|
64
|
+
"Colenzo the Annihilator","nightmare","yes","no",66,55,69,"Throne of Destruction",131
|
|
65
|
+
"Achmel the Cursed","nightmare","yes","no",66,64,69,"Throne of Destruction",131
|
|
66
|
+
"Bartuc the Bloody","nightmare","yes","no",66,68,69,"Throne of Destruction",131
|
|
67
|
+
"Ventar the Unholy","nightmare","yes","no",66,68,69,"Throne of Destruction",131
|
|
68
|
+
"Lister the Tormentor","nightmare","yes","no",66,68,69,"Throne of Destruction",131
|
|
69
|
+
"Baal","nightmare","no","yes",66,75,75,"The Worldstone Chamber",132
|
|
70
|
+
"Lilith","nightmare","no","yes",75,110,110,"Matron's Den",133
|
|
71
|
+
"Duriel","nightmare","no","yes",75,110,110,"Forgotten Sands",134
|
|
72
|
+
"Izual","nightmare","no","yes",75,110,110,"Furnace of Pain",135
|
|
73
|
+
"Mephisto","nightmare","no","yes",75,110,110,"Tristram",136
|
|
74
|
+
"Diablo","nightmare","no","yes",75,110,110,"Tristram",136
|
|
75
|
+
"Baal","nightmare","no","yes",75,110,110,"Tristram",136
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"Name","Difficulty","Is Super?","Is Boss?","Area Level","Base Monster Level","Actual Monster Level","Area","Area ID"
|
|
2
|
+
"Bishibosh","normal","yes","no",2,2,5,"Cold Plains",3
|
|
3
|
+
"Rakanishu","normal","yes","no",4,5,8,"Stony Field",4
|
|
4
|
+
"Treehead WoodFist","normal","yes","no",5,5,8,"Dark Wood",5
|
|
5
|
+
"Corpsefire","normal","yes","no",1,1,4,"Den of Evil",8
|
|
6
|
+
"Coldcrow","normal","yes","no",2,4,7,"Cave Level 1",9
|
|
7
|
+
"Blood Raven","normal","no","yes",3,10,10,"Burial Grounds",17
|
|
8
|
+
"Bonebreaker","normal","yes","no",3,2,5,"Crypt",18
|
|
9
|
+
"The Countess","normal","yes","no",7,8,11,"Tower Cellar Level 5",25
|
|
10
|
+
"The Smith","normal","yes","no",9,10,13,"Barracks",28
|
|
11
|
+
"Pitspawn Fouldog","normal","yes","no",10,11,14,"Jail Level 2",30
|
|
12
|
+
"Bone Ash","normal","yes","no",11,14,17,"Cathedral",33
|
|
13
|
+
"Andariel","normal","no","yes",12,12,12,"Catacombs Level 4",37
|
|
14
|
+
"Griswold","normal","yes","yes",6,5,8,"Tristram",38
|
|
15
|
+
"The Cow King","normal","yes","no",28,28,31,"The Secret Cow Level",39
|
|
16
|
+
"Beetleburst","normal","yes","no",16,16,19,"Far Oasis",43
|
|
17
|
+
"Dark Elder","normal","yes","no",17,17,20,"Lost City",44
|
|
18
|
+
"Radament","normal","yes","yes",14,16,19,"Sewers Level 3",49
|
|
19
|
+
"Fire Eye","normal","yes","no",13,18,21,"Palace Cellar Level 3",54
|
|
20
|
+
"Creeping Feature","normal","yes","no",12,15,18,"Stony Tomb Level 2",59
|
|
21
|
+
"Bloodwitch the Wild","normal","yes","no",13,14,17,"Halls of the Dead Level 3",60
|
|
22
|
+
"Fangskin","normal","yes","no",14,18,21,"Claw Viper Temple Level 2",61
|
|
23
|
+
"Coldworm the Burrower","normal","yes","no",17,11,14,"Maggot Lair Level 3",64
|
|
24
|
+
"Ancient Kaa the Soulless","normal","yes","no",17,20,23,"Tal Rasha's Tomb",66
|
|
25
|
+
"Ancient Kaa the Soulless","normal","yes","no",17,20,23,"Tal Rasha's Tomb",67
|
|
26
|
+
"Ancient Kaa the Soulless","normal","yes","no",17,20,23,"Tal Rasha's Tomb",68
|
|
27
|
+
"Ancient Kaa the Soulless","normal","yes","no",17,20,23,"Tal Rasha's Tomb",69
|
|
28
|
+
"Ancient Kaa the Soulless","normal","yes","no",17,20,23,"Tal Rasha's Tomb",70
|
|
29
|
+
"Ancient Kaa the Soulless","normal","yes","no",17,20,23,"Tal Rasha's Tomb",71
|
|
30
|
+
"Ancient Kaa the Soulless","normal","yes","no",17,20,23,"Tal Rasha's Tomb",72
|
|
31
|
+
"Duriel","normal","no","yes",17,22,22,"Tal Rasha's Chamber",73
|
|
32
|
+
"The Summoner","normal","no","yes",14,18,18,"Arcane Sanctuary",74
|
|
33
|
+
"Stormtree","normal","yes","no",22,23,26,"Flayer Jungle",78
|
|
34
|
+
"Ismail Vilehand","normal","yes","no",24,25,28,"Travincal",83
|
|
35
|
+
"Geleb Flamefinger","normal","yes","no",24,25,28,"Travincal",83
|
|
36
|
+
"Toorc Icefist","normal","yes","no",24,25,28,"Travincal",83
|
|
37
|
+
"Sszark the Burning","normal","yes","no",21,22,25,"Spider Cavern",85
|
|
38
|
+
"Witch Doctor Endugu","normal","yes","no",22,24,27,"Flayer Dungeon Level 3",91
|
|
39
|
+
"Icehawk Riftwing","normal","yes","no",23,22,25,"Sewers Level 1",92
|
|
40
|
+
"Battlemaid Sarina","normal","yes","no",23,23,26,"Ruined Temple",94
|
|
41
|
+
"Bremm Sparkfist","normal","yes","no",25,25,28,"Durance of Hate Level 3",102
|
|
42
|
+
"Wyand Voidbringer","normal","yes","no",25,25,28,"Durance of Hate Level 3",102
|
|
43
|
+
"Maffer Dragonhand","normal","yes","no",25,25,28,"Durance of Hate Level 3",102
|
|
44
|
+
"Mephisto","normal","no","yes",25,26,26,"Durance of Hate Level 3",102
|
|
45
|
+
"Hephasto The Armorer","normal","yes","no",27,25,28,"River of Flame",107
|
|
46
|
+
"Infector of Souls","normal","yes","no",28,30,33,"The Chaos Sanctuary",108
|
|
47
|
+
"Lord De Seis","normal","yes","no",28,30,33,"The Chaos Sanctuary",108
|
|
48
|
+
"Grand Vizier of Chaos","normal","yes","no",28,30,33,"The Chaos Sanctuary",108
|
|
49
|
+
"Diablo","normal","no","yes",28,40,40,"The Chaos Sanctuary",108
|
|
50
|
+
"Shenk the Overseer","normal","yes","no",24,33,36,"Bloody Foothills",110
|
|
51
|
+
"Dac Farren","normal","yes","no",24,34,37,"Bloody Foothills",110
|
|
52
|
+
"Eldritch the Rectifier","normal","yes","no",25,31,34,"Frigid Highlands",111
|
|
53
|
+
"Eyeback the Unleashed","normal","yes","no",25,32,35,"Frigid Highlands",111
|
|
54
|
+
"Sharptooth Slayer","normal","yes","no",25,36,39,"Frigid Highlands",111
|
|
55
|
+
"Thresh Socket","normal","yes","no",26,38,41,"Arreat Plateau",112
|
|
56
|
+
"Frozenstein","normal","yes","no",29,43,46,"Frozen River",114
|
|
57
|
+
"Bonesaw Breaker","normal","yes","no",29,33,36,"Glacial Trail",115
|
|
58
|
+
"Snapchip Shatter","normal","yes","no",29,37,40,"Icy Cellar",119
|
|
59
|
+
"Talic","normal","yes","no",37,37,40,"Arreat Summit",120
|
|
60
|
+
"Madawc","normal","yes","no",37,37,40,"Arreat Summit",120
|
|
61
|
+
"Korlic","normal","yes","no",37,37,40,"Arreat Summit",120
|
|
62
|
+
"Pindleskin","normal","yes","no",32,42,45,"Nihlathak's Temple",121
|
|
63
|
+
"Nihlathak","normal","yes","yes",36,65,68,"Halls of Vaught",124
|
|
64
|
+
"Colenzo the Annihilator","normal","yes","no",43,40,43,"Throne of Destruction",131
|
|
65
|
+
"Achmel the Cursed","normal","yes","no",43,40,43,"Throne of Destruction",131
|
|
66
|
+
"Bartuc the Bloody","normal","yes","no",43,40,43,"Throne of Destruction",131
|
|
67
|
+
"Ventar the Unholy","normal","yes","no",43,40,43,"Throne of Destruction",131
|
|
68
|
+
"Lister the Tormentor","normal","yes","no",43,55,58,"Throne of Destruction",131
|
|
69
|
+
"Baal","normal","no","yes",43,60,60,"The Worldstone Chamber",132
|
|
70
|
+
"Lilith","normal","no","yes",50,110,110,"Matron's Den",133
|
|
71
|
+
"Duriel","normal","no","yes",50,110,110,"Forgotten Sands",134
|
|
72
|
+
"Izual","normal","no","yes",50,110,110,"Furnace of Pain",135
|
|
73
|
+
"Mephisto","normal","no","yes",50,110,110,"Tristram",136
|
|
74
|
+
"Diablo","normal","no","yes",50,110,110,"Tristram",136
|
|
75
|
+
"Baal","normal","no","yes",50,110,110,"Tristram",136
|