-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.py
62 lines (53 loc) · 1.56 KB
/
vars.py
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
TOP10_DATA_TITLE = {
"jumps" : "Number of Hyperspace Jumps",
"ly" : "Light Years Travelled",
"bought" : "Cargo Bought",
"sold" : "Cargo Sold",
"points" : "Mission Points Earned",
"bounty" : "Bountys Handed in",
"bonds" : "Combat Bonds Handed in",
"explodata" : "Exploration Data",
"passengers" : "Passengers Transported",
"objects" : "Objects Scanned",
}
TOP10_TIME_TITLE = {
"today" : "Today",
"week" : "This Week",
"ever" : "In All Time",
}
TOP10_DATA_UNITS = {
"jumps" : "Jumps",
"ly" : "Ly",
"bought" : "Units",
"sold" : "Units",
"points" : "Points",
"bounty" : "Cr",
"bonds" : "Cr",
"explodata" : "Cr",
"passengers" : "People",
"objects" : "Objects",
}
HAPPINESS = {
"$faction_happinessband1;" : "Elated",
"$faction_happinessband2;" : "Happy",
"$faction_happinessband3;" : "Discontented",
"$faction_happinessband4;" : "Unhappy",
"$faction_happinessband5;" : "Despondant"
}
PRISON_FACTIONS = ["Independent Detention Foundation", "Imperial Detainment Company", "Federal Internment Corporation",
"Alliance Incarceration Concern"]
PRISON_FAC_ID = ["75876", "75878", "75875", "75877"]
IGNORE_SYSTEMS = ["AHHHH"]
INTERVALS = (
('weeks', 604800), # 60 * 60 * 24 * 7
('days', 86400), # 60 * 60 * 24
('hours', 3600), # 60 * 60
('minutes', 60),
('seconds', 1),
)
ADMINS = ["306477274452983829", "177189147843231744"] # ME, NINJ,
EMOJIS = {
"low" : ":sob:",
"ok" : ":smile:",
"high" : ":sweat:",
}