-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.lua
executable file
·169 lines (168 loc) · 5.33 KB
/
data.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
local _, ns = ...
ns.data = {
defaults = {
macro = true,
clone = 4,
flexMounts = 2,
normalMounts = true,
normalMountModifier = 2,
vendorMounts = true,
vendorMountModifier = 4,
passengerMounts = true,
passengerMountModifier = 3,
swimmingMounts = true,
normalSwimmingMounts = false,
zoneSpecificMounts = true,
preferDragonRiding = true,
travelForm = true,
},
mountTypes = {
ground = {230, 398, 408},
flying = {242, 247, 248, 424},
aquaticground = {412},
aquaticflying = {407},
swimming = {231, 254},
ahnqiraj = {241},
vashjir = {232},
chauffeur = {284},
dragonriding = {402},
},
travelForms = {
["Cat Form"] = 768,
["Travel Form"] = 783,
["Ghost Wolf"] = 2645,
},
mountIDs = {
vendor = {
280, -- Traveler's Tundra Mammoth
284, -- Traveler's Tundra Mammoth
460, -- Grand Expedition Yak
1039, -- Mighty Caravan Brutosaur
},
passengerGround = {
240, -- Mechano-Hog (Horde)
254, -- Black War Mammoth (Alliance)
255, -- Black War Mammoth (Horde)
275, -- Mekgineer's Chopper (Alliance)
286, -- Grand Black War Mammoth (Alliance)
287, -- Grand Black War Mammoth (Horde)
288, -- Grand Ice Mammoth (Horde)
289, -- Grand Ice Mammoth (Alliance)
1288, -- Explorer's Dunetrekker
},
passengerFlying = {
382, -- X-53 Touring Rocket
407, -- Sandstone Drake
455, -- Obsidian Nightwing
959, -- Stormwind Skychaser (Alliance)
960, -- Orgrimmar Interceptor (Horde)
},
noFlyingSwimming = {
125, -- Riding Turtle
312, -- Sea Turtle
},
flex = {
219, -- Headless Horseman's Mount
363, -- Invincible
376, -- Celestial Steed
421, -- Winged Guardian
439, -- Tyrael's Charger
451, -- Jeweled Onyx Panther
454, -- Cindermane Charger
455, -- Obsidian Nightwing
456, -- Sapphire Panther
457, -- Jade Panther
458, -- Ruby Panther
459, -- Sunstone Panther
468, -- Imperial Quilen
522, -- Sky Golem
523, -- Swift Windsteed
532, -- Ghastly Charger
594, -- Grinning Reaver
547, -- Hearthsteed
593, -- Warforged Nightmare
764, -- Grove Warden
779, -- Spirit of Eche'ro
826, -- Prestigious Bronze Courser
831, -- Prestigious Royal Courser
832, -- Prestigious Forest Courser
833, -- Prestigious Ivory Courser
834, -- Prestigious Azure Courser
836, -- Prestigious Midnight Courser
961, -- Lucid Nightmare
1190, -- Pureheart Courser
1222, -- Vulpine Familiar
1290, -- Squeakers, the Trickster
1291, -- Lucky Yun
1306, -- Swift Gloomhoof
1307, -- Sundancer
1330, -- Sunwarmed Furline
1360, -- Shimmermist Runner
1404, -- Silverwind Larion
1413, -- Dauntless Duskrunner
1414, -- Sinrunner Blanchy
1426, -- Ascended Skymane
1511, -- Wandering Arden Doe
1577, -- Ash'adar, Harbinger of Dawn
1956, -- Fur-endship Fox
},
maw = {
1304, -- Mawsworn Soulhunter
1442, -- Corridor Creeper
1441, -- Bound Shadehound
},
dragonriding = {
1563, -- Highland Drake
1588, -- Winding Slitherdrake
1589, -- Renewed Proto-Drake
1590, -- Windborne Velocidrake
1591, -- Cliffside Wylderdrake
1744, -- Grotto Netherwing Drake
1792, -- Algarian Stormrider
1830, -- Flourishing Whimsydrake
2090, -- Polly Roger
},
},
mapIDs = {
ahnqiraj = {
247, -- Ruins of Ahn'Qiraj
319, -- Ahn'Qiraj - The Hive Undergrounds
320, -- Ahn'Qiraj - The Temple Gates
321, -- Ahn'Qiraj - Vault of C'Thun
},
vashjir = {
201, -- Kelp'thar Forest
203, -- Vashj'ir
204, -- Abyssal Depths
205, -- Shimmering Expanse
1272, -- Vashj'ir
},
nazjatar = {
1355, -- Nazjatar
},
maw = {
1543, -- The Maw
1648, -- The Maw
},
dragonisles = {
1978, -- Dragon Isles Great Sea
2022, -- The Waking Shores
2023, -- Ohn'ahran Plains
2024, -- The Azure Span
2025, -- Thaldraszus
2026, -- The Forbidden Reach
2085, -- The Primalist Future
2093, -- The Nokhud Offensive
2112, -- Valdrakken
2133, -- Zaralek Cavern
2151, -- The Forbidden Reach
2199, -- Time Rift (Thaldraszus)
2200, -- Emerald Dream
2239, -- Amirdrassil
},
},
partyMembers = 0,
raidMembers = 0,
updateFound = false,
updateTimeout = 5,
}