This repository has been archived by the owner on Apr 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Townsfolk.lua
108 lines (107 loc) · 3.74 KB
/
Townsfolk.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
local L = LibStub("AceLocale-3.0"):GetLocale("TownsfolkTracker")
TOWNSFOLK = {
[TF_AMMUNITION] = {
title = L["Ammunition"],
icon = [[Interface\MINIMAP\TRACKING\Ammunition]],
points = TF_AMMUNITION_VENDORS,
},
[TF_AUCTIONEER] = {
title = L["Auctioneer"],
icon = [[Interface\MINIMAP\TRACKING\Auctioneer]],
points = TF_AUCTIONEERS,
},
[TF_BANKER] = {
title = L["Banker"],
icon = [[Interface\MINIMAP\TRACKING\Banker]],
points = TF_BANKERS,
},
[TF_BATTLEMASTER] = {
title = L["Battlemaster"],
icon = [[Interface\MINIMAP\TRACKING\BattleMaster]],
allianceIcon = [[Interface\Addons\TownsfolkTracker\Icons\AllianceBattleMaster.tga]],
hordeIcon = [[Interface\Addons\TownsfolkTracker\Icons\HordeBattleMaster.tga]],
points = TF_BATTLEMASTERS,
},
[TF_CLASS_TRAINER] = {
title = L["Class Trainer"],
icon = [[Interface\MINIMAP\TRACKING\Class]],
points = TF_CLASS_TRAINERS,
},
[TF_FLIGHTMASTER] = {
title = L["Flight Master"],
icon = [[Interface\MINIMAP\TRACKING\FlightMaster]],
allianceIcon = [[Interface\Addons\TownsfolkTracker\Icons\AllianceFlightMaster.tga]],
hordeIcon = [[Interface\Addons\TownsfolkTracker\Icons\HordeFlightMaster.tga]],
neutralIcon = [[Interface\Addons\TownsfolkTracker\Icons\NeutralFlightMaster.tga]],
iconSize = 1.1,
points = TF_FLIGHTMASTERS,
},
[TF_FOOD_DRINK] = {
title = L["Food & Drink"],
icon = [[Interface\MINIMAP\TRACKING\Food]],
points = TF_FOOD_DRINK_VENDORS,
},
[TF_INNKEEPER] = {
title = L["Innkeeper"],
icon = [[Interface\MINIMAP\TRACKING\Innkeeper]],
points = TF_INNKEEPERS,
},
[TF_MAILBOX] = {
title = L["Mailbox"],
icon = [[Interface\MINIMAP\TRACKING\Mailbox]],
points = TF_MAILBOXES,
},
[TF_POISONS] = {
title = L["Poison Supplies"],
icon = [[Interface\MINIMAP\TRACKING\Poisons]],
points = TF_POISON_VENDORS,
},
[TF_PROFESSION_TRAINER] = {
title = L["Profession Trainer"],
icon = [[Interface\MINIMAP\TRACKING\Profession]],
points = TF_PROFESSION_TRAINERS,
},
[TF_REAGENTS] = {
title = L["Reagents"],
icon = [[Interface\MINIMAP\TRACKING\Reagents]],
points = TF_REAGENT_VENDORS,
},
[TF_REPAIR] = {
title = L["Repair"],
icon = [[Interface\MINIMAP\TRACKING\Repair]],
points = TF_REPAIR_VENDORS,
},
[TF_STABLE_MASTER] = {
title = L["Stable Master"],
icon = [[Interface\MINIMAP\TRACKING\StableMaster]],
points = TF_STABLE_MASTERS,
},
[TF_TRADE_GOODS] = {
title = L["Trade Goods"],
icon = [[Interface\Addons\TownsfolkTracker\Icons\TradeGoods.tga]],
iconSize = 0.8,
points = TF_TRADE_GOOD_VENDORS,
},
[TF_TRANSPORTATION] = {
title = L["Transportation"],
icon = [[Interface\Addons\TownsfolkTracker\Icons\Transportation.tga]],
allianceIcon = [[Interface\Addons\TownsfolkTracker\Icons\AllianceTransportation.tga]],
hordeIcon = [[Interface\Addons\TownsfolkTracker\Icons\HordeTransportation.tga]],
iconSize = 1.25,
points = TF_TRANSPORTATION_SPOTS,
},
[TF_DUNGEON] = {
title = L["Dungeon"],
icon = [[Interface\MINIMAP\Dungeon]],
groupIcon = [[Interface\Addons\TownsfolkTracker\Icons\InstanceGroup.tga]],
iconSize = 2.2,
points = TF_DUNGEONS,
},
[TF_RAID] = {
title = L["Raid"],
icon = [[Interface\MINIMAP\Raid]],
groupIcon = [[Interface\Addons\TownsfolkTracker\Icons\InstanceGroup.tga]],
iconSize = 2.2,
points = TF_RAIDS,
},
};