-
Notifications
You must be signed in to change notification settings - Fork 55
/
Area.cs
139 lines (139 loc) · 3.82 KB
/
Area.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
namespace D2Map.Core.Models
{
public enum Area : ushort
{
None = 0,
RogueEncampment = 1,
BloodMoor = 2,
ColdPlains = 3,
StonyFields = 4,
DarkWood = 5,
BlackMarsh = 6,
TamoeHighland = 7,
DenOfEvil = 8,
CaveLevel1 = 9,
UndergroundPassageLevel1 = 10,
HoleLevel1 = 11,
PitLevel1 = 12,
CaveLevel2 = 13,
UndergroundPassageLevel2 = 14,
HoleLevel2 = 15,
PitLevel2 = 16,
BurialGrounds = 17,
Crypt = 18,
Mausoleum = 19,
ForgottenTower = 20,
TowerCellarLevel1 = 21,
TowerCellarLevel2 = 22,
TowerCellarLevel3 = 23,
TowerCellarLevel4 = 24,
TowerCellarLevel5 = 25,
MonasteryGate = 26,
OuterCloister = 27,
Barracks = 28,
JailLevel1 = 29,
JailLevel2 = 30,
JailLevel3 = 31,
InnerCloister = 32,
Cathedral = 33,
CatacombsLevel1 = 34,
CatacombsLevel2 = 35,
CatacombsLevel3 = 36,
CatacombsLevel4 = 37,
Tristram = 38,
CowLevel = 39,
LutGholein = 40,
RockyWaste = 41,
DryHills = 42,
FarOasis = 43,
LostCity = 44,
ValleyOfSnakes = 45,
CanyonOfTheMagi = 46,
SewersLevel1 = 47,
SewersLevel2 = 48,
SewersLevel3 = 49,
HaremLevel1 = 50,
HaremLevel2 = 51,
PalaceCellarLevel1 = 52,
PalaceCellarLevel2 = 53,
PalaceCellarLevel3 = 54,
StonyTombLevel1 = 55,
HallsOfTheDeadLevel1 = 56,
HallsOfTheDeadLevel2 = 57,
ClawViperTempleLevel1 = 58,
StonyTombLevel2 = 59,
HallsOfTheDeadLevel3 = 60,
ClawViperTempleLevel2 = 61,
MaggotLairLevel1 = 62,
MaggotLairLevel2 = 63,
MaggotLairLevel3 = 64,
AncientTunnels = 65,
TalRashasTomb1 = 66,
TalRashasTomb2 = 67,
TalRashasTomb3 = 68,
TalRashasTomb4 = 69,
TalRashasTomb5 = 70,
TalRashasTomb6 = 71,
TalRashasTomb7 = 72,
DurielsLair = 73,
ArcaneSanctuary = 74,
KurastDocks = 75,
SpiderForest = 76,
GreatMarsh = 77,
FlayerJungle = 78,
LowerKurast = 79,
KurastBazaar = 80,
UpperKurast = 81,
KurastCauseWay = 82,
Travincal = 83,
SpiderCave = 84,
SpiderCavern = 85,
SwampyPitLevel1 = 86,
SwampyPitLevel2 = 87,
FlayerDungeonLevel1 = 88,
FlayerDungeonLevel2 = 89,
SwampyPitLevel3 = 90,
FlayerDungeonLevel3 = 91,
Sewers2Level1 = 92,
Sewers2Level2 = 93,
RuinedTemple = 94,
DisusedFane = 95,
ForgottenReliquary = 96,
ForgottenTemple = 97,
RuinedFane = 98,
DisusedReliquary = 99,
DuranceOfHateLevel1 = 100,
DuranceOfHateLevel2 = 101,
DuranceOfHateLevel3 = 102,
ThePandemoniumFortress = 103,
OuterSteppes = 104,
PlainsOfDespair = 105,
CityOfTheDamned = 106,
RiverOfFlame = 107,
ChaosSanctuary = 108,
Harrogath = 109,
BloodyFoothills = 110,
FrigidHighlands = 111,
ArreatPlateau = 112,
CrystalizedCavernLevel1 = 113,
CellarOfPity = 114,
CrystalizedCavernLevel2 = 115,
EchoChamber = 116,
FrozenTundra = 117,
CrystallinePassage = 118,
GlacialTrail = 119,
TheAncientsWay = 120,
NihlathaksTemple = 121,
hallsOfAnguish = 122,
HallsOfPain = 123,
HallsOfVaught = 124,
Hell1 = 125,
Hell2 = 126,
Hell3 = 127,
TheWorldStoneKeepLevel1 = 128,
TheWorldStoneKeepLevel2 = 129,
TheWorldStoneKeepLevel3 = 130,
ThroneOfDestruction = 131,
TheWorldStoneChamber = 132
}
}