-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.lua
80 lines (80 loc) · 1.79 KB
/
config.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
enableUI = true
config = {
{
type = "hunger",
enabled = true,
max = 100.0,
decreaseRate = 1.2,
action = "starve",
style = {
circleColor = "#ff8a14",
iconColor = "#ffffff",
icon = "fa-solid fa-burger",
}
},
{
type = "thirst",
enabled = true,
max = 100.0,
decreaseRate = 1.0,
action = "starve",
style = {
circleColor = "#428af5",
iconColor = "#ffffff",
icon = "fa-solid fa-glass-water",
}
},
{
type = "alcohol",
enabled = true,
max = 100.0,
decreaseRate = 1.0,
reversed = true,
default = 0,
action = "alcohol",
style = {
circleColor = "#a032a8",
iconColor = "#ffffff",
icon = "fa-solid fa-wine-glass",
}
},
{
type = "stamina",
enabled = true,
max = 100.0,
increaseRate = 1.0,
onRun = 0.5,
onSprint = 2.0,
onJump = 3.0,
action = "stamina",
style = {
circleColor = "#2eb03b",
iconColor = "#ffffff",
icon = "fa-solid fa-person-running",
}
},
{
type = "health",
enabled = true,
max = 100.0,
action = "health",
style = {
circleColor = "#e44949",
iconColor = "#ffffff",
icon = "fa-solid fa-heart",
}
},
{
type = "armor",
enabled = true,
max = 100.0,
reversed = true,
default = 0,
action = "armor",
style = {
circleColor = "#1ab2ff",
iconColor = "#ffffff",
icon = "fa-solid fa-shield-halved",
}
},
}