-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSFT_Core.lua
More file actions
37 lines (33 loc) · 834 Bytes
/
Copy pathSFT_Core.lua
File metadata and controls
37 lines (33 loc) · 834 Bytes
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
SamisFishTrackerAddon = SamisFishTrackerAddon or {}
local SFT = SamisFishTrackerAddon
SFT.name = "SamisFishTracker"
SFT.version = "1.1.0"
SFT.author = "samihaize"
SFT.fishamount = 0
SFT.total_bag = 0
SFT.total_bank = 0
SFT.constants = {
roeRate = 0.008,
averageRateWindowSeconds = 300,
windowHeightFull = 105,
windowHeightCollapsed = 80,
filletWindowHeight = 35,
filletWindowWidth = 300,
icons = {
fish = "esoui/art/icons/crafting_fishing_perch.dds",
bag = "esoui/art/tooltips/icon_bag.dds",
bank = "esoui/art/tooltips/icon_bank.dds",
roe = "/esoui/art/icons/crafting_heavy_armor_vendor_component_002.dds",
},
perfectRoeItemId = 64222,
excludedFishItemIds = {
[100393] = true,
[100394] = true,
[100395] = true,
},
visibility = {
HIDE = 0,
SHOW = 1,
AUTO = 2,
},
}