-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIPASpecialPinDB.lua
187 lines (155 loc) · 4.34 KB
/
IPASpecialPinDB.lua
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
local addonName, IPA = ...
IPAUISpecialPinDB = {
----------------------------------------
-- Classic Instances --
----------------------------------------
----------------------------------------
-- The Burning Crusade Instances --
----------------------------------------
----------------------------------------
-- Wrath of the Lich King Instances --
----------------------------------------
----------------------------------------
-- Cataclysm Instances --
----------------------------------------
[948]={ -- The Maelstrom
{
journalInstanceID = 67, -- The stonecore
x = 0.5100,
y = 0.2850,
instanceZone = 207, -- Deepholme
atlasName = "Dungeon",
},
},
----------------------------------------
-- Warlords of Draenor Instances --
----------------------------------------
----------------------------------------
-- Legion Instances --
----------------------------------------
[619]={ -- Broken Isles Continent
{
journalInstanceID = 945, -- Seat of the Triumvirate
x = 0.9,
y = 0.1,
instanceZone = 882, -- Argus, Eredat
atlasName = "Dungeon",
},
{
journalInstanceID = 946, -- Antorus, The Burning Throne
x = 0.8300,
y = 0.2200,
instanceZone = 885, -- Argus, Antoran Wastes
atlasName = "Raid",
},
{
journalInstanceID = 777, -- Assault on Violet Hold (Dalaran: Broken Isles)
x = 0.4550,
y = 0.6540,
instanceZone = 627, -- Dalaran: Broken Isles
atlasName = "Dungeon",
},
},
[905]={ -- Argus Continent Map
{
journalInstanceID = 945, -- Seat of the Triumvirate
x = 0.5400,
y = 0.3900,
instanceZone = 882, -- Argus, Eredat
atlasName = "Dungeon",
},
{
journalInstanceID = 946, -- Antorus, The Burning Throne
x = 0.3200,
y = 0.6800,
instanceZone = 885, -- Argus, Antoran Wastes
atlasName = "Raid",
},
},
----------------------------------------
-- Battle for Azeroth Instances --
----------------------------------------
[875]={ -- Zandalar
{
journalInstanceID = 1179, -- The Eternal Palace
x = 0.8700,
y = 0.1100,
instanceZone = nil, -- hidden Dungeon
atlasName = "Dungeon",
wpzone = 1355, -- override waypoint position mapid
wpx = 0.5000, -- override waypoint position x
wpy = 0.1000, -- override waypoint position y
wpname = nil, -- here we "can" override names or nil for automatic name
},
},
[876]={ -- Kul Tiras
{
journalInstanceID = 1179, -- The Eternal Palace
x = 0.8700,
y = 0.1100,
instanceZone = nil, -- hidden Dungeon
atlasName = "Dungeon",
wpzone = 1355, -- override waypoint position mapid
wpx = 0.5040, -- override waypoint position x
wpy = 0.0990, -- override waypoint position y
wpname = nil, -- here we "can" override names or nil for automatic name
},
},
----------------------------------------
-- Shadowlands Instances --
----------------------------------------
[1550]={ -- Shadowlands Contient
{
journalInstanceID = 1194, -- Tazavesh, the Veiled Market
x = 0.31940000,
y = 0.76010000,
instanceZone = nil, -- hidden Dungeon
atlasName = "Dungeon",
},
{
journalInstanceID = 1195, -- Sepulcher of the First Ones
x = 0.89000000,
y = 0.80000000,
instanceZone = 1970,
atlasName = "Raid",
},
},
----------------------------------------
-- Dragonflight Instances --
----------------------------------------
[1978]={ -- Dragon Isles
{
journalInstanceID = 1208, -- Aberrus, the Shadowed Crucible
x = 0.8700,
y = 0.7400,
instanceZone = 2133, -- Zaralek Caverns
atlasName = "Raid",
},
{
journalInstanceID = 1207, -- Amirdrassil, the Dream's Hope
x = 0.3000,
y = 0.5400,
instanceZone = 2200, -- Emerals Dream
atlasName = "Raid",
},
},
----------------------------------------
-- The War Within Instances --
----------------------------------------
[2274]={ -- Kaz Algar
{
journalInstanceID = 1272, -- Cinderbrew Meadery
x = 0.8500,
y = 0.2100,
instanceZone = 2248, -- Isle of Dorn
atlasName = "Dungeon",
},
{
journalInstanceID = 1268, -- The Rookery
x = 0.7000,
y = 0.1900,
instanceZone = 2248, -- Isle of Dorn
atlasName = "Dungeon",
},
},
}